Version 3.4.0

This commit is contained in:
Orasund 2022-07-18 18:06:32 +02:00
parent d9dc6fa32b
commit 3bafd79020
3 changed files with 4595 additions and 4165 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
"name": "Orasund/elm-ui-widgets",
"summary": "Collection of reusable views for elm-ui.",
"license": "BSD-3-Clause",
"version": "3.3.1",
"version": "3.4.0",
"exposed-modules": [
"Widget",
"Widget.Material",

View File

@ -381,6 +381,7 @@ button =
----------------------------------------------------------}
{-| -}
type alias CheckboxStyle msg =
{ elementButton : List (Attribute msg)
, ifDisabled : List (Attribute msg)
@ -390,6 +391,8 @@ type alias CheckboxStyle msg =
}
{-| A checkbox
-}
type alias Checkbox msg =
{ description : String
, onChange : Maybe (Bool -> msg)