Added comments

This commit is contained in:
Lucas Payr 2021-06-10 07:45:03 +02:00
parent 76c604a7c4
commit bfc6df731a
2 changed files with 8 additions and 3 deletions

View File

@ -850,11 +850,15 @@ type alias PasswordInput msg =
}
{-| An input field that supports autofilling the current password
-}
currentPasswordInput : PasswordInputStyle msg -> PasswordInput msg -> Element msg
currentPasswordInput =
PasswordInput.currentPasswordInput
{-| An input field that supports autofilling the new password
-}
newPasswordInput : PasswordInputStyle msg -> PasswordInput msg -> Element msg
newPasswordInput =
PasswordInput.newPasswordInput

View File

@ -1,5 +1,5 @@
module Widget.Material exposing
( Palette, defaultPalette, darkPalette, gray
( Palette, defaultPalette, darkPalette, gray, lightGray, textGray
, containedButton, outlinedButton, textButton
, iconButton, toggleButton, toggleRow
, switch
@ -17,7 +17,6 @@ module Widget.Material exposing
, snackbar
, tab, tabButton
, buttonRow
, textGray
)
{-| This module implements a Material design theme for all widgets.
@ -35,7 +34,7 @@ If you have any suggestions or improvements, be sure to leave a [PR or a Issue](
# Palette
@docs Palette, defaultPalette, darkPalette, gray
@docs Palette, defaultPalette, darkPalette, gray, lightGray, textGray
# Button
@ -684,6 +683,8 @@ textInput =
TextInput.textInput
{-| A text input style for the password Input.
-}
passwordInput : Palette -> PasswordInputStyle msg
passwordInput =
PasswordInput.passwordInput