Update docs.

This commit is contained in:
Dillon Kearns 2022-07-24 09:20:25 +02:00
parent 4cd79105f2
commit a009fc5e64

View File

@ -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