mirror of
https://github.com/Orasund/elm-ui-widgets.git
synced 2024-11-22 13:14:10 +03:00
27 lines
1.1 KiB
Markdown
27 lines
1.1 KiB
Markdown
# Description
|
|
|
|
_Please add a detailed description what you did._
|
|
|
|
**Pull request solving issue #[your issue].**
|
|
|
|
_Please only open Pull Requests for existing issues._
|
|
|
|
# Checklist for new Widget
|
|
|
|
* [ ] Checked out the Material design specification of the widget
|
|
* [ ] Added constructors, Widgets Type and Style Type in `src/Internal/[Your Widget].elm`
|
|
* [ ] Added styles in `src/Internal/Material/[Your Widget].elm`
|
|
* [ ] In `src/Widget.Material.elm`:
|
|
* [ ] Linked each style to its representative in `src/Internal/Material/[Your Widget].elm`
|
|
* [ ] Added Documentation
|
|
* [ ] In `src/Widget.elm`:
|
|
* [ ] Added a copy of the Widget Type
|
|
* [ ] Added a copy of the Style Type
|
|
* [ ] Linked each constructor to its representative in `src/Internal/[You Widget].elm`
|
|
* [ ] Replaced the Widget Type in the type signiture of each constructor with its definition
|
|
* [ ] Added Documentation with a small example
|
|
* [ ] run `elm-verify-examples && elm-test` to test the example
|
|
|
|
**Optional:**
|
|
* [ ] Added a Page in `explorer/src/Page/[Your Widget].elm` and added it to `explorer/src/Main.elm`
|