@@ -50,21 +50,26 @@ const customer = form.mutators.pop('customers')
50
50
51
51
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
52
52
53
- * [ Mutators] ( #mutators )
54
- * [ ` form.mutators.insert(name: string, index:number, value: any) => undefined ` ] ( #formmutatorsinsertname-string-indexnumber-value-any--undefined )
55
- * [ ` form.mutators.move(name: string, from: number, to: number) => undefined ` ] ( #formmutatorsmovename-string-from-number-to-number--undefined )
56
- * [ ` form.mutators.pop(name: string) => any ` ] ( #formmutatorspopname-string--any )
57
- * [ ` form.mutators.push(name: string, value: any) => void ` ] ( #formmutatorspushname-string-value-any--void )
58
- * [ ` form.mutators.remove(name: string, index: number) => any ` ] ( #formmutatorsremovename-string-index-number--any )
59
- * [ ` form.mutators.shift(name: string) => any ` ] ( #formmutatorsshiftname-string--any )
60
- * [ ` form.mutators.swap(name: string, indexA: number, indexB: number) => void ` ] ( #formmutatorsswapname-string-indexa-number-indexb-number--void )
61
- * [ ` form.mutators.unshift(name: string, value: any) => void ` ] ( #formmutatorsunshiftname-string-value-any--void )
53
+ - [ 🏁 Final Form Arrays] ( #%F0%9F%8F%81-final-form-arrays )
54
+ - [ Installation] ( #installation )
55
+ - [ Usage] ( #usage )
56
+ - [ Table of Contents] ( #table-of-contents )
57
+ - [ Mutators] ( #mutators )
58
+ - [ ` form.mutators.insert(name: string, index: number, value: any) => undefined ` ] ( #formmutatorsinsertname-string-index-number-value-any--undefined )
59
+ - [ ` form.mutators.move(name: string, from: number, to: number) => undefined ` ] ( #formmutatorsmovename-string-from-number-to-number--undefined )
60
+ - [ ` form.mutators.pop(name: string) => any ` ] ( #formmutatorspopname-string--any )
61
+ - [ ` form.mutators.push(name: string, value: any) => void ` ] ( #formmutatorspushname-string-value-any--void )
62
+ - [ ` form.mutators.remove(name: string, index: number) => any ` ] ( #formmutatorsremovename-string-index-number--any )
63
+ - [ ` form.mutators.shift(name: string) => any ` ] ( #formmutatorsshiftname-string--any )
64
+ - [ ` form.mutators.swap(name: string, indexA: number, indexB: number) => void ` ] ( #formmutatorsswapname-string-indexa-number-indexb-number--void )
65
+ - [ ` form.mutators.update(name: string, index: number, value: any) => void ` ] ( #formmutatorsupdatename-string-index-number-value-any--void )
66
+ - [ ` form.mutators.unshift(name: string, value: any) => void ` ] ( #formmutatorsunshiftname-string-value-any--void )
62
67
63
68
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
64
69
65
70
## Mutators
66
71
67
- ### ` form.mutators.insert(name: string, index:number, value: any) => undefined `
72
+ ### ` form.mutators.insert(name: string, index: number, value: any) => undefined `
68
73
69
74
Inserts a value into the specified index of the array field.
70
75
@@ -93,6 +98,10 @@ Removes a value from the beginning of the array field. Returns the value.
93
98
94
99
Swaps the position of two values in the array field.
95
100
101
+ ### ` form.mutators.update(name: string, index: number, value: any) => void `
102
+
103
+ Updates a value of the specified index of the array field.
104
+
96
105
### ` form.mutators.unshift(name: string, value: any) => void `
97
106
98
107
Inserts a value onto the beginning of the array field.
0 commit comments