Update docs.

This commit is contained in:
Dillon Kearns 2022-08-24 09:49:10 -07:00
parent c6edfdc56b
commit c5148bb765
3 changed files with 16 additions and 8 deletions

File diff suppressed because one or more lines are too long

View File

@ -8,16 +8,12 @@ module Form exposing
, FinalForm, withGetMethod, toDynamicTransition, toDynamicFetcher
, Errors, errorsForField
, parse, runServerSide, runOneOfServerSide
, ServerForms(..)
, initCombined, combine, initCombinedServer, combineServer
, dynamic
, AppContext
, toServerForm, withOnSubmit
, ServerForms(..)
-- subGroup
, combine
, combineServer
, initCombined
, initCombinedServer
-- subGroup
)
{-| One of the core features of elm-pages is helping you manage form data end-to-end, including
@ -251,6 +247,13 @@ Totally customizable. Uses [`Form.FieldView`](Form-FieldView) to render all of t
@docs parse, runServerSide, runOneOfServerSide
## Combining Forms to Run on Server
@docs ServerForms
@docs initCombined, combine, initCombinedServer, combineServer
## Dynamic Fields
@docs dynamic

View File

@ -31,6 +31,11 @@ module Form.Validation exposing
@docs global
## Temporary?
@docs mapWithNever
-}
import Dict exposing (Dict)