about summary refs log tree commit diff stats
path: root/examples/dot-import/dot-import.go
Commit message (Collapse)AuthorAgeLines
* Simplify available elements (#55)Markus Wüstenberg2020-12-10-1/+1
| | | | | | | `a`, `form`, `img`, `input`, `label`, `option`, `progress`, `select`, and `textarea` are now just regular elements (without helper parameters), because: - Sometimes the use case doesn't fit (`a` as anchor without href, for example) - There's no reason these are special among the others, so streamlining them makes sense Also added new attributes `action`, `alt`, `for`, `method` that I had somehow missed.
* Move elements and attributes into html package (#52)Markus Wüstenberg2020-12-10-18/+25
| | | | | This makes it easier to use dot-imports. Also updated the readme and examples with new usage, and move the `Classes` helper into the `components` package.
* Add example with dot imports (#47)Markus Wüstenberg2020-11-17-0/+37