mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-28 23:12:22 +03:00
Update docs.
This commit is contained in:
parent
4cd79105f2
commit
a009fc5e64
@ -1,18 +1,23 @@
|
||||
module Form.FieldView exposing
|
||||
( Input(..), InputType(..), Options(..), input, inputTypeToString, radio, toHtmlProperties
|
||||
( Input(..), InputType(..), Options(..), input, inputTypeToString, radio, toHtmlProperties, Hidden(..)
|
||||
, radioStyled, inputStyled
|
||||
, Hidden(..), selectOld
|
||||
, selectOld
|
||||
)
|
||||
|
||||
{-|
|
||||
|
||||
@docs Input, InputType, Options, input, inputTypeToString, radio, select, toHtmlProperties
|
||||
@docs Input, InputType, Options, input, inputTypeToString, radio, toHtmlProperties, Hidden
|
||||
|
||||
|
||||
## Html.Styled Helpers
|
||||
|
||||
@docs radioStyled, inputStyled
|
||||
|
||||
|
||||
## Need to Migrate to New Validation Form type
|
||||
|
||||
@docs selectOld
|
||||
|
||||
-}
|
||||
|
||||
import Html exposing (Html)
|
||||
@ -92,6 +97,8 @@ type Input
|
||||
= Input InputType
|
||||
|
||||
|
||||
{-| There are no render helpers for hidden fields because the `Form.renderHtml` helper functions automatically render hidden fields for you.
|
||||
-}
|
||||
type Hidden
|
||||
= Hidden
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user