- Add an
empty
value toHtml.Attributes.Extra
to represent empty attributes. AddattributeIf
&attributeMaybe
functions for conditional inclusion of attributes. - Add a
targetSelectedOptions
decoder toHtml.Events.Extra
for grabbing theselectedOptions
values from an event target. - Add the
onMultiSelect
attribute toHtml.Events.Extra
for handlingchange
events on multiple-choiceselect
elements.
- Add a new
Html.Attributes.Autocomplete
module with types and helper functions for use with the newHtml.Attributes.Extre.autocomplete
function. This function allows consumers to build type-safeautocomplete
attributes forinput
&textarea
elements.
- Add the
Html.Extra.viewMaybe
function to render Maybe values into HTML.
- Properly expose the
Html.Events.Extra.charCode
decoder.
- Add an
onChange
event attribute.
- Remove the
innerHtml
Html Attribute since Elm 0.19 no longer supports using it. You should use ports instead - see elm/html#172 - Add
viewIf
&viewIfLazy
function to conditionally render HTML. - Add the
nothing
value to represent an empty HTML node. - Upgrade library to Elm v0.19
- Add onClick event handlers with default action and/or propagation prevented.
- Add onEnter event handler.