Reference

FormState

Describes the complete reactive state tracked by a form instance.

Signature

interface FormState

Members

dirty: boolean
errors: FormErrors<TValues>
initialValues: TValues
submitCount: number
submitting: boolean
touched: Partial<Record<FieldName<TValues>, boolean>>
valid: boolean
validating: Partial<Record<FieldName<TValues>, boolean>>
values: TValues