Purescript Flare Versions Save

A special-purpose UI library for Purescript

v4.1.0

6 years ago
  • Add innerFlare to nest Flare UIs inside other Flare UIs. The inner UI has access to the current value of the outer UI. (Many thanks to @koterpillar)

v3.2.0

6 years ago
  • Added a component for resizable lists (@sammthomson), enabling things like this:
ui18 :: forall e. UI e String
ui18 = acronym <$> resizableList "Words" string_ "Really" defaultList
  where
    defaultList = "Don't" : "Repeat" : "Yourself" : Nil
    acronym xs = "Acronym: " <> foldMap (take 1) xs

v3.1.0

6 years ago
  • Added textarea component

v3.0.0

7 years ago
  • Updates for PureScript 0.11 (@kejace)

v2.0.0

7 years ago
  • Updates for PureScript 0.10

v1.1.0

7 years ago
  • Added flareWith (@rintcius)

v1.0.1

7 years ago
  • Fix a bug in Firefox, see #16 (Thanks @oblitum!)

v1.0.0

7 years ago
  • Updates for PureScript 0.9
  • select and radioGroup use Foldable f => NonEmpty f a -> ... instead of a -> Array a -> ...

v0.5.1

8 years ago
  • Update for Pursuit

v0.5.0

8 years ago