packages feed

ditto-lucid 0.1.0.1 → 0.1.0.2

raw patch · 2 files changed

+1/−7 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

ditto-lucid.cabal view
@@ -1,5 +1,5 @@ Name:                ditto-lucid-Version:             0.1.0.1+Version:             0.1.0.2 Synopsis:            Add support for using lucid with Ditto Description:         Ditto is a library for building and validating forms using applicative functors. This package add support for using ditto with lucid. License:             BSD3
src/Ditto/Lucid/Named.hs view
@@ -179,18 +179,12 @@   -> Form m input err (HtmlT f ()) Int inputInt getInput name initialValue = G.input getInput inputField initialValue name   where-    min = toPathPiece (minBound :: Int)-    {-# INLINE min #-}-    max = toPathPiece (maxBound :: Int)-    {-# INLINE max #-}     inputField i a =       input_         [ type_ "number"         , id_ (toPathPiece i)         , name_ (toPathPiece i)         , value_ (toPathPiece a)-        , min_ min-        , max_ max         ]  inputDouble