react-final-form-arrays icon indicating copy to clipboard operation
react-final-form-arrays copied to clipboard

A component for rendering and editing arrays 🏁 React Final Form

Results 93 react-final-form-arrays issues
Sort by recently updated
recently updated
newest added

### Are you submitting a **bug report** or a **feature request**? Bug report ### What is the current behavior? I have a form with the following characteristics: My initial values...

### Are you submitting a **bug report** or a **feature request**? Feature request ### What is the current behavior? Missing public type `FieldArrayRenderProps`, instead of that now I need to...

React Beautiful DnD example linked in the readme has a bug/nit: * add 2 customers * focus in c1 (top) last name * start typing * drag customer to reorder...

Request for the feqture! We have shift, pop, remove, but any one can clear the whole array for making it empty?

### Are you submitting a **bug report** or a **feature request**? Bug report ### What is the current behavior? I have two routes, each containing a single `Form` (nothing more)....

Hey, say I have this code: ``` type FormValues = { x: [{id: number, value: string}] } ``` ``` const { fields } = useFieldArray( "x", { isEqual, // re-render...

### Are you submitting a **bug report** or a **feature request**? Feature request, but the types suggest that it might be a bug ### What is the current behavior? `data`...

### Are you submitting a **bug report** or a **feature request**? ### What is the current behavior? `isEqual` on `` only runs once at start. i see the console.log only...

Been trying all kinds of things to have my `FieldArray` elements sort when there are updates. I created an example using the Simple Example (see: Sandbox Link below) Basically just...

Hi. I have a form with some initial values. I use FieldArray to render. If i use push to add empty entries, everything works just fine. But if I use...