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

I have a lot of forms in expansion panel and all of them have arrays in them. I am seeing significant performance impact . On further investigation looks like Chrome...

Take this example: https://codesandbox.io/s/react-final-form-field-arrays-p7ntw?file=/index.js - Add a row and leave it empty (to have failing validation in the array element). - Type something in the company field outside the array...

I'm using custom component to show the text input field nothing fancy just the basic component ``` const CustomTextField = ({ ...rest }) => { return ; }; ``` When...

### Are you submitting a **bug report** or a **feature request**? a bug report ### What is the current behavior? I use a pattern that rely on a Field to...

### Are you submitting a **bug report** or a **feature request**? Bug Report ### What is the current behavior? I'm using the form to create a large form (the size...

Having a default validation function provided - even when no field validator is given - results in whole form validation being triggered each time array items are altered: https://github.com/final-form/final-form/blob/9c732e27f29e82ea55b7c0f8a6cafb208c96ccb9/src/FinalForm.js#L897 This...

### Are you submitting a **bug report** or a **feature request**? Bug Report ### What is the current behavior? Inside a ``, try the following: `useFieldArray('fieldName', { initialValue: [] });...

### Are you submitting a **bug report** or a **feature request**? Bug report ### What is the current behavior? Conditionally-rendered FieldArrays do not re-render when `fields.push()` is called manually. https://codesandbox.io/s/react-final-form-field-arrays-28hnd/...

### Are you submitting a **bug report** or a **feature request**? Bug report ### What is the current behavior? When initial values are set with minimum 2 entries, clicking remove...