packages feed

digestive-functors-blaze 0.0.2.0 → 0.0.2.1

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Text.Digestive.Blaze.Html5: submit :: Monad m => String -> Form m String e BlazeFormHtml ()
+ Text.Digestive.Blaze.Html5: submit :: Monad m => String -> Form m i e BlazeFormHtml ()

Files

digestive-functors-blaze.cabal view
@@ -1,5 +1,5 @@ Name:                digestive-functors-blaze-Version:             0.0.2.0+Version:             0.0.2.1 Synopsis:            Snap backend for the digestive-functors library Description:         This is a blaze frontend for the digestive-functors library. 
src/Text/Digestive/Blaze/Html5.hs view
@@ -131,8 +131,8 @@                     ! A.id (H.stringValue $ show id')  submit :: Monad m-       => String                            -- ^ Text on the submit button-       -> Form m String e BlazeFormHtml ()  -- ^ Submit button+       => String                       -- ^ Text on the submit button+       -> Form m i e BlazeFormHtml ()  -- ^ Submit button submit text = view $ createFormHtml $ \cfg ->     applyClasses' [htmlInputClasses, htmlSubmitClasses] cfg $         H.input ! A.type_ "submit"