type FieldMeta: object;
An object type representing the metadata of a field in a form.
errorMap: ValidationErrorMap;
A map of errors related to the field value.
errors: ValidationError[];
An array of errors related to the field value.
isBlurred: boolean;
A flag indicating whether the field has been blurred.
isDirty: boolean;
A flag that is true
if the field's value has been modified by the user. Opposite of isPristine
.
isPristine: boolean;
A flag that is true
if the field's value has not been modified by the user. Opposite of isDirty
.
isTouched: boolean;
A flag indicating whether the field has been touched.
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.