Regenerate docs.

This commit is contained in:
Dillon Kearns 2022-05-10 16:30:42 -07:00
parent 53d0acb1ec
commit 2f6a95f5d2
3 changed files with 9 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@ -14,12 +14,11 @@ module Form exposing
, withServerValidation , withServerValidation
, withMax, withMin , withMax, withMin
, withStep , withStep
, getErrors
, hasErrors, rawValues, runClientValidations, withClientValidation, withRecoverableClientValidation , hasErrors, rawValues, runClientValidations, withClientValidation, withRecoverableClientValidation
, FieldInfoSimple, FieldState, FinalFieldInfo, FormInfo, No, RawFieldState, TimeOfDay, Yes , FieldInfoSimple, FieldState, FinalFieldInfo, FormInfo, No, RawFieldState, TimeOfDay, Yes
, fieldStatusToString , fieldStatusToString
, getErrors --, withFormGetMethod, withFormUrl
--, withFormGetMethod, withFormUrl
) )
{-| {-|
@ -119,6 +118,8 @@ Steps
## Internals? ## Internals?
@docs getErrors
@docs hasErrors, rawValues, runClientValidations, withClientValidation, withRecoverableClientValidation @docs hasErrors, rawValues, runClientValidations, withClientValidation, withRecoverableClientValidation
@docs FieldInfoSimple, FieldState, FinalFieldInfo, FormInfo, No, RawFieldState, TimeOfDay, Yes @docs FieldInfoSimple, FieldState, FinalFieldInfo, FormInfo, No, RawFieldState, TimeOfDay, Yes
@ -313,6 +314,7 @@ type alias Model =
} }
{-| -}
getErrors : Model -> List ( String, String ) getErrors : Model -> List ( String, String )
getErrors { fields } = getErrors { fields } =
fields fields

View File

@ -1,11 +1,8 @@
module Pages.Fetcher exposing module Pages.Fetcher exposing (Fetcher(..), FetcherInfo, submit, map)
( Fetcher(..), FetcherInfo
, map, submit
)
{-| {-|
@docs Fetcher, FetcherInfo, submitFetcher @docs Fetcher, FetcherInfo, submit, map
-} -}
@ -50,6 +47,7 @@ submit byteDecoder options =
} }
{-| -}
map : (a -> b) -> Fetcher a -> Fetcher b map : (a -> b) -> Fetcher a -> Fetcher b
map mapFn (Fetcher fetcher) = map mapFn (Fetcher fetcher) =
Fetcher Fetcher