Auto correction

This commit is contained in:
Lucas Payr 2021-06-15 17:37:43 +02:00
parent bb7538e413
commit 63fb927cdd
8 changed files with 55 additions and 29 deletions

View File

@ -1,4 +1,4 @@
module Internal.Material.Palette exposing (Palette, darkPalette, defaultPalette, gray, lightGray, textGray)
module Internal.Material.Palette exposing (Palette, darkPalette, defaultPalette, gray, lightGray, swapColor, textGray)
import Color exposing (Color)
import Widget.Material.Color as MaterialColor
@ -54,6 +54,23 @@ darkPalette =
}
swapColor : Palette -> Palette
swapColor palette =
let
on =
palette.on
in
{ palette
| primary = palette.secondary
, secondary = palette.primary
, on =
{ on
| primary = palette.on.secondary
, secondary = palette.on.primary
}
}
gray : Palette -> Color
gray palette =
palette.surface

View File

@ -236,7 +236,7 @@ type alias TextButton msg =
}
{-| A button containing only an icon, the text is used for screenreaders.
{-| A button containing only an icon, the text is used for screen readers.
import Widget.Material as Material
import Material.Icons as MaterialIcons
@ -557,7 +557,7 @@ select =
Select.select
{-| Selects multible options. This can be used for checkboxes.
{-| Selects multiple options. This can be used for checkboxes.
import Widget.Material as Material
import Set
@ -850,14 +850,14 @@ type alias PasswordInput msg =
}
{-| An input field that supports autofilling the current password
{-| An input field that supports auto filling the current password
-}
currentPasswordInput : PasswordInputStyle msg -> PasswordInput msg -> Element msg
currentPasswordInput =
PasswordInput.currentPasswordInput
{-| An input field that supports autofilling the new password
{-| An input field that supports auto filling the new password
-}
newPasswordInput : PasswordInputStyle msg -> PasswordInput msg -> Element msg
newPasswordInput =
@ -1198,7 +1198,7 @@ insetItem =
fun
{-| A item contining a text running over multiple lines.
{-| A item containing a text running over multiple lines.
import Element
import Widget.Material as Material
@ -1234,7 +1234,7 @@ multiLineItem =
fun
{-| A clickable item that contains a image , a line of text and some additonal information
{-| A clickable item that contains a image , a line of text and some additional information
import Element
import Widget.Material as Material
@ -1957,7 +1957,7 @@ type alias Tab msg =
}
{-| Displayes a list of contents in a tab
{-| Displays a list of contents in a tab
import Element
import Widget.Material as Material
@ -1996,7 +1996,7 @@ type alias Tab msg =
Just 1 ->
"This is the second tab" |> Element.text
Just 2 ->
"The thrid and last tab" |> Element.text
"The third and last tab" |> Element.text
_ ->
"Please select a tab" |> Element.text
)

View File

@ -16,7 +16,7 @@ module Widget.Customize exposing
, ifLast, mapIfLast
)
{-| Each and every widget can be customized by modifing the Style Type.
{-| Each and every widget can be customized by modifying the Style Type.
{- Make a button fill the full width -}
Widget.textButton
@ -98,7 +98,7 @@ If the content is just a text (or paragraph), then we use `contentText` instead:
@docs contentText, mapContentText
If some content is infront, we use `contentInFront`:
If some content is in front, we use `contentInFront`:
type alias MyStyle =
{ element : List (Attribute msg)

View File

@ -111,7 +111,7 @@ leftSheet style { title, onDismiss, menu } =
}
{-| Right sheet containg a simple list of buttons
{-| Right sheet containing a simple list of buttons
-}
rightSheet :
{ sheet : ColumnStyle msg
@ -143,7 +143,7 @@ rightSheet style { onDismiss, moreActions } =
}
{-| Top sheet containg a searchbar spaning the full witdh
{-| Top sheet containing a searchbar spanning the full width
-}
searchSheet :
TextInputStyle msg

View File

@ -24,7 +24,7 @@ module Widget.Material exposing
The stylings are following [the official Material Design guidelines](https://material.io/components) as close as possible.
Please use these widgets in combination with the official guidelines.
The typograpahy is taken from [the Material Design guidelines](https://material.io/design/typography/the-type-system.html#type-scale).
The typography is taken from [the Material Design guidelines](https://material.io/design/typography/the-type-system.html#type-scale).
Its recommended to use a font size of 16px width and the [Roboto Font](https://fonts.google.com/specimen/Roboto?query=Ro).
The style are not opaque, so you can change every styling to your needs.
@ -176,7 +176,7 @@ import Widget.Snackbar exposing (SnackbarStyle)
Check out [the official documentation about the color system](https://material.io/design/color/the-color-system.html#color-theme-creation) to see how these colors are used.
For the `-on` colors you can use white, for transitions into white, or black,for transitions into black. Other colors are also possible, but i've not seen any website acutally using a different color.
For the `-on` colors you can use white, for transitions into white, or black,for transitions into black. Other colors are also possible, but i've not seen any website actually using a different color.
-}
type alias Palette =
@ -207,7 +207,7 @@ defaultPalette =
Palette.defaultPalette
{-| The offical dark theme of google.
{-| The official dark theme of google.
![The dark theme](https://lh3.googleusercontent.com/tv7J2o4ZiSmLYwyBslBs_PLzKyzI8QUV5qdvHGfoAQn9r7pY4Hj5SmW27m3zUWeDtRSE8Cb5_5PQmkbavDfw7XbIL8EodIKZhilRdg=w1064-v0)
@ -219,6 +219,15 @@ darkPalette =
Palette.darkPalette
Why is this needed? See the [material design specification](https://material.io/design/color/applying-color-to-ui.html) for details.
-}
swapColor : Palette -> Palette
swapColor =
Palette.swapColor
{-| generates a "grayish 50%" color that matches the on-surface color.
-}
gray : Palette -> Color
@ -320,7 +329,7 @@ iconButton =
Technical Remark:
- The specification states that the disabled switch should have a color dependend on its activness. This is not implemented.
- The specification states that the disabled switch should have a color dependent on its activeness. This is not implemented.
-}
switch : Palette -> SwitchStyle msg
@ -334,12 +343,12 @@ switch =
-------------------------------------------------------------------------------}
{-| Chips have the same behaviour as buttons but are visually less important.
{-| Chips have the same behavior as buttons but are visually less important.
In the [official documentation](https://material.io/components/chips#types) chips have different names depending on where they are used:
- **Input Chips** are used inside a text field. Use `textInput` for this feature.
- **Choice Chips** are used for selcting an option.
- **Choice Chips** are used for selecting an option.
The material design guidelines recommend using `toggleButton` for icons with no text and chips for text with no icons.
- **Filter Chips** are used for selecting multiple options. They typically have a done-icon when selected.
- **Action chips** are like button. Make sure to include an icon when using action chips.
@ -348,7 +357,7 @@ In the [official documentation](https://material.io/components/chips#types) chip
Technical Remark:
- Desided against the implementation of an outlined chip.
- Decided against the implementation of an outlined chip.
Please open a new issue or a PR if you want to have it implemented.
-}
@ -542,7 +551,7 @@ cardColumn =
List.cardColumn
{-| A basic item containg some text, a button. Spans the full width.
{-| A basic item containing some text, a button. Spans the full width.
![fullBleedItem](https://orasund.github.io/elm-ui-widgets/assets/material/fullBleedItem.png)
@ -552,7 +561,7 @@ fullBleedItem =
Item.fullBleedItem
{-| A basic item containg some text, a button and some additional information.
{-| A basic item containing some text, a button and some additional information.
![insetItem](https://orasund.github.io/elm-ui-widgets/assets/material/insetItem.png)
@ -655,7 +664,7 @@ sortTable =
Technical Remark:
- The text color of the button was not given in the specification. This implementation
adujsts the luminance of the color to fit the [w3 accessability standard](https://www.w3.org/TR/WCAG20/#Contrast)
adjusts the luminance of the color to fit the [w3 accessability standard](https://www.w3.org/TR/WCAG20/#Contrast)
-}
snackbar : Palette -> SnackbarStyle msg
@ -703,7 +712,7 @@ passwordInput =
Technical Remark:
- The official specification states that the background color should be the surface color,
but the pictures and actuall implementations all have no background color.
but the pictures and actual implementations all have no background color.
So here the background color is also not set.
-}

View File

@ -275,7 +275,7 @@ shadow float =
}
{-| Utillity function to convert from Color to Element.Color
{-| Utility function to convert from Color to Element.Color
-}
fromColor : Color -> Element.Color
fromColor =

View File

@ -36,7 +36,7 @@ type alias ScrollingNav section =
}
{-| The intial state include the labels and the arrangement of the sections
{-| The initial state include the labels and the arrangement of the sections
-}
init :
{ toString : section -> String

View File

@ -52,7 +52,7 @@ type alias Snackbar a =
}
{-| Inital state
{-| Initial state
-}
init : Snackbar a
init =
@ -68,7 +68,7 @@ insert =
insertFor 10000
{-| Insert a message for a specific amount of milli seconds.
{-| Insert a message for a specific amount of milliseconds.
-}
insertFor : Int -> a -> Snackbar a -> Snackbar a
insertFor removeIn a model =
@ -88,7 +88,7 @@ dismiss model =
{-| Updates the model. This functions should be called regularly.
The first argument is the milli seconds that passed since the last time the function was called.
The first argument is the milliseconds that passed since the last time the function was called.
-}
timePassed : Int -> Snackbar a -> Snackbar a
timePassed ms model =