You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.