Releases: Orasund/elm-ui-widgets
Releases · Orasund/elm-ui-widgets
Refactored Style Types and Added Lists
Changelog
- Renamed
Widget.Style.*
toWidget.*
- Removed
Widget.ScrollingNav
(Can still be found in the repos, but is no longer supported) - Removed
Widget.Style.Template
(Not needed for the new style types) - Rewritten all Style Types making them more descriptive.
- Added
Widget.Icon
. We officially support all existing icon packages. See module for more information - Added Icon type:
type alias Icon msg = { color : Color, size: Int } -> Element msg
- Added complete implementation of the List widgets. Lists are composed of
Items
. Checkout the corresponding section inWidget
for more information. - Added Modal type. Anything that needs a modal will now return a
Modal
type. A list of these modals can then be combined usingWidget.singleModal
orWidget.multiModal
. Checkout the documentation for more information. - Renamed
ExpansionPanel
toExpansionItem
- Renamed
modal
tosingleModal
- Added AppBar and Sheet Widgets and removed
Layout
. The original code for the layout can now be found as an example in the repository. - Added missing
SnackbarStyle