diff --git a/functions/useForm.html b/functions/useForm.html
index e9cfe78..dd6a9a4 100644
--- a/functions/useForm.html
+++ b/functions/useForm.html
@@ -44,7 +44,7 @@
+Defined in use-form.ts:22
+Defined in types.ts:253
+Defined in types.ts:317
+Defined in types.ts:303
+Defined in types.ts:154
+Defined in types.ts:144
Optional on Blur
on Blur?: ( ( event: ChangeEvent , value: T [ K ] ) => void )
@@ -113,7 +113,7 @@ be provided in UseFormReturn.errors .
Returns void
+Defined in types.ts:225
Optional on Change
on Change?: ( ( event: ChangeEvent , value: T [ K ] ) => void )
@@ -141,7 +141,7 @@ be provided in UseFormReturn.errors .
Returns void
+Defined in types.ts:213
Optional parse
parse?: ( ( value: string ) => T [ K ] )
@@ -168,7 +168,7 @@ placed here.
Returns T [ K ]
+Defined in types.ts:201
Optional pattern
pattern?: string | RegExp
@@ -177,7 +177,7 @@ placed here.
error for a pattern, use validate instead.
+Defined in types.ts:162
Optional required
required?: boolean
@@ -187,7 +187,7 @@ error for a pattern, use validate inste
To provide a custom error message, use errorMessages .
+Defined in types.ts:134
Optional validate
validate?: ( ( value: T [ K ] ) => string )
@@ -219,7 +219,7 @@ error for a pattern, use validate inste
Returns string
+Defined in types.ts:189
+Defined in types.ts:27
Optional initial State
initial State?: Partial < T >
@@ -81,7 +81,7 @@
Any missing field will be empty.
+Defined in types.ts:11
Optional on Submit
on Submit?: ( ( values: T , e: FormEvent < HTMLFormElement > ) => void )
@@ -103,7 +103,7 @@ Any missing field will be empty.
e: FormEvent < HTMLFormElement >
Returns void
+Defined in types.ts:16
Returns FieldReturn < E >
+Defined in types.ts:60
handle Submit
handle Submit: ( ( e: FormEvent < HTMLFormElement > ) => void )
@@ -126,21 +126,21 @@ You should inject this into the form's onSubmit prop.
Returns void
+Defined in types.ts:93
+Defined in types.ts:85
raw State
raw State: Partial < Record < keyof T , string | number | string [] > >
+Defined in types.ts:80
set Value
set Value: ( < K > ( key: K , value: T [ K ] ) => void )
@@ -173,7 +173,7 @@ You should inject this into the form's onSubmit prop.
Returns void
+Defined in types.ts:110
set Values
set Values: ( ( values: Partial < T > ) => void )
@@ -197,14 +197,14 @@ You should inject this into the form's onSubmit prop.
Returns void
+Defined in types.ts:101
+Defined in types.ts:75
Methods
@@ -223,7 +223,7 @@ You should inject this into the form's onSubmit prop.
Returns boolean
+Defined in types.ts:119
The error message for the field.