├── .eslintignore ├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── stale.yml └── workflows │ ├── main.yaml │ └── nodejs.yml ├── .gitignore ├── LICENSE ├── README.md ├── index.ts ├── jest.config.js ├── package.json ├── rollup.config.js ├── src ├── grid.tsx └── wrapper.tsx ├── tests ├── __snapshots__ │ └── grid.test.tsx.snap ├── grid.test.tsx └── setup.ts ├── tsconfig.json ├── tsconfig.release.json └── tsconfig.test.json /.eslintignore: -------------------------------------------------------------------------------- 1 | /**/*.js 2 | examples/ 3 | dist/ 4 | build/ 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/index.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/src/grid.tsx -------------------------------------------------------------------------------- /src/wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/src/wrapper.tsx -------------------------------------------------------------------------------- /tests/__snapshots__/grid.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/tests/__snapshots__/grid.test.tsx.snap -------------------------------------------------------------------------------- /tests/grid.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/tests/grid.test.tsx -------------------------------------------------------------------------------- /tests/setup.ts: -------------------------------------------------------------------------------- 1 | import "jsdom-global/register"; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/tsconfig.release.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grid-js/gridjs-react/HEAD/tsconfig.test.json --------------------------------------------------------------------------------