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
[`subscription` prop](https://github.com/final-form/react-final-form#subscription-formsubscription). Also included will be many of the same props provided to [`FormRenderProps`](#formrenderprops):
668
+
669
+
#### `batch: (fn: () => void) => void)`
670
+
671
+
A function that allows batch updates to be done to the form state.
672
+
[See the 🏁 Final Form docs on `batch`](https://github.com/final-form/final-form#batch-fn---void--void).
673
+
674
+
#### `blur: (name: string) => void`
675
+
676
+
A function to blur (mark inactive) any field.
677
+
678
+
#### `change: (name: string, value: any) => void`
679
+
680
+
A function to change the value of any field.
681
+
682
+
#### `focus: (name: string) => void`
683
+
684
+
A function to focus (mark active) any field.
685
+
686
+
#### `initialize: (values: Object) => void`
687
+
688
+
A function that initializes the form values.
689
+
[See the 🏁 Final Form docs on `initialize`](https://github.com/final-form/final-form#initialize-values-object--void).
690
+
691
+
#### `mutators?: { [string]: Function }`
692
+
693
+
[See the 🏁 Final Form docs on `mutators`](https://github.com/final-form/final-form#mutators--string-function-).
694
+
695
+
#### `reset: () => void`
696
+
697
+
A function that resets the form values to their last initialized values.
698
+
[See the 🏁 Final Form docs on `reset`](https://github.com/final-form/final-form#reset---void).
0 commit comments