@@ -50,21 +50,26 @@ const customer = form.mutators.pop('customers')
5050
5151<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
5252
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 )
6267
6368<!-- END doctoc generated TOC please keep comment here to allow auto update -->
6469
6570## Mutators
6671
67- ### ` form.mutators.insert(name: string, index:number, value: any) => undefined `
72+ ### ` form.mutators.insert(name: string, index: number, value: any) => undefined `
6873
6974Inserts a value into the specified index of the array field.
7075
@@ -93,6 +98,10 @@ Removes a value from the beginning of the array field. Returns the value.
9398
9499Swaps the position of two values in the array field.
95100
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+
96105### ` form.mutators.unshift(name: string, value: any) => void `
97106
98107Inserts a value onto the beginning of the array field.
0 commit comments