Skip to content

5.0.0

Compare
Choose a tag to compare
@hecrj hecrj released this 07 Nov 21:58
· 69 commits to master since this release

Added

  • View strategy selector on examples website.

Changed

  • Render fields inside HTML label for accessibility in Form.View.asHtml. The previous label elements are now div elements with the elm-form-label class. To migrate, replace your old CSS rules .elm-form label { ... } with .elm-form .elm-form-label { ... }.

Removed

  • Form.Value. Elm 0.19 makes this module unnecessary! The API is simpler now, allowing you to work with your types directly. To migrate, replace Value a with a and initialize your form values explicitly.