├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── elm.json └── src └── Html ├── Attributes ├── Autocomplete.elm └── Extra.elm ├── Events └── Extra.elm └── Extra.elm /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore build or dist files 2 | /elm-stuff 3 | *~ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/html-extra/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/html-extra/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/html-extra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/html-extra/HEAD/README.md -------------------------------------------------------------------------------- /elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/html-extra/HEAD/elm.json -------------------------------------------------------------------------------- /src/Html/Attributes/Autocomplete.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/html-extra/HEAD/src/Html/Attributes/Autocomplete.elm -------------------------------------------------------------------------------- /src/Html/Attributes/Extra.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/html-extra/HEAD/src/Html/Attributes/Extra.elm -------------------------------------------------------------------------------- /src/Html/Events/Extra.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/html-extra/HEAD/src/Html/Events/Extra.elm -------------------------------------------------------------------------------- /src/Html/Extra.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elm-community/html-extra/HEAD/src/Html/Extra.elm --------------------------------------------------------------------------------