2020-07-16 08:09:52 +03:00
|
|
|
# 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
|
2021-02-05 11:03:34 +03:00
|
|
|
* [ ] 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
|
2020-07-16 08:09:52 +03:00
|
|
|
* [ ] In `src/Widget.elm`:
|
|
|
|
* [ ] Added a copy of the Widget Type
|
2021-02-05 11:03:34 +03:00
|
|
|
* [ ] Added a copy of the Style Type
|
2020-07-16 08:09:52 +03:00
|
|
|
* [ ] Linked each constructor to its representative in `src/Internal/[You Widget].elm`
|
2021-02-05 11:03:34 +03:00
|
|
|
* [ ] 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
|
2020-07-16 08:09:52 +03:00
|
|
|
|
|
|
|
**Optional:**
|
2021-06-09 19:03:13 +03:00
|
|
|
* [ ] Added a Page in `explorer/src/Page/[Your Widget].elm` and added it to `explorer/src/Main.elm`
|