Skip to content

Refactored Style Types and Added Lists

Latest
Compare
Choose a tag to compare
@Orasund Orasund released this 05 Feb 20:04
· 98 commits to master since this release

Changelog

  • Renamed Widget.Style.* to Widget.*
  • 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 in Widget 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 using Widget.singleModal or Widget.multiModal. Checkout the documentation for more information.
  • Renamed ExpansionPanel to ExpansionItem
  • Renamed modal to singleModal
  • 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