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

View File

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