mirror of
https://github.com/dillonkearns/elm-pages-v3-beta.git
synced 2024-11-25 09:21:57 +03:00
Regenerate docs.
This commit is contained in:
parent
53d0acb1ec
commit
2f6a95f5d2
@ -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
|
||||
|
||||
)
|
||||
|
||||
{-|
|
||||
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user