Rename type.

This commit is contained in:
Dillon Kearns 2022-07-24 09:08:43 +02:00
parent 02c5a7a613
commit 4eb3667847
2 changed files with 3 additions and 4 deletions

View File

@ -213,7 +213,7 @@ validateCapitalized string =
( Nothing, [ "Needs to be capitalized" ] )
form : Form.StyledHtmlFormNew String User data msg
form : Form.StyledHtmlForm String User data msg
form =
Form.init2
(\first last username email dob checkin checkout rating password passwordConfirmation comments candidates offers pushNotifications acceptTerms ->

View File

@ -1,5 +1,5 @@
module Form exposing
( Form(..), FieldErrors
( Form(..), FieldErrors, StyledHtmlForm
, andThen
, Context
, renderHtml, renderStyledHtml
@ -9,7 +9,6 @@ module Form exposing
, FieldDefinition(..)
, HtmlFormNew
-- subGroup
, StyledHtmlFormNew
, dynamic2
, errorsForField2
, field2
@ -1362,7 +1361,7 @@ type alias HtmlFormNew error parsed data msg =
{-| -}
type alias StyledHtmlFormNew error parsed data msg =
type alias StyledHtmlForm error parsed data msg =
Form
error
{ combine : Validation error parsed Never