type FieldMeta: object;
type FieldMeta: object;
An object type representing the metadata of a field in a form.
errorMap: ValidationErrorMap;
errorMap: ValidationErrorMap;
A map of errors related to the field value.
errors: ValidationError[];
errors: ValidationError[];
An array of errors related to the field value.
isBlurred: boolean;
isBlurred: boolean;
A flag indicating whether the field has been blurred.
isDirty: boolean;
isDirty: boolean;
A flag that is true if the field's value has been modified by the user. Opposite of isPristine.
isPristine: boolean;
isPristine: boolean;
A flag that is true if the field's value has not been modified by the user. Opposite of isDirty.
isTouched: boolean;
isTouched: boolean;
A flag indicating whether the field has been touched.
isValidating: boolean;
isValidating: boolean;
A flag indicating whether the field is currently being validated.
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.