├── .babelrc.js ├── .eslintrc ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ └── lock.yml ├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── eslint.config.js ├── package-scripts.js ├── package.json ├── rollup.config.js ├── src ├── FieldArray.test.tsx ├── FieldArray.ts ├── defaultIsEqual.test.ts ├── defaultIsEqual.ts ├── index.d.ts ├── index.ts ├── renderComponent.test.tsx ├── renderComponent.ts ├── testUtils.tsx ├── types.ts ├── useConstant.ts ├── useFieldArray.test.tsx └── useFieldArray.ts ├── tsconfig.build.json └── tsconfig.json /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | semi: false 2 | singleQuote: true 3 | trailingComma: none 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/package-scripts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/FieldArray.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/FieldArray.test.tsx -------------------------------------------------------------------------------- /src/FieldArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/FieldArray.ts -------------------------------------------------------------------------------- /src/defaultIsEqual.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/defaultIsEqual.test.ts -------------------------------------------------------------------------------- /src/defaultIsEqual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/defaultIsEqual.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/renderComponent.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/renderComponent.test.tsx -------------------------------------------------------------------------------- /src/renderComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/renderComponent.ts -------------------------------------------------------------------------------- /src/testUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/testUtils.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/useConstant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/useConstant.ts -------------------------------------------------------------------------------- /src/useFieldArray.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/useFieldArray.test.tsx -------------------------------------------------------------------------------- /src/useFieldArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/src/useFieldArray.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/final-form/react-final-form-arrays/HEAD/tsconfig.json --------------------------------------------------------------------------------