Skip to content

Releases: Orasund/elm-ui-widgets

Refactored Style Types and Added Lists

05 Feb 20:04
Compare
Choose a tag to compare

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

Added Switch Widget

20 Jan 22:03
Compare
Choose a tag to compare

Added Progress Indicator Widget

13 Aug 17:34
Compare
Choose a tag to compare

Added a circular progress indicator, thanks to @c-mart.

Changelog

  • Added Progress Indicator Widget (#11)
  • Added DialogV2 and ExpansionPanelV2 to match their corresponding functions (#20)
  • Fixed the font color of a button changing on Hovering (#18)