You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
interfaceformState{values: object;// should be typed according to schemaerrors: object;// should be typed according to schematouched: object;// should be typed according to schemasetFieldValue=(fieldName: string,value: any)=>void;setFieldError=(fieldName: string,error: any)=>void;setFieldTouched=(fieldName: string)=>void;setFieldUntouched=(fieldName: string)=>void;}
Remove all dependencies of formik, manage form state internally
The text was updated successfully, but these errors were encountered:
Improve docs, move all content in
README
to a documentation pageRename
FormInput
toField
Rename
FormArrayField
toArrayField
Rename
FormInputGroup
toGroupField
Remove
FormInputGroupItem
, export it asGroupField.Item
Don't return
formikForm
, returnformState
instead:formik
, manage form state internallyThe text was updated successfully, but these errors were encountered: