material-react-table-narender 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.editorconfig +13 -0
- package/.github/FUNDING.yml +3 -0
- package/.github/ISSUE_TEMPLATE/bug_report.yml +85 -0
- package/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/.github/workflows/main.yml +27 -0
- package/.github/workflows/pr.yml +37 -0
- package/.prettierignore +8 -0
- package/.prettierrc +6 -0
- package/CONTRIBUTING.md +56 -0
- package/LICENSE +21 -0
- package/README.md +215 -0
- package/apps/material-react-table-docs/README.md +34 -0
- package/apps/material-react-table-docs/components/mdx/AnchorLink.tsx +16 -0
- package/apps/material-react-table-docs/components/mdx/Blockquote.tsx +21 -0
- package/apps/material-react-table-docs/components/mdx/BlogAuthor.tsx +56 -0
- package/apps/material-react-table-docs/components/mdx/ComparisonTable.tsx +161 -0
- package/apps/material-react-table-docs/components/mdx/CompatibilityTable.tsx +115 -0
- package/apps/material-react-table-docs/components/mdx/Contributors.tsx +109 -0
- package/apps/material-react-table-docs/components/mdx/EthicalAd.tsx +35 -0
- package/apps/material-react-table-docs/components/mdx/FAQs.tsx +51 -0
- package/apps/material-react-table-docs/components/mdx/FeatureTable.tsx +280 -0
- package/apps/material-react-table-docs/components/mdx/GuideCard.tsx +37 -0
- package/apps/material-react-table-docs/components/mdx/HomeCards.tsx +215 -0
- package/apps/material-react-table-docs/components/mdx/InstallCommand.tsx +50 -0
- package/apps/material-react-table-docs/components/mdx/LinkCards.tsx +94 -0
- package/apps/material-react-table-docs/components/mdx/LinkHeading.tsx +74 -0
- package/apps/material-react-table-docs/components/mdx/SampleCodeSnippet.tsx +138 -0
- package/apps/material-react-table-docs/components/mdx/SourceCodeSnippet.tsx +474 -0
- package/apps/material-react-table-docs/components/mdx/StatBadges.tsx +79 -0
- package/apps/material-react-table-docs/components/mdx/mdxComponents.tsx +53 -0
- package/apps/material-react-table-docs/components/navigation/BreadCrumbs.tsx +96 -0
- package/apps/material-react-table-docs/components/navigation/Footer.tsx +260 -0
- package/apps/material-react-table-docs/components/navigation/Layout.tsx +76 -0
- package/apps/material-react-table-docs/components/navigation/MiniNav.tsx +82 -0
- package/apps/material-react-table-docs/components/navigation/Sidebar.tsx +169 -0
- package/apps/material-react-table-docs/components/navigation/SidebarItems.tsx +216 -0
- package/apps/material-react-table-docs/components/navigation/TableOfContentsList.tsx +100 -0
- package/apps/material-react-table-docs/components/navigation/TopBar.tsx +265 -0
- package/apps/material-react-table-docs/components/navigation/routes.ts +652 -0
- package/apps/material-react-table-docs/components/prop-tables/CellInstanceAPIsSource.tsx +16 -0
- package/apps/material-react-table-docs/components/prop-tables/CellInstanceAPIsTable.tsx +149 -0
- package/apps/material-react-table-docs/components/prop-tables/ColumnInstanceAPIsSource.tsx +16 -0
- package/apps/material-react-table-docs/components/prop-tables/ColumnInstanceAPIsTable.tsx +152 -0
- package/apps/material-react-table-docs/components/prop-tables/ColumnOptionsSource.tsx +16 -0
- package/apps/material-react-table-docs/components/prop-tables/ColumnOptionsTable.tsx +184 -0
- package/apps/material-react-table-docs/components/prop-tables/RowInstanceAPIsSource.tsx +16 -0
- package/apps/material-react-table-docs/components/prop-tables/RowInstanceAPIsTable.tsx +149 -0
- package/apps/material-react-table-docs/components/prop-tables/StateOptionsSource.tsx +16 -0
- package/apps/material-react-table-docs/components/prop-tables/StateOptionsTable.tsx +174 -0
- package/apps/material-react-table-docs/components/prop-tables/TableInstanceAPIsSource.tsx +16 -0
- package/apps/material-react-table-docs/components/prop-tables/TableInstanceAPIsTable.tsx +149 -0
- package/apps/material-react-table-docs/components/prop-tables/TableOptionsSource.tsx +16 -0
- package/apps/material-react-table-docs/components/prop-tables/TableOptionsTable.tsx +195 -0
- package/apps/material-react-table-docs/components/prop-tables/cellInstanceAPIs.ts +78 -0
- package/apps/material-react-table-docs/components/prop-tables/columnInstanceAPIs.ts +407 -0
- package/apps/material-react-table-docs/components/prop-tables/columnOptions.ts +654 -0
- package/apps/material-react-table-docs/components/prop-tables/rowInstanceAPIs.ts +285 -0
- package/apps/material-react-table-docs/components/prop-tables/stateOptions.ts +317 -0
- package/apps/material-react-table-docs/components/prop-tables/tableInstanceAPIs.ts +978 -0
- package/apps/material-react-table-docs/components/prop-tables/tableOptions.ts +2177 -0
- package/apps/material-react-table-docs/example-groups/BasicExamples.tsx +136 -0
- package/apps/material-react-table-docs/example-groups/DataExportExamples.tsx +53 -0
- package/apps/material-react-table-docs/example-groups/DraggingExamples.tsx +56 -0
- package/apps/material-react-table-docs/example-groups/EditingCRUDExamples.tsx +73 -0
- package/apps/material-react-table-docs/example-groups/ExpandingExamples.tsx +107 -0
- package/apps/material-react-table-docs/example-groups/FilteringExamples.tsx +71 -0
- package/apps/material-react-table-docs/example-groups/InstanceAPIsSwitcher.tsx +37 -0
- package/apps/material-react-table-docs/example-groups/LocaleExamples.tsx +166 -0
- package/apps/material-react-table-docs/example-groups/OptionsSwitcher.tsx +34 -0
- package/apps/material-react-table-docs/example-groups/RemoteFetchingExamples.tsx +82 -0
- package/apps/material-react-table-docs/example-groups/StickyPinningExamples.tsx +62 -0
- package/apps/material-react-table-docs/example-groups/VirtualizedExamples.tsx +59 -0
- package/apps/material-react-table-docs/examples/SimpleCodeSandbox.tsx +16 -0
- package/apps/material-react-table-docs/examples/advanced/index.tsx +16 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/package.json +29 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/src/TS.tsx +309 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/src/makeData.ts +1412 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/advanced/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/index.tsx +16 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/src/TS.tsx +143 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/src/makeData.ts +1611 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/aggregation-and-grouping/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/src/TS.tsx +105 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/src/makeData.ts +1611 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/aggregation-multi/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/package-lock.json +2595 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/package.json +29 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/src/TS.tsx +49 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/src/makeData.ts +38 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/alternate-column-filtering/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/src/TS.tsx +79 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/src/makeData.ts +43 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/alternate-detail-panel/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/package.json +29 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/src/TS.tsx +23 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/src/makeData.ts +156 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/alternate-pagination/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/basic/index.tsx +16 -0
- package/apps/material-react-table-docs/examples/basic/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/basic/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/basic/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/basic/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/basic/sandbox/src/TS.tsx +109 -0
- package/apps/material-react-table-docs/examples/basic/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/basic/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/basic/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/basic/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/basic/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/package-lock.json +2915 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/package.json +31 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/src/TS.tsx +89 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/src/makeData.ts +71 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/chart-detail-panel/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/column-actions-space/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/src/TS.tsx +44 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/src/makeData.ts +18 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/column-actions-space/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/column-alignment/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/src/TS.tsx +70 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/column-alignment/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/src/TS.tsx +109 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/src/makeData.ts +18 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/custom-column-actions/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/package-lock.json +2595 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/package.json +29 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/src/TS.tsx +74 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/src/makeData.ts +38 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/custom-column-filtering-ui/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/custom-headless/index.tsx +16 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/package.json +29 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/src/TS.tsx +125 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/src/makeData.ts +120 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/custom-headless/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/src/TS.tsx +88 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/custom-top-toolbar/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/src/TS.tsx +85 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/customize-display-columns/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/sandbox/src/TS.tsx +101 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/customize-filter-components/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/src/TS.tsx +73 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/src/makeData.ts +38 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/customize-filter-modes/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/src/TS.tsx +116 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/src/makeData.ts +117 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/customize-filter-variants/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/src/TS.tsx +52 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/src/makeData.ts +38 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/customize-global-filter-component/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/index.tsx +16 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/src/TS.tsx +89 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/src/makeData.ts +1611 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/customize-remove-column-grouping/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/src/TS.tsx +54 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/src/makeData.ts +51 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/customize-row-selection/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/src/TS.tsx +100 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/src/makeData.ts +57 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/customize-table-styles/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/src/TS.tsx +37 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/src/makeData.ts +18 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/disable-column-actions/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/sandbox/src/TS.tsx +90 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/disable-column-hiding/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/src/TS.tsx +49 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/disable-density-toggle/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/sandbox/package-lock.json +2647 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/sandbox/package.json +29 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/sandbox/src/TS.tsx +177 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/dynamic-columns/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/package-lock.json +2621 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/package.json +31 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/src/TS.tsx +365 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/src/makeData.ts +121 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/editing-crud-cell/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/package-lock.json +2621 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/package.json +31 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/src/TS.tsx +359 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/src/makeData.ts +121 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/editing-crud-modal/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/package-lock.json +2621 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/package.json +31 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/src/TS.tsx +322 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/src/makeData.ts +121 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/editing-crud-row/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/package-lock.json +2621 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/package.json +31 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/src/TS.tsx +358 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/src/makeData.ts +121 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/editing-crud-table/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/package-lock.json +2621 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/package.json +31 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/src/TS.tsx +405 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/src/makeData.ts +159 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/editing-crud-tree/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/src/TS.tsx +76 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-cell-actions/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/src/TS.tsx +39 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/src/makeData.ts +39 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-click-to-copy/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/index.tsx +16 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/src/TS.tsx +116 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/src/makeData.ts +1611 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-column-grouping/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/src/TS.tsx +48 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-column-ordering/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/src/TS.tsx +69 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/src/makeData.ts +73 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-column-pinning/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/src/TS.tsx +56 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-column-resizing/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/package-lock.json +2611 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/package.json +31 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/src/TS.tsx +27 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/src/makeData.ts +15 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-column-virtualization/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/src/TS.tsx +78 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/src/makeData.ts +55 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-conditionally/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/src/TS.tsx +80 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/src/makeData.ts +201 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-detail-panel-virtualized/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/sandbox/src/TS.tsx +110 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-expanding-tree/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/src/TS.tsx +65 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/src/makeData.ts +67 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-filter-facet-values/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/src/TS.tsx +125 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/src/makeData.ts +33 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-row-dragging/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/src/TS.tsx +48 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-original/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/src/TS.tsx +48 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-row-numbers-static/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/src/TS.tsx +57 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/src/makeData.ts +33 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-row-ordering/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/src/TS.tsx +75 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/src/makeData.ts +189 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-select/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/src/TS.tsx +50 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/src/makeData.ts +189 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-static/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/src/TS.tsx +69 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/src/makeData.ts +189 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-row-pinning-sticky/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/sandbox/src/TS.tsx +96 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-row-selection/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/package-lock.json +2611 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/package.json +31 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/src/TS.tsx +101 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/src/makeData.ts +26 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-row-virtualization/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/src/TS.tsx +59 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/src/makeData.ts +189 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/enable-sticky-header/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/sandbox/src/TS.tsx +121 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/expanding-tree-expanded/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/sandbox/src/TS.tsx +125 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/expanding-tree-flat-parse/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/sandbox/src/TS.tsx +151 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/expanding-tree-root-expanded/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/export-to-csv/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/package-lock.json +2624 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/package.json +28 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/src/TS.tsx +116 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/src/makeData.ts +107 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/export-to-csv/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/package-lock.json +2821 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/src/TS.tsx +106 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/src/makeData.ts +107 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/export-to-pdf/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/external-toolbar/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/src/TS.tsx +104 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/src/makeData.ts +87 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/external-toolbar/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/package-lock.json +2642 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/package.json +33 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/src/TS.tsx +106 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/font-awesome-icons/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/sandbox/package-lock.json +2647 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/sandbox/package.json +29 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/sandbox/src/TS.tsx +198 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/infinite-scrolling/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/sandbox/package-lock.json +2647 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/sandbox/package.json +29 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/sandbox/src/TS.tsx +246 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/lazy-detail-panel/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/sandbox/package-lock.json +2647 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/sandbox/package.json +29 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/sandbox/src/TS.tsx +178 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/lazy-sub-rows/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/linear-progress/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/src/TS.tsx +66 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/linear-progress/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/loading/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/src/TS.tsx +50 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/loading/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/src/TS.tsx +65 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ar/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-az/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-bg/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-cs/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-da/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-de/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-el/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-en/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-es/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-et/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/sandbox/src/TS.tsx +66 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fa/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fi/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-fr/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/sandbox/src/TS.tsx +66 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-he/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hr/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hu/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/src/TS.tsx +65 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-hy/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-id/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-it/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ja/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ko/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-nl/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-no/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-np/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pl/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-pt-BR/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ro/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-ru/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sk/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Cyrl-RS/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sr-Latn-RS/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-sv/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-tr/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-uk/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-vi/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hans/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/src/TS.tsx +60 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/src/makeData.ts +23 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/localization-i18n-zh-hant/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/manual-selection/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/manual-selection/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/manual-selection/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/manual-selection/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/manual-selection/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/manual-selection/sandbox/src/TS.tsx +102 -0
- package/apps/material-react-table-docs/examples/manual-selection/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/manual-selection/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/manual-selection/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/manual-selection/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/manual-selection/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/minimal/index.tsx +16 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/src/TS.tsx +78 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/minimal/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/mui-theme/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/mui-theme/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/mui-theme/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/mui-theme/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/mui-theme/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/mui-theme/sandbox/src/TS.tsx +136 -0
- package/apps/material-react-table-docs/examples/mui-theme/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/mui-theme/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/mui-theme/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/mui-theme/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/mui-theme/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/multi-sorting/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/src/TS.tsx +58 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/src/makeData.ts +74 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/multi-sorting/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/persistent-state/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/src/TS.tsx +184 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/src/main.tsx +7 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/src/makeData.ts +74 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/persistent-state/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/react-query/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/react-query/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/react-query/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/react-query/sandbox/package-lock.json +2647 -0
- package/apps/material-react-table-docs/examples/react-query/sandbox/package.json +29 -0
- package/apps/material-react-table-docs/examples/react-query/sandbox/src/TS.tsx +170 -0
- package/apps/material-react-table-docs/examples/react-query/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/react-query/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/react-query/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/react-query/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/react-query/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/remote/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/remote/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/remote/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/remote/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/remote/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/remote/sandbox/src/TS.tsx +150 -0
- package/apps/material-react-table-docs/examples/remote/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/remote/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/remote/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/remote/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/remote/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/src/TS.tsx +89 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/row-actions-buttons/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/src/TS.tsx +64 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/row-actions-menu-items/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/single-row-selection/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/single-row-selection/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/single-row-selection/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/single-row-selection/sandbox/package-lock.json +2594 -0
- package/apps/material-react-table-docs/examples/single-row-selection/sandbox/package.json +30 -0
- package/apps/material-react-table-docs/examples/single-row-selection/sandbox/src/TS.tsx +98 -0
- package/apps/material-react-table-docs/examples/single-row-selection/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/single-row-selection/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/single-row-selection/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/single-row-selection/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/single-row-selection/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/examples/virtualized/index.tsx +15 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/README.md +6 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/index.html +13 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/package-lock.json +2611 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/package.json +31 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/src/TS.tsx +138 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/src/main.tsx +9 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/src/makeData.ts +45 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/src/vite.env.d.ts +1 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/tsconfig.json +31 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/tsconfig.node.json +8 -0
- package/apps/material-react-table-docs/examples/virtualized/sandbox/vite.config.js +7 -0
- package/apps/material-react-table-docs/next-env.d.ts +5 -0
- package/apps/material-react-table-docs/next-sitemap.config.cjs +18 -0
- package/apps/material-react-table-docs/next.config.js +115 -0
- package/apps/material-react-table-docs/package.json +59 -0
- package/apps/material-react-table-docs/pages/_app.tsx +62 -0
- package/apps/material-react-table-docs/pages/about.mdx +169 -0
- package/apps/material-react-table-docs/pages/api/data.ts +1485 -0
- package/apps/material-react-table-docs/pages/api/moredata/[phoneNumber].ts +2390 -0
- package/apps/material-react-table-docs/pages/api/treedata.ts +178 -0
- package/apps/material-react-table-docs/pages/blog/index.mdx +14 -0
- package/apps/material-react-table-docs/pages/blog/the-best-react-data-grid-table-libraries-with-material-design-in-2023.mdx +152 -0
- package/apps/material-react-table-docs/pages/changelog.mdx +66 -0
- package/apps/material-react-table-docs/pages/docs/api/cell-instance-apis.mdx +83 -0
- package/apps/material-react-table-docs/pages/docs/api/column-instance-apis.mdx +90 -0
- package/apps/material-react-table-docs/pages/docs/api/column-options.mdx +64 -0
- package/apps/material-react-table-docs/pages/docs/api/index.mdx +14 -0
- package/apps/material-react-table-docs/pages/docs/api/mrt-components.mdx +214 -0
- package/apps/material-react-table-docs/pages/docs/api/mrt-hooks.mdx +153 -0
- package/apps/material-react-table-docs/pages/docs/api/row-instance-apis.mdx +89 -0
- package/apps/material-react-table-docs/pages/docs/api/state-options.mdx +61 -0
- package/apps/material-react-table-docs/pages/docs/api/table-instance-apis.mdx +73 -0
- package/apps/material-react-table-docs/pages/docs/api/table-options.mdx +62 -0
- package/apps/material-react-table-docs/pages/docs/examples/advanced.mdx +25 -0
- package/apps/material-react-table-docs/pages/docs/examples/aggregation-and-grouping.mdx +34 -0
- package/apps/material-react-table-docs/pages/docs/examples/basic.mdx +23 -0
- package/apps/material-react-table-docs/pages/docs/examples/chart-detail-panel.mdx +28 -0
- package/apps/material-react-table-docs/pages/docs/examples/column-grouping.mdx +23 -0
- package/apps/material-react-table-docs/pages/docs/examples/column-ordering.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/column-pinning.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/column-virtualization.mdx +34 -0
- package/apps/material-react-table-docs/pages/docs/examples/custom-filter-ui.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/custom-headless.mdx +28 -0
- package/apps/material-react-table-docs/pages/docs/examples/customized-grouping.mdx +23 -0
- package/apps/material-react-table-docs/pages/docs/examples/detail-panel.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/dynamic-columns.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/editing-crud-inline-cell.mdx +30 -0
- package/apps/material-react-table-docs/pages/docs/examples/editing-crud-inline-row.mdx +32 -0
- package/apps/material-react-table-docs/pages/docs/examples/editing-crud-inline-table.mdx +30 -0
- package/apps/material-react-table-docs/pages/docs/examples/editing-crud-tree.mdx +30 -0
- package/apps/material-react-table-docs/pages/docs/examples/editing-crud.mdx +30 -0
- package/apps/material-react-table-docs/pages/docs/examples/expanding-tree-flat-parse.mdx +28 -0
- package/apps/material-react-table-docs/pages/docs/examples/expanding-tree.mdx +28 -0
- package/apps/material-react-table-docs/pages/docs/examples/export-csv.mdx +28 -0
- package/apps/material-react-table-docs/pages/docs/examples/export-pdf.mdx +28 -0
- package/apps/material-react-table-docs/pages/docs/examples/faceted-values.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/filter-switching.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/filter-variants.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/index.mdx +14 -0
- package/apps/material-react-table-docs/pages/docs/examples/infinite-scrolling.mdx +30 -0
- package/apps/material-react-table-docs/pages/docs/examples/lazy-detail-panel.mdx +28 -0
- package/apps/material-react-table-docs/pages/docs/examples/lazy-sub-rows.mdx +30 -0
- package/apps/material-react-table-docs/pages/docs/examples/minimal.mdx +30 -0
- package/apps/material-react-table-docs/pages/docs/examples/popover-filters.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/react-query.mdx +30 -0
- package/apps/material-react-table-docs/pages/docs/examples/remote.mdx +28 -0
- package/apps/material-react-table-docs/pages/docs/examples/row-dragging.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/row-ordering.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/row-virtualization.mdx +32 -0
- package/apps/material-react-table-docs/pages/docs/examples/static-row-pinning.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/sticky-header.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/sticky-row-pinning.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/sticky-row-selection.mdx +26 -0
- package/apps/material-react-table-docs/pages/docs/examples/virtualized.mdx +32 -0
- package/apps/material-react-table-docs/pages/docs/getting-started/index.mdx +17 -0
- package/apps/material-react-table-docs/pages/docs/getting-started/install.mdx +124 -0
- package/apps/material-react-table-docs/pages/docs/getting-started/migrating-to-v3.mdx +112 -0
- package/apps/material-react-table-docs/pages/docs/getting-started/usage.mdx +173 -0
- package/apps/material-react-table-docs/pages/docs/guides/accessibility.mdx +133 -0
- package/apps/material-react-table-docs/pages/docs/guides/aggregation.mdx +231 -0
- package/apps/material-react-table-docs/pages/docs/guides/async-loading.mdx +155 -0
- package/apps/material-react-table-docs/pages/docs/guides/best-practices.mdx +373 -0
- package/apps/material-react-table-docs/pages/docs/guides/cell-actions.mdx +161 -0
- package/apps/material-react-table-docs/pages/docs/guides/click-to-copy.mdx +78 -0
- package/apps/material-react-table-docs/pages/docs/guides/column-actions.mdx +92 -0
- package/apps/material-react-table-docs/pages/docs/guides/column-filtering.mdx +397 -0
- package/apps/material-react-table-docs/pages/docs/guides/column-grouping.mdx +213 -0
- package/apps/material-react-table-docs/pages/docs/guides/column-hiding.mdx +143 -0
- package/apps/material-react-table-docs/pages/docs/guides/column-ordering-dnd.mdx +114 -0
- package/apps/material-react-table-docs/pages/docs/guides/column-pinning.mdx +81 -0
- package/apps/material-react-table-docs/pages/docs/guides/column-resizing.mdx +173 -0
- package/apps/material-react-table-docs/pages/docs/guides/column-size.mdx +174 -0
- package/apps/material-react-table-docs/pages/docs/guides/customize-components.mdx +419 -0
- package/apps/material-react-table-docs/pages/docs/guides/customize-icons.mdx +45 -0
- package/apps/material-react-table-docs/pages/docs/guides/data-columns.mdx +303 -0
- package/apps/material-react-table-docs/pages/docs/guides/density-toggle.mdx +56 -0
- package/apps/material-react-table-docs/pages/docs/guides/detail-panel.mdx +214 -0
- package/apps/material-react-table-docs/pages/docs/guides/display-columns.mdx +146 -0
- package/apps/material-react-table-docs/pages/docs/guides/editing.mdx +388 -0
- package/apps/material-react-table-docs/pages/docs/guides/expanding-sub-rows.mdx +217 -0
- package/apps/material-react-table-docs/pages/docs/guides/full-screen-toggle.mdx +77 -0
- package/apps/material-react-table-docs/pages/docs/guides/global-filtering.mdx +256 -0
- package/apps/material-react-table-docs/pages/docs/guides/index.mdx +18 -0
- package/apps/material-react-table-docs/pages/docs/guides/localization.mdx +65 -0
- package/apps/material-react-table-docs/pages/docs/guides/memoization.mdx +164 -0
- package/apps/material-react-table-docs/pages/docs/guides/pagination.mdx +190 -0
- package/apps/material-react-table-docs/pages/docs/guides/row-actions.mdx +133 -0
- package/apps/material-react-table-docs/pages/docs/guides/row-numbers.mdx +36 -0
- package/apps/material-react-table-docs/pages/docs/guides/row-ordering-dnd.mdx +66 -0
- package/apps/material-react-table-docs/pages/docs/guides/row-pinning.mdx +113 -0
- package/apps/material-react-table-docs/pages/docs/guides/row-selection.mdx +256 -0
- package/apps/material-react-table-docs/pages/docs/guides/sorting.mdx +212 -0
- package/apps/material-react-table-docs/pages/docs/guides/state-management.mdx +174 -0
- package/apps/material-react-table-docs/pages/docs/guides/sticky-header.mdx +52 -0
- package/apps/material-react-table-docs/pages/docs/guides/table-event-listeners.mdx +113 -0
- package/apps/material-react-table-docs/pages/docs/guides/toolbar-customization.mdx +269 -0
- package/apps/material-react-table-docs/pages/docs/guides/virtualization.mdx +200 -0
- package/apps/material-react-table-docs/pages/docs/index.mdx +15 -0
- package/apps/material-react-table-docs/pages/index.tsx +317 -0
- package/apps/material-react-table-docs/pages/roadmap.mdx +30 -0
- package/apps/material-react-table-docs/public/Discord-Logo-White.svg +10 -0
- package/apps/material-react-table-docs/public/banner.png +0 -0
- package/apps/material-react-table-docs/public/blog-imgs/best-table-libs/ag-grid-example.png +0 -0
- package/apps/material-react-table-docs/public/blog-imgs/best-table-libs/mrt-example.png +0 -0
- package/apps/material-react-table-docs/public/blog-imgs/best-table-libs/mui-x-example.png +0 -0
- package/apps/material-react-table-docs/public/blog-imgs/best-table-libs/tanstack.png +0 -0
- package/apps/material-react-table-docs/public/contributors/danielhumphrey.jpeg +0 -0
- package/apps/material-react-table-docs/public/contributors/kevinvancott.jpg +0 -0
- package/apps/material-react-table-docs/public/contributors/ryankholousi.jpeg +0 -0
- package/apps/material-react-table-docs/public/customizable.svg +1 -0
- package/apps/material-react-table-docs/public/discord.svg +1 -0
- package/apps/material-react-table-docs/public/efficient.svg +9 -0
- package/apps/material-react-table-docs/public/github-issues.svg +1 -0
- package/apps/material-react-table-docs/public/mrt_logo.png +0 -0
- package/apps/material-react-table-docs/public/mrt_logo.svg +27 -0
- package/apps/material-react-table-docs/public/npm.svg +1 -0
- package/apps/material-react-table-docs/public/opt-out.svg +1 -0
- package/apps/material-react-table-docs/public/quality.svg +1 -0
- package/apps/material-react-table-docs/public/robots.txt +11 -0
- package/apps/material-react-table-docs/public/sitemap-0.xml +104 -0
- package/apps/material-react-table-docs/public/sitemap.xml +4 -0
- package/apps/material-react-table-docs/public/source-code.svg +1 -0
- package/apps/material-react-table-docs/public/storybook.svg +1 -0
- package/apps/material-react-table-docs/styles/MuiTheme.ts +79 -0
- package/apps/material-react-table-docs/styles/ThemeContext.tsx +69 -0
- package/apps/material-react-table-docs/styles/globals.css +52 -0
- package/apps/material-react-table-docs/tsconfig.json +32 -0
- package/apps/test-cra/README.md +70 -0
- package/apps/test-cra/package.json +43 -0
- package/apps/test-cra/public/favicon.ico +0 -0
- package/apps/test-cra/public/index.html +41 -0
- package/apps/test-cra/src/App.js +99 -0
- package/apps/test-cra/src/index.js +10 -0
- package/apps/test-remix/.eslintrc.cjs +4 -0
- package/apps/test-remix/README.md +38 -0
- package/apps/test-remix/app/entry.client.tsx +18 -0
- package/apps/test-remix/app/entry.server.tsx +137 -0
- package/apps/test-remix/app/root.tsx +33 -0
- package/apps/test-remix/app/routes/_index.tsx +117 -0
- package/apps/test-remix/package.json +38 -0
- package/apps/test-remix/public/favicon.ico +0 -0
- package/apps/test-remix/remix.config.js +8 -0
- package/apps/test-remix/remix.env.d.ts +2 -0
- package/apps/test-remix/tsconfig.json +22 -0
- package/apps/test-vite/.eslintrc.cjs +18 -0
- package/apps/test-vite/README.md +27 -0
- package/apps/test-vite/index.html +13 -0
- package/apps/test-vite/package.json +34 -0
- package/apps/test-vite/public/vite.svg +1 -0
- package/apps/test-vite/src/App.tsx +111 -0
- package/apps/test-vite/src/assets/react.svg +1 -0
- package/apps/test-vite/src/main.tsx +9 -0
- package/apps/test-vite/src/vite-env.d.ts +1 -0
- package/apps/test-vite/tsconfig.json +25 -0
- package/apps/test-vite/tsconfig.node.json +10 -0
- package/apps/test-vite/vite.config.ts +7 -0
- package/package.json +66 -0
- package/packages/material-react-table/.eslintrc +76 -0
- package/packages/material-react-table/.storybook/main.ts +35 -0
- package/packages/material-react-table/.storybook/preview.tsx +104 -0
- package/packages/material-react-table/LICENSE +21 -0
- package/packages/material-react-table/README.md +215 -0
- package/packages/material-react-table/build-locales.mjs +112 -0
- package/packages/material-react-table/index.ts +1 -0
- package/packages/material-react-table/package.json +121 -0
- package/packages/material-react-table/rollup.config.mjs +51 -0
- package/packages/material-react-table/src/components/MaterialReactTable.tsx +36 -0
- package/packages/material-react-table/src/components/body/MRT_TableBody.tsx +221 -0
- package/packages/material-react-table/src/components/body/MRT_TableBodyCell.tsx +351 -0
- package/packages/material-react-table/src/components/body/MRT_TableBodyCellValue.tsx +130 -0
- package/packages/material-react-table/src/components/body/MRT_TableBodyRow.tsx +288 -0
- package/packages/material-react-table/src/components/body/MRT_TableBodyRowGrabHandle.tsx +61 -0
- package/packages/material-react-table/src/components/body/MRT_TableBodyRowPinButton.tsx +58 -0
- package/packages/material-react-table/src/components/body/MRT_TableDetailPanel.tsx +110 -0
- package/packages/material-react-table/src/components/buttons/MRT_ColumnPinningButtons.tsx +72 -0
- package/packages/material-react-table/src/components/buttons/MRT_CopyButton.tsx +87 -0
- package/packages/material-react-table/src/components/buttons/MRT_EditActionButtons.tsx +134 -0
- package/packages/material-react-table/src/components/buttons/MRT_ExpandAllButton.tsx +78 -0
- package/packages/material-react-table/src/components/buttons/MRT_ExpandButton.tsx +102 -0
- package/packages/material-react-table/src/components/buttons/MRT_GrabHandleButton.tsx +65 -0
- package/packages/material-react-table/src/components/buttons/MRT_RowPinButton.tsx +84 -0
- package/packages/material-react-table/src/components/buttons/MRT_ShowHideColumnsButton.tsx +50 -0
- package/packages/material-react-table/src/components/buttons/MRT_ToggleDensePaddingButton.tsx +52 -0
- package/packages/material-react-table/src/components/buttons/MRT_ToggleFiltersButton.tsx +40 -0
- package/packages/material-react-table/src/components/buttons/MRT_ToggleFullScreenButton.tsx +51 -0
- package/packages/material-react-table/src/components/buttons/MRT_ToggleGlobalFilterButton.tsx +44 -0
- package/packages/material-react-table/src/components/buttons/MRT_ToggleRowActionMenuButton.tsx +126 -0
- package/packages/material-react-table/src/components/footer/MRT_TableFooter.tsx +88 -0
- package/packages/material-react-table/src/components/footer/MRT_TableFooterCell.tsx +107 -0
- package/packages/material-react-table/src/components/footer/MRT_TableFooterRow.tsx +95 -0
- package/packages/material-react-table/src/components/head/MRT_TableHead.tsx +91 -0
- package/packages/material-react-table/src/components/head/MRT_TableHeadCell.tsx +344 -0
- package/packages/material-react-table/src/components/head/MRT_TableHeadCellColumnActionsButton.tsx +96 -0
- package/packages/material-react-table/src/components/head/MRT_TableHeadCellFilterContainer.tsx +52 -0
- package/packages/material-react-table/src/components/head/MRT_TableHeadCellFilterLabel.tsx +180 -0
- package/packages/material-react-table/src/components/head/MRT_TableHeadCellGrabHandle.tsx +83 -0
- package/packages/material-react-table/src/components/head/MRT_TableHeadCellResizeHandle.tsx +96 -0
- package/packages/material-react-table/src/components/head/MRT_TableHeadCellSortLabel.tsx +101 -0
- package/packages/material-react-table/src/components/head/MRT_TableHeadRow.tsx +90 -0
- package/packages/material-react-table/src/components/inputs/MRT_EditCellTextField.tsx +191 -0
- package/packages/material-react-table/src/components/inputs/MRT_FilterCheckbox.tsx +90 -0
- package/packages/material-react-table/src/components/inputs/MRT_FilterRangeFields.tsx +41 -0
- package/packages/material-react-table/src/components/inputs/MRT_FilterRangeSlider.tsx +136 -0
- package/packages/material-react-table/src/components/inputs/MRT_FilterTextField.tsx +538 -0
- package/packages/material-react-table/src/components/inputs/MRT_GlobalFilterTextField.tsx +163 -0
- package/packages/material-react-table/src/components/inputs/MRT_SelectCheckbox.tsx +133 -0
- package/packages/material-react-table/src/components/menus/MRT_ActionMenuItem.tsx +62 -0
- package/packages/material-react-table/src/components/menus/MRT_CellActionMenu.tsx +105 -0
- package/packages/material-react-table/src/components/menus/MRT_ColumnActionMenu.tsx +349 -0
- package/packages/material-react-table/src/components/menus/MRT_FilterOptionMenu.tsx +290 -0
- package/packages/material-react-table/src/components/menus/MRT_RowActionMenu.tsx +86 -0
- package/packages/material-react-table/src/components/menus/MRT_ShowHideColumnsMenu.tsx +158 -0
- package/packages/material-react-table/src/components/menus/MRT_ShowHideColumnsMenuItems.tsx +193 -0
- package/packages/material-react-table/src/components/modals/MRT_EditRowModal.tsx +114 -0
- package/packages/material-react-table/src/components/table/MRT_Table.tsx +84 -0
- package/packages/material-react-table/src/components/table/MRT_TableContainer.tsx +111 -0
- package/packages/material-react-table/src/components/table/MRT_TableLoadingOverlay.tsx +58 -0
- package/packages/material-react-table/src/components/table/MRT_TablePaper.tsx +89 -0
- package/packages/material-react-table/src/components/toolbar/MRT_BottomToolbar.tsx +111 -0
- package/packages/material-react-table/src/components/toolbar/MRT_LinearProgressBar.tsx +53 -0
- package/packages/material-react-table/src/components/toolbar/MRT_TablePagination.tsx +239 -0
- package/packages/material-react-table/src/components/toolbar/MRT_ToolbarAlertBanner.tsx +171 -0
- package/packages/material-react-table/src/components/toolbar/MRT_ToolbarDropZone.tsx +81 -0
- package/packages/material-react-table/src/components/toolbar/MRT_ToolbarInternalButtons.tsx +72 -0
- package/packages/material-react-table/src/components/toolbar/MRT_TopToolbar.tsx +130 -0
- package/packages/material-react-table/src/fns/aggregationFns.ts +3 -0
- package/packages/material-react-table/src/fns/filterFns.ts +196 -0
- package/packages/material-react-table/src/fns/sortingFns.ts +33 -0
- package/packages/material-react-table/src/hooks/display-columns/getMRT_RowActionsColumnDef.tsx +28 -0
- package/packages/material-react-table/src/hooks/display-columns/getMRT_RowDragColumnDef.tsx +29 -0
- package/packages/material-react-table/src/hooks/display-columns/getMRT_RowExpandColumnDef.tsx +91 -0
- package/packages/material-react-table/src/hooks/display-columns/getMRT_RowNumbersColumnDef.tsx +30 -0
- package/packages/material-react-table/src/hooks/display-columns/getMRT_RowPinningColumnDef.tsx +24 -0
- package/packages/material-react-table/src/hooks/display-columns/getMRT_RowSelectColumnDef.tsx +34 -0
- package/packages/material-react-table/src/hooks/display-columns/getMRT_RowSpacerColumnDef.tsx +33 -0
- package/packages/material-react-table/src/hooks/useMRT_ColumnVirtualizer.ts +124 -0
- package/packages/material-react-table/src/hooks/useMRT_Effects.ts +103 -0
- package/packages/material-react-table/src/hooks/useMRT_RowVirtualizer.ts +76 -0
- package/packages/material-react-table/src/hooks/useMRT_Rows.ts +44 -0
- package/packages/material-react-table/src/hooks/useMRT_TableInstance.ts +317 -0
- package/packages/material-react-table/src/hooks/useMRT_TableOptions.ts +270 -0
- package/packages/material-react-table/src/hooks/useMaterialReactTable.ts +12 -0
- package/packages/material-react-table/src/icons.ts +73 -0
- package/packages/material-react-table/src/index.ts +91 -0
- package/packages/material-react-table/src/locales/ar.ts +96 -0
- package/packages/material-react-table/src/locales/az.ts +96 -0
- package/packages/material-react-table/src/locales/bg.ts +96 -0
- package/packages/material-react-table/src/locales/cs.ts +97 -0
- package/packages/material-react-table/src/locales/da.ts +96 -0
- package/packages/material-react-table/src/locales/de.ts +96 -0
- package/packages/material-react-table/src/locales/el.ts +96 -0
- package/packages/material-react-table/src/locales/en.ts +96 -0
- package/packages/material-react-table/src/locales/es.ts +96 -0
- package/packages/material-react-table/src/locales/et.ts +97 -0
- package/packages/material-react-table/src/locales/fa.ts +96 -0
- package/packages/material-react-table/src/locales/fi.ts +97 -0
- package/packages/material-react-table/src/locales/fr.ts +96 -0
- package/packages/material-react-table/src/locales/he.ts +96 -0
- package/packages/material-react-table/src/locales/hr.ts +96 -0
- package/packages/material-react-table/src/locales/hu.ts +96 -0
- package/packages/material-react-table/src/locales/hy.ts +96 -0
- package/packages/material-react-table/src/locales/id.ts +97 -0
- package/packages/material-react-table/src/locales/it.ts +96 -0
- package/packages/material-react-table/src/locales/ja.ts +96 -0
- package/packages/material-react-table/src/locales/ko.ts +96 -0
- package/packages/material-react-table/src/locales/nl.ts +96 -0
- package/packages/material-react-table/src/locales/no.ts +98 -0
- package/packages/material-react-table/src/locales/np.ts +97 -0
- package/packages/material-react-table/src/locales/pl.ts +96 -0
- package/packages/material-react-table/src/locales/pt-BR.ts +96 -0
- package/packages/material-react-table/src/locales/pt.ts +96 -0
- package/packages/material-react-table/src/locales/ro.ts +96 -0
- package/packages/material-react-table/src/locales/ru.ts +96 -0
- package/packages/material-react-table/src/locales/sk.ts +97 -0
- package/packages/material-react-table/src/locales/sr-Cyrl-RS.ts +96 -0
- package/packages/material-react-table/src/locales/sr-Latn-RS.ts +96 -0
- package/packages/material-react-table/src/locales/sv.ts +96 -0
- package/packages/material-react-table/src/locales/tr.ts +96 -0
- package/packages/material-react-table/src/locales/uk.ts +96 -0
- package/packages/material-react-table/src/locales/vi.ts +96 -0
- package/packages/material-react-table/src/locales/zh-Hans.ts +95 -0
- package/packages/material-react-table/src/locales/zh-Hant.ts +95 -0
- package/packages/material-react-table/src/types.ts +1338 -0
- package/packages/material-react-table/src/utils/cell.utils.ts +234 -0
- package/packages/material-react-table/src/utils/column.utils.ts +209 -0
- package/packages/material-react-table/src/utils/displayColumn.utils.ts +152 -0
- package/packages/material-react-table/src/utils/row.utils.ts +260 -0
- package/packages/material-react-table/src/utils/style.utils.ts +213 -0
- package/packages/material-react-table/src/utils/tanstack.helpers.ts +64 -0
- package/packages/material-react-table/src/utils/utils.ts +23 -0
- package/packages/material-react-table/src/utils/virtualization.utils.ts +19 -0
- package/packages/material-react-table/stories/features/Aggregation.stories.tsx +313 -0
- package/packages/material-react-table/stories/features/CellActions.stories.tsx +160 -0
- package/packages/material-react-table/stories/features/ClickToCopy.stories.tsx +152 -0
- package/packages/material-react-table/stories/features/ColumnActions.stories.tsx +181 -0
- package/packages/material-react-table/stories/features/ColumnDragging.stories.tsx +92 -0
- package/packages/material-react-table/stories/features/ColumnGrouping.stories.tsx +362 -0
- package/packages/material-react-table/stories/features/ColumnHiding.stories.tsx +245 -0
- package/packages/material-react-table/stories/features/ColumnOrdering.stories.tsx +176 -0
- package/packages/material-react-table/stories/features/ColumnPinning.stories.tsx +111 -0
- package/packages/material-react-table/stories/features/ColumnResizing.stories.tsx +329 -0
- package/packages/material-react-table/stories/features/Creating.stories.tsx +404 -0
- package/packages/material-react-table/stories/features/DensePadding.stories.tsx +73 -0
- package/packages/material-react-table/stories/features/DetailPanel.stories.tsx +493 -0
- package/packages/material-react-table/stories/features/Editing.stories.tsx +1102 -0
- package/packages/material-react-table/stories/features/Filtering.stories.tsx +733 -0
- package/packages/material-react-table/stories/features/FullScreen.stories.tsx +96 -0
- package/packages/material-react-table/stories/features/HeaderGroups.stories.tsx +236 -0
- package/packages/material-react-table/stories/features/LayoutMode.stories.tsx +92 -0
- package/packages/material-react-table/stories/features/Loading.stories.tsx +152 -0
- package/packages/material-react-table/stories/features/Memod.stories.tsx +184 -0
- package/packages/material-react-table/stories/features/Pagination.stories.tsx +201 -0
- package/packages/material-react-table/stories/features/RowActions.stories.tsx +371 -0
- package/packages/material-react-table/stories/features/RowDragging.stories.tsx +87 -0
- package/packages/material-react-table/stories/features/RowNumbers.stories.tsx +113 -0
- package/packages/material-react-table/stories/features/RowOrdering.stories.tsx +282 -0
- package/packages/material-react-table/stories/features/RowPinning.stories.tsx +281 -0
- package/packages/material-react-table/stories/features/Search.stories.tsx +149 -0
- package/packages/material-react-table/stories/features/Selection.stories.tsx +379 -0
- package/packages/material-react-table/stories/features/Sorting.stories.tsx +138 -0
- package/packages/material-react-table/stories/features/SubRowTree.stories.tsx +225 -0
- package/packages/material-react-table/stories/features/Toolbar.stories.tsx +369 -0
- package/packages/material-react-table/stories/features/Virtualization.stories.tsx +391 -0
- package/packages/material-react-table/stories/fixed-bugs/click-propogation.stories.tsx +86 -0
- package/packages/material-react-table/stories/fixed-bugs/data-types.stories.tsx +71 -0
- package/packages/material-react-table/stories/fixed-bugs/fullscreen-with-appbar.stories.tsx +122 -0
- package/packages/material-react-table/stories/fixed-bugs/gridLayout.stories.tsx +80 -0
- package/packages/material-react-table/stories/fixed-bugs/loading.stories.tsx +260 -0
- package/packages/material-react-table/stories/fixed-bugs/mobile-date-pickers.stories.tsx +70 -0
- package/packages/material-react-table/stories/fixed-bugs/sticky-footer.stories.tsx +154 -0
- package/packages/material-react-table/stories/fixed-bugs/useEffects.stories.tsx +325 -0
- package/packages/material-react-table/stories/styling/Alignment.stories.tsx +229 -0
- package/packages/material-react-table/stories/styling/Caption.stories.tsx +64 -0
- package/packages/material-react-table/stories/styling/ColumnWidths.stories.tsx +320 -0
- package/packages/material-react-table/stories/styling/CustomTableBody.stories.tsx +66 -0
- package/packages/material-react-table/stories/styling/RowHeights.stories.tsx +62 -0
- package/packages/material-react-table/stories/styling/StickyHeader.stories.tsx +126 -0
- package/packages/material-react-table/stories/styling/StylingDisplayColumns.stories.tsx +95 -0
- package/packages/material-react-table/stories/styling/TableBodyCellStyles.stories.tsx +131 -0
- package/packages/material-react-table/stories/styling/TableBodyRowStyles.stories.tsx +106 -0
- package/packages/material-react-table/stories/styling/TableDiminsions.stories.tsx +115 -0
- package/packages/material-react-table/stories/styling/TableHeadCellStyles.stories.tsx +129 -0
- package/packages/material-react-table/stories/styling/TablePaper.stories.tsx +50 -0
- package/packages/material-react-table/stories/styling/Theming.stories.tsx +80 -0
- package/packages/material-react-table/tsconfig.json +36 -0
- package/packages/material-react-table/tsconfig.node.json +9 -0
- package/packages/material-react-table/vite.config.ts +7 -0
- package/pnpm-workspace.yaml +3 -0
- package/turbo.json +72 -0
- package/upgrade-examples.sh +42 -0
@@ -0,0 +1,1338 @@
|
|
1
|
+
import {
|
2
|
+
type Dispatch,
|
3
|
+
type ReactNode,
|
4
|
+
type RefObject,
|
5
|
+
type SetStateAction,
|
6
|
+
} from 'react';
|
7
|
+
import {
|
8
|
+
type AccessorFn,
|
9
|
+
type AggregationFn,
|
10
|
+
type Cell,
|
11
|
+
type Column,
|
12
|
+
type ColumnDef,
|
13
|
+
type ColumnFiltersState,
|
14
|
+
type ColumnOrderState,
|
15
|
+
type ColumnPinningState,
|
16
|
+
type ColumnSizingInfoState,
|
17
|
+
type ColumnSizingState,
|
18
|
+
type DeepKeys,
|
19
|
+
type DeepValue,
|
20
|
+
type ExpandedState,
|
21
|
+
type FilterFn,
|
22
|
+
type GroupingState,
|
23
|
+
type Header,
|
24
|
+
type HeaderGroup,
|
25
|
+
type OnChangeFn,
|
26
|
+
type PaginationState,
|
27
|
+
type Row,
|
28
|
+
type RowSelectionState,
|
29
|
+
type SortingFn,
|
30
|
+
type SortingState,
|
31
|
+
type Table,
|
32
|
+
type TableOptions,
|
33
|
+
type TableState,
|
34
|
+
type Updater,
|
35
|
+
type VisibilityState,
|
36
|
+
} from '@tanstack/react-table';
|
37
|
+
import {
|
38
|
+
type VirtualItem,
|
39
|
+
type Virtualizer,
|
40
|
+
type VirtualizerOptions,
|
41
|
+
} from '@tanstack/react-virtual';
|
42
|
+
import { type AlertProps } from '@mui/material/Alert';
|
43
|
+
import { type AutocompleteProps } from '@mui/material/Autocomplete';
|
44
|
+
import { type BoxProps } from '@mui/material/Box';
|
45
|
+
import { type ButtonProps } from '@mui/material/Button';
|
46
|
+
import { type CheckboxProps } from '@mui/material/Checkbox';
|
47
|
+
import { type ChipProps } from '@mui/material/Chip';
|
48
|
+
import { type CircularProgressProps } from '@mui/material/CircularProgress';
|
49
|
+
import { type DialogProps } from '@mui/material/Dialog';
|
50
|
+
import { type IconButtonProps } from '@mui/material/IconButton';
|
51
|
+
import { type LinearProgressProps } from '@mui/material/LinearProgress';
|
52
|
+
import { type PaginationProps } from '@mui/material/Pagination';
|
53
|
+
import { type PaperProps } from '@mui/material/Paper';
|
54
|
+
import { type RadioProps } from '@mui/material/Radio';
|
55
|
+
import { type SelectProps } from '@mui/material/Select';
|
56
|
+
import { type SkeletonProps } from '@mui/material/Skeleton';
|
57
|
+
import { type SliderProps } from '@mui/material/Slider';
|
58
|
+
import { type TableProps } from '@mui/material/Table';
|
59
|
+
import { type TableBodyProps } from '@mui/material/TableBody';
|
60
|
+
import { type TableCellProps } from '@mui/material/TableCell';
|
61
|
+
import { type TableContainerProps } from '@mui/material/TableContainer';
|
62
|
+
import { type TableFooterProps } from '@mui/material/TableFooter';
|
63
|
+
import { type TableHeadProps } from '@mui/material/TableHead';
|
64
|
+
import { type TableRowProps } from '@mui/material/TableRow';
|
65
|
+
import { type TextFieldProps } from '@mui/material/TextField';
|
66
|
+
import { type Theme } from '@mui/material/styles';
|
67
|
+
import {
|
68
|
+
type DatePickerProps,
|
69
|
+
type DateTimePickerProps,
|
70
|
+
type TimePickerProps,
|
71
|
+
} from '@mui/x-date-pickers';
|
72
|
+
import { type MRT_AggregationFns } from './fns/aggregationFns';
|
73
|
+
import { type MRT_FilterFns } from './fns/filterFns';
|
74
|
+
import { type MRT_SortingFns } from './fns/sortingFns';
|
75
|
+
import { type MRT_Icons } from './icons';
|
76
|
+
|
77
|
+
export type { MRT_Icons };
|
78
|
+
export type LiteralUnion<T extends U, U = string> =
|
79
|
+
| T
|
80
|
+
| (U & Record<never, never>);
|
81
|
+
|
82
|
+
export type Prettify<T> = { [K in keyof T]: T[K] } & unknown;
|
83
|
+
|
84
|
+
export type Xor<A, B> =
|
85
|
+
| Prettify<A & { [k in keyof B]?: never }>
|
86
|
+
| Prettify<B & { [k in keyof A]?: never }>;
|
87
|
+
|
88
|
+
export type DropdownOption =
|
89
|
+
| {
|
90
|
+
label?: string;
|
91
|
+
value: any;
|
92
|
+
}
|
93
|
+
| string;
|
94
|
+
|
95
|
+
export type MRT_DensityState = 'comfortable' | 'compact' | 'spacious';
|
96
|
+
|
97
|
+
export type MRT_ColumnFilterFnsState = Record<string, MRT_FilterOption>;
|
98
|
+
|
99
|
+
export type MRT_RowData = Record<string, any>;
|
100
|
+
|
101
|
+
export type MRT_ColumnFiltersState = ColumnFiltersState;
|
102
|
+
export type MRT_ColumnOrderState = ColumnOrderState;
|
103
|
+
export type MRT_ColumnPinningState = ColumnPinningState;
|
104
|
+
export type MRT_ColumnSizingInfoState = ColumnSizingInfoState;
|
105
|
+
export type MRT_ColumnSizingState = ColumnSizingState;
|
106
|
+
export type MRT_ExpandedState = ExpandedState;
|
107
|
+
export type MRT_GroupingState = GroupingState;
|
108
|
+
export type MRT_PaginationState = PaginationState;
|
109
|
+
export type MRT_RowSelectionState = RowSelectionState;
|
110
|
+
export type MRT_SortingState = SortingState;
|
111
|
+
export type MRT_Updater<T> = Updater<T>;
|
112
|
+
export type MRT_VirtualItem = VirtualItem;
|
113
|
+
export type MRT_VisibilityState = VisibilityState;
|
114
|
+
|
115
|
+
export type MRT_VirtualizerOptions<
|
116
|
+
TScrollElement extends Element | Window = Element | Window,
|
117
|
+
TItemElement extends Element = Element,
|
118
|
+
> = VirtualizerOptions<TScrollElement, TItemElement>;
|
119
|
+
|
120
|
+
export type MRT_ColumnVirtualizer<
|
121
|
+
TScrollElement extends Element | Window = HTMLDivElement,
|
122
|
+
TItemElement extends Element = HTMLTableCellElement,
|
123
|
+
> = Virtualizer<TScrollElement, TItemElement> & {
|
124
|
+
virtualColumns: MRT_VirtualItem[];
|
125
|
+
virtualPaddingLeft?: number;
|
126
|
+
virtualPaddingRight?: number;
|
127
|
+
};
|
128
|
+
|
129
|
+
export type MRT_RowVirtualizer<
|
130
|
+
TScrollElement extends Element | Window = HTMLDivElement,
|
131
|
+
TItemElement extends Element = HTMLTableRowElement,
|
132
|
+
> = Virtualizer<TScrollElement, TItemElement> & {
|
133
|
+
virtualRows: MRT_VirtualItem[];
|
134
|
+
};
|
135
|
+
|
136
|
+
export type MRT_ColumnHelper<TData extends MRT_RowData> = {
|
137
|
+
accessor: <
|
138
|
+
TAccessor extends AccessorFn<TData> | DeepKeys<TData>,
|
139
|
+
TValue extends TAccessor extends AccessorFn<TData, infer TReturn>
|
140
|
+
? TReturn
|
141
|
+
: TAccessor extends DeepKeys<TData>
|
142
|
+
? DeepValue<TData, TAccessor>
|
143
|
+
: never,
|
144
|
+
>(
|
145
|
+
accessor: TAccessor,
|
146
|
+
column: MRT_DisplayColumnDef<TData, TValue>,
|
147
|
+
) => MRT_ColumnDef<TData, TValue>;
|
148
|
+
display: (column: MRT_DisplayColumnDef<TData>) => MRT_ColumnDef<TData>;
|
149
|
+
group: (column: MRT_GroupColumnDef<TData>) => MRT_ColumnDef<TData>;
|
150
|
+
};
|
151
|
+
|
152
|
+
export interface MRT_Localization {
|
153
|
+
actions: string;
|
154
|
+
and: string;
|
155
|
+
cancel: string;
|
156
|
+
changeFilterMode: string;
|
157
|
+
changeSearchMode: string;
|
158
|
+
clearFilter: string;
|
159
|
+
clearSearch: string;
|
160
|
+
clearSelection: string;
|
161
|
+
clearSort: string;
|
162
|
+
clickToCopy: string;
|
163
|
+
collapse: string;
|
164
|
+
collapseAll: string;
|
165
|
+
columnActions: string;
|
166
|
+
copiedToClipboard: string;
|
167
|
+
copy: string;
|
168
|
+
dropToGroupBy: string;
|
169
|
+
edit: string;
|
170
|
+
expand: string;
|
171
|
+
expandAll: string;
|
172
|
+
filterArrIncludes: string;
|
173
|
+
filterArrIncludesAll: string;
|
174
|
+
filterArrIncludesSome: string;
|
175
|
+
filterBetween: string;
|
176
|
+
filterBetweenInclusive: string;
|
177
|
+
filterByColumn: string;
|
178
|
+
filterContains: string;
|
179
|
+
filterEmpty: string;
|
180
|
+
filterEndsWith: string;
|
181
|
+
filterEquals: string;
|
182
|
+
filterEqualsString: string;
|
183
|
+
filterFuzzy: string;
|
184
|
+
filterGreaterThan: string;
|
185
|
+
filterGreaterThanOrEqualTo: string;
|
186
|
+
filterIncludesString: string;
|
187
|
+
filterIncludesStringSensitive: string;
|
188
|
+
filteringByColumn: string;
|
189
|
+
filterInNumberRange: string;
|
190
|
+
filterLessThan: string;
|
191
|
+
filterLessThanOrEqualTo: string;
|
192
|
+
filterMode: string;
|
193
|
+
filterNotEmpty: string;
|
194
|
+
filterNotEquals: string;
|
195
|
+
filterStartsWith: string;
|
196
|
+
filterWeakEquals: string;
|
197
|
+
goToFirstPage: string;
|
198
|
+
goToLastPage: string;
|
199
|
+
goToNextPage: string;
|
200
|
+
goToPreviousPage: string;
|
201
|
+
grab: string;
|
202
|
+
groupByColumn: string;
|
203
|
+
groupedBy: string;
|
204
|
+
hideAll: string;
|
205
|
+
hideColumn: string;
|
206
|
+
max: string;
|
207
|
+
min: string;
|
208
|
+
move: string;
|
209
|
+
noRecordsToDisplay: string;
|
210
|
+
noResultsFound: string;
|
211
|
+
of: string;
|
212
|
+
or: string;
|
213
|
+
pin: string;
|
214
|
+
pinToLeft: string;
|
215
|
+
pinToRight: string;
|
216
|
+
resetColumnSize: string;
|
217
|
+
resetOrder: string;
|
218
|
+
rowActions: string;
|
219
|
+
rowNumber: string;
|
220
|
+
rowNumbers: string;
|
221
|
+
rowsPerPage: string;
|
222
|
+
save: string;
|
223
|
+
search: string;
|
224
|
+
select: string;
|
225
|
+
selectedCountOfRowCountRowsSelected: string;
|
226
|
+
showAll: string;
|
227
|
+
showAllColumns: string;
|
228
|
+
showHideColumns: string;
|
229
|
+
showHideFilters: string;
|
230
|
+
showHideSearch: string;
|
231
|
+
sortByColumnAsc: string;
|
232
|
+
sortByColumnDesc: string;
|
233
|
+
sortedByColumnAsc: string;
|
234
|
+
sortedByColumnDesc: string;
|
235
|
+
thenBy: string;
|
236
|
+
toggleDensity: string;
|
237
|
+
toggleFullScreen: string;
|
238
|
+
toggleSelectAll: string;
|
239
|
+
toggleSelectRow: string;
|
240
|
+
toggleVisibility: string;
|
241
|
+
ungroupByColumn: string;
|
242
|
+
unpin: string;
|
243
|
+
unpinAll: string;
|
244
|
+
}
|
245
|
+
|
246
|
+
export interface MRT_Theme {
|
247
|
+
baseBackgroundColor: string;
|
248
|
+
cellNavigationOutlineColor: string;
|
249
|
+
draggingBorderColor: string;
|
250
|
+
matchHighlightColor: string;
|
251
|
+
menuBackgroundColor: string;
|
252
|
+
pinnedRowBackgroundColor: string;
|
253
|
+
selectedRowBackgroundColor: string;
|
254
|
+
}
|
255
|
+
|
256
|
+
export interface MRT_RowModel<TData extends MRT_RowData> {
|
257
|
+
flatRows: MRT_Row<TData>[];
|
258
|
+
rows: MRT_Row<TData>[];
|
259
|
+
rowsById: { [key: string]: MRT_Row<TData> };
|
260
|
+
}
|
261
|
+
|
262
|
+
export type MRT_TableInstance<TData extends MRT_RowData> = Omit<
|
263
|
+
Table<TData>,
|
264
|
+
| 'getAllColumns'
|
265
|
+
| 'getAllFlatColumns'
|
266
|
+
| 'getAllLeafColumns'
|
267
|
+
| 'getBottomRows'
|
268
|
+
| 'getCenterLeafColumns'
|
269
|
+
| 'getCenterRows'
|
270
|
+
| 'getColumn'
|
271
|
+
| 'getExpandedRowModel'
|
272
|
+
| 'getFlatHeaders'
|
273
|
+
| 'getFooterGroups'
|
274
|
+
| 'getHeaderGroups'
|
275
|
+
| 'getLeafHeaders'
|
276
|
+
| 'getLeftLeafColumns'
|
277
|
+
| 'getPaginationRowModel'
|
278
|
+
| 'getPreFilteredRowModel'
|
279
|
+
| 'getPrePaginationRowModel'
|
280
|
+
| 'getRightLeafColumns'
|
281
|
+
| 'getRowModel'
|
282
|
+
| 'getSelectedRowModel'
|
283
|
+
| 'getState'
|
284
|
+
| 'getTopRows'
|
285
|
+
| 'options'
|
286
|
+
> & {
|
287
|
+
getAllColumns: () => MRT_Column<TData>[];
|
288
|
+
getAllFlatColumns: () => MRT_Column<TData>[];
|
289
|
+
getAllLeafColumns: () => MRT_Column<TData>[];
|
290
|
+
getBottomRows: () => MRT_Row<TData>[];
|
291
|
+
getCenterLeafColumns: () => MRT_Column<TData>[];
|
292
|
+
getCenterRows: () => MRT_Row<TData>[];
|
293
|
+
getColumn: (columnId: string) => MRT_Column<TData>;
|
294
|
+
getExpandedRowModel: () => MRT_RowModel<TData>;
|
295
|
+
getFlatHeaders: () => MRT_Header<TData>[];
|
296
|
+
getFooterGroups: () => MRT_HeaderGroup<TData>[];
|
297
|
+
getHeaderGroups: () => MRT_HeaderGroup<TData>[];
|
298
|
+
getLeafHeaders: () => MRT_Header<TData>[];
|
299
|
+
getLeftLeafColumns: () => MRT_Column<TData>[];
|
300
|
+
getPaginationRowModel: () => MRT_RowModel<TData>;
|
301
|
+
getPreFilteredRowModel: () => MRT_RowModel<TData>;
|
302
|
+
getPrePaginationRowModel: () => MRT_RowModel<TData>;
|
303
|
+
getRightLeafColumns: () => MRT_Column<TData>[];
|
304
|
+
getRowModel: () => MRT_RowModel<TData>;
|
305
|
+
getSelectedRowModel: () => MRT_RowModel<TData>;
|
306
|
+
getState: () => MRT_TableState<TData>;
|
307
|
+
getTopRows: () => MRT_Row<TData>[];
|
308
|
+
options: MRT_StatefulTableOptions<TData>;
|
309
|
+
refs: {
|
310
|
+
actionCellRef: RefObject<HTMLTableCellElement | null>;
|
311
|
+
bottomToolbarRef: RefObject<HTMLDivElement | null>;
|
312
|
+
editInputRefs: RefObject<Record<string, HTMLInputElement> | null>;
|
313
|
+
filterInputRefs: RefObject<Record<string, HTMLInputElement> | null>;
|
314
|
+
lastSelectedRowId: RefObject<null | string>;
|
315
|
+
searchInputRef: RefObject<HTMLInputElement | null>;
|
316
|
+
tableContainerRef: RefObject<HTMLDivElement | null>;
|
317
|
+
tableFooterRef: RefObject<HTMLTableSectionElement | null>;
|
318
|
+
tableHeadCellRefs: RefObject<Record<string, HTMLTableCellElement> | null>;
|
319
|
+
tableHeadRef: RefObject<HTMLTableSectionElement | null>;
|
320
|
+
tablePaperRef: RefObject<HTMLDivElement | null>;
|
321
|
+
topToolbarRef: RefObject<HTMLDivElement | null>;
|
322
|
+
};
|
323
|
+
setActionCell: Dispatch<SetStateAction<MRT_Cell<TData> | null>>;
|
324
|
+
setColumnFilterFns: Dispatch<SetStateAction<MRT_ColumnFilterFnsState>>;
|
325
|
+
setCreatingRow: Dispatch<SetStateAction<MRT_Row<TData> | null | true>>;
|
326
|
+
setDensity: Dispatch<SetStateAction<MRT_DensityState>>;
|
327
|
+
setDraggingColumn: Dispatch<SetStateAction<MRT_Column<TData> | null>>;
|
328
|
+
setDraggingRow: Dispatch<SetStateAction<MRT_Row<TData> | null>>;
|
329
|
+
setEditingCell: Dispatch<SetStateAction<MRT_Cell<TData> | null>>;
|
330
|
+
setEditingRow: Dispatch<SetStateAction<MRT_Row<TData> | null>>;
|
331
|
+
setGlobalFilterFn: Dispatch<SetStateAction<MRT_FilterOption>>;
|
332
|
+
setHoveredColumn: Dispatch<SetStateAction<Partial<MRT_Column<TData>> | null>>;
|
333
|
+
setHoveredRow: Dispatch<SetStateAction<Partial<MRT_Row<TData>> | null>>;
|
334
|
+
setIsFullScreen: Dispatch<SetStateAction<boolean>>;
|
335
|
+
setShowAlertBanner: Dispatch<SetStateAction<boolean>>;
|
336
|
+
setShowColumnFilters: Dispatch<SetStateAction<boolean>>;
|
337
|
+
setShowGlobalFilter: Dispatch<SetStateAction<boolean>>;
|
338
|
+
setShowToolbarDropZone: Dispatch<SetStateAction<boolean>>;
|
339
|
+
};
|
340
|
+
|
341
|
+
export type MRT_DefinedTableOptions<TData extends MRT_RowData> = Omit<
|
342
|
+
MRT_TableOptions<TData>,
|
343
|
+
'icons' | 'localization' | 'mrtTheme'
|
344
|
+
> & {
|
345
|
+
icons: MRT_Icons;
|
346
|
+
localization: MRT_Localization;
|
347
|
+
mrtTheme: Required<MRT_Theme>;
|
348
|
+
};
|
349
|
+
|
350
|
+
export type MRT_StatefulTableOptions<TData extends MRT_RowData> =
|
351
|
+
MRT_DefinedTableOptions<TData> & {
|
352
|
+
state: Pick<
|
353
|
+
MRT_TableState<TData>,
|
354
|
+
| 'columnFilterFns'
|
355
|
+
| 'columnOrder'
|
356
|
+
| 'columnSizingInfo'
|
357
|
+
| 'creatingRow'
|
358
|
+
| 'density'
|
359
|
+
| 'draggingColumn'
|
360
|
+
| 'draggingRow'
|
361
|
+
| 'editingCell'
|
362
|
+
| 'editingRow'
|
363
|
+
| 'globalFilterFn'
|
364
|
+
| 'grouping'
|
365
|
+
| 'hoveredColumn'
|
366
|
+
| 'hoveredRow'
|
367
|
+
| 'isFullScreen'
|
368
|
+
| 'pagination'
|
369
|
+
| 'showAlertBanner'
|
370
|
+
| 'showColumnFilters'
|
371
|
+
| 'showGlobalFilter'
|
372
|
+
| 'showToolbarDropZone'
|
373
|
+
>;
|
374
|
+
};
|
375
|
+
|
376
|
+
export interface MRT_TableState<TData extends MRT_RowData> extends TableState {
|
377
|
+
actionCell?: MRT_Cell<TData> | null;
|
378
|
+
columnFilterFns: MRT_ColumnFilterFnsState;
|
379
|
+
creatingRow: MRT_Row<TData> | null;
|
380
|
+
density: MRT_DensityState;
|
381
|
+
draggingColumn: MRT_Column<TData> | null;
|
382
|
+
draggingRow: MRT_Row<TData> | null;
|
383
|
+
editingCell: MRT_Cell<TData> | null;
|
384
|
+
editingRow: MRT_Row<TData> | null;
|
385
|
+
globalFilterFn: MRT_FilterOption;
|
386
|
+
hoveredColumn: Partial<MRT_Column<TData>> | null;
|
387
|
+
hoveredRow: Partial<MRT_Row<TData>> | null;
|
388
|
+
isFullScreen: boolean;
|
389
|
+
isLoading: boolean;
|
390
|
+
isSaving: boolean;
|
391
|
+
showAlertBanner: boolean;
|
392
|
+
showColumnFilters: boolean;
|
393
|
+
showGlobalFilter: boolean;
|
394
|
+
showLoadingOverlay: boolean;
|
395
|
+
showProgressBars: boolean;
|
396
|
+
showSkeletons: boolean;
|
397
|
+
showToolbarDropZone: boolean;
|
398
|
+
}
|
399
|
+
|
400
|
+
export interface MRT_ColumnDef<TData extends MRT_RowData, TValue = unknown>
|
401
|
+
extends Omit<
|
402
|
+
ColumnDef<TData, TValue>,
|
403
|
+
| 'accessorKey'
|
404
|
+
| 'aggregatedCell'
|
405
|
+
| 'aggregationFn'
|
406
|
+
| 'cell'
|
407
|
+
| 'columns'
|
408
|
+
| 'filterFn'
|
409
|
+
| 'footer'
|
410
|
+
| 'header'
|
411
|
+
| 'id'
|
412
|
+
| 'sortingFn'
|
413
|
+
> {
|
414
|
+
/**
|
415
|
+
* Either an `accessorKey` or a combination of an `accessorFn` and `id` are required for a data column definition.
|
416
|
+
* Specify a function here to point to the correct property in the data object.
|
417
|
+
*
|
418
|
+
* @example accessorFn: (row) => row.username
|
419
|
+
*/
|
420
|
+
accessorFn?: (originalRow: TData) => TValue;
|
421
|
+
/**
|
422
|
+
* Either an `accessorKey` or a combination of an `accessorFn` and `id` are required for a data column definition.
|
423
|
+
* Specify which key in the row this column should use to access the correct data.
|
424
|
+
* Also supports Deep Key Dot Notation.
|
425
|
+
*
|
426
|
+
* @example accessorKey: 'username' //simple
|
427
|
+
* @example accessorKey: 'name.firstName' //deep key dot notation
|
428
|
+
*/
|
429
|
+
accessorKey?: DeepKeys<TData> | (string & {});
|
430
|
+
AggregatedCell?: (props: {
|
431
|
+
cell: MRT_Cell<TData, TValue>;
|
432
|
+
column: MRT_Column<TData, TValue>;
|
433
|
+
row: MRT_Row<TData>;
|
434
|
+
table: MRT_TableInstance<TData>;
|
435
|
+
staticColumnIndex?: number;
|
436
|
+
staticRowIndex?: number;
|
437
|
+
}) => ReactNode;
|
438
|
+
aggregationFn?: Array<MRT_AggregationFn<TData>> | MRT_AggregationFn<TData>;
|
439
|
+
Cell?: (props: {
|
440
|
+
cell: MRT_Cell<TData, TValue>;
|
441
|
+
column: MRT_Column<TData, TValue>;
|
442
|
+
renderedCellValue: ReactNode;
|
443
|
+
row: MRT_Row<TData>;
|
444
|
+
rowRef?: RefObject<HTMLTableRowElement | null>;
|
445
|
+
staticColumnIndex?: number;
|
446
|
+
staticRowIndex?: number;
|
447
|
+
table: MRT_TableInstance<TData>;
|
448
|
+
}) => ReactNode;
|
449
|
+
/**
|
450
|
+
* Specify what type of column this is. Either `data`, `display`, or `group`. Defaults to `data`.
|
451
|
+
* Leave this blank if you are just creating a normal data column.
|
452
|
+
*
|
453
|
+
* @default 'data'
|
454
|
+
*
|
455
|
+
* @example columnDefType: 'display'
|
456
|
+
*/
|
457
|
+
columnDefType?: 'data' | 'display' | 'group';
|
458
|
+
columnFilterModeOptions?: Array<
|
459
|
+
LiteralUnion<string & MRT_FilterOption>
|
460
|
+
> | null;
|
461
|
+
columns?: MRT_ColumnDef<TData, TValue>[];
|
462
|
+
Edit?: (props: {
|
463
|
+
cell: MRT_Cell<TData, TValue>;
|
464
|
+
column: MRT_Column<TData, TValue>;
|
465
|
+
row: MRT_Row<TData>;
|
466
|
+
table: MRT_TableInstance<TData>;
|
467
|
+
}) => ReactNode;
|
468
|
+
editSelectOptions?:
|
469
|
+
| ((props: {
|
470
|
+
cell: MRT_Cell<TData, TValue>;
|
471
|
+
column: MRT_Column<TData>;
|
472
|
+
row: MRT_Row<TData>;
|
473
|
+
table: MRT_TableInstance<TData>;
|
474
|
+
}) => DropdownOption[])
|
475
|
+
| DropdownOption[];
|
476
|
+
editVariant?: 'select' | 'text';
|
477
|
+
enableClickToCopy?:
|
478
|
+
| 'context-menu'
|
479
|
+
| ((cell: MRT_Cell<TData>) => 'context-menu' | boolean)
|
480
|
+
| boolean;
|
481
|
+
enableColumnActions?: boolean;
|
482
|
+
enableColumnDragging?: boolean;
|
483
|
+
enableColumnFilterModes?: boolean;
|
484
|
+
enableColumnOrdering?: boolean;
|
485
|
+
enableEditing?: ((row: MRT_Row<TData>) => boolean) | boolean;
|
486
|
+
enableFilterMatchHighlighting?: boolean;
|
487
|
+
Filter?: (props: {
|
488
|
+
column: MRT_Column<TData, TValue>;
|
489
|
+
header: MRT_Header<TData>;
|
490
|
+
rangeFilterIndex?: number;
|
491
|
+
table: MRT_TableInstance<TData>;
|
492
|
+
}) => ReactNode;
|
493
|
+
filterFn?: MRT_FilterFn<TData>;
|
494
|
+
filterSelectOptions?: DropdownOption[];
|
495
|
+
filterVariant?:
|
496
|
+
| 'autocomplete'
|
497
|
+
| 'checkbox'
|
498
|
+
| 'date'
|
499
|
+
| 'date-range'
|
500
|
+
| 'datetime'
|
501
|
+
| 'datetime-range'
|
502
|
+
| 'multi-select'
|
503
|
+
| 'range'
|
504
|
+
| 'range-slider'
|
505
|
+
| 'select'
|
506
|
+
| 'text'
|
507
|
+
| 'time'
|
508
|
+
| 'time-range';
|
509
|
+
/**
|
510
|
+
* footer must be a string. If you want custom JSX to render the footer, you can also specify a `Footer` option. (Capital F)
|
511
|
+
*/
|
512
|
+
footer?: string;
|
513
|
+
Footer?:
|
514
|
+
| ((props: {
|
515
|
+
column: MRT_Column<TData, TValue>;
|
516
|
+
footer: MRT_Header<TData>;
|
517
|
+
table: MRT_TableInstance<TData>;
|
518
|
+
}) => ReactNode)
|
519
|
+
| ReactNode;
|
520
|
+
GroupedCell?: (props: {
|
521
|
+
cell: MRT_Cell<TData, TValue>;
|
522
|
+
column: MRT_Column<TData, TValue>;
|
523
|
+
row: MRT_Row<TData>;
|
524
|
+
table: MRT_TableInstance<TData>;
|
525
|
+
staticColumnIndex?: number;
|
526
|
+
staticRowIndex?: number;
|
527
|
+
}) => ReactNode;
|
528
|
+
/**
|
529
|
+
* If `layoutMode` is `'grid'` or `'grid-no-grow'`, you can specify the flex grow value for individual columns to still grow and take up remaining space, or set to `false`/0 to not grow.
|
530
|
+
*/
|
531
|
+
grow?: boolean | number;
|
532
|
+
/**
|
533
|
+
* header must be a string. If you want custom JSX to render the header, you can also specify a `Header` option. (Capital H)
|
534
|
+
*/
|
535
|
+
header: string;
|
536
|
+
Header?:
|
537
|
+
| ((props: {
|
538
|
+
column: MRT_Column<TData, TValue>;
|
539
|
+
header: MRT_Header<TData>;
|
540
|
+
table: MRT_TableInstance<TData>;
|
541
|
+
}) => ReactNode)
|
542
|
+
| ReactNode;
|
543
|
+
/**
|
544
|
+
* Either an `accessorKey` or a combination of an `accessorFn` and `id` are required for a data column definition.
|
545
|
+
*
|
546
|
+
* If you have also specified an `accessorFn`, MRT still needs to have a valid `id` to be able to identify the column uniquely.
|
547
|
+
*
|
548
|
+
* `id` defaults to the `accessorKey` or `header` if not specified.
|
549
|
+
*
|
550
|
+
* @default gets set to the same value as `accessorKey` by default
|
551
|
+
*/
|
552
|
+
id?: LiteralUnion<string & keyof TData>;
|
553
|
+
muiColumnActionsButtonProps?:
|
554
|
+
| ((props: {
|
555
|
+
column: MRT_Column<TData>;
|
556
|
+
table: MRT_TableInstance<TData>;
|
557
|
+
}) => IconButtonProps)
|
558
|
+
| IconButtonProps;
|
559
|
+
muiColumnDragHandleProps?:
|
560
|
+
| ((props: {
|
561
|
+
column: MRT_Column<TData>;
|
562
|
+
table: MRT_TableInstance<TData>;
|
563
|
+
}) => IconButtonProps)
|
564
|
+
| IconButtonProps;
|
565
|
+
muiCopyButtonProps?:
|
566
|
+
| ((props: {
|
567
|
+
cell: MRT_Cell<TData, TValue>;
|
568
|
+
column: MRT_Column<TData>;
|
569
|
+
row: MRT_Row<TData>;
|
570
|
+
table: MRT_TableInstance<TData>;
|
571
|
+
}) => ButtonProps)
|
572
|
+
| ButtonProps;
|
573
|
+
muiEditTextFieldProps?:
|
574
|
+
| ((props: {
|
575
|
+
cell: MRT_Cell<TData, TValue>;
|
576
|
+
column: MRT_Column<TData>;
|
577
|
+
row: MRT_Row<TData>;
|
578
|
+
table: MRT_TableInstance<TData>;
|
579
|
+
}) => TextFieldProps)
|
580
|
+
| TextFieldProps;
|
581
|
+
muiFilterAutocompleteProps?:
|
582
|
+
| ((props: {
|
583
|
+
column: MRT_Column<TData>;
|
584
|
+
table: MRT_TableInstance<TData>;
|
585
|
+
}) => AutocompleteProps<any, any, any, any>)
|
586
|
+
| AutocompleteProps<any, any, any, any>;
|
587
|
+
muiFilterCheckboxProps?:
|
588
|
+
| ((props: {
|
589
|
+
column: MRT_Column<TData>;
|
590
|
+
table: MRT_TableInstance<TData>;
|
591
|
+
}) => CheckboxProps)
|
592
|
+
| CheckboxProps;
|
593
|
+
muiFilterDatePickerProps?:
|
594
|
+
| ((props: {
|
595
|
+
column: MRT_Column<TData>;
|
596
|
+
rangeFilterIndex?: number;
|
597
|
+
table: MRT_TableInstance<TData>;
|
598
|
+
}) => DatePickerProps<never>)
|
599
|
+
| DatePickerProps<never>;
|
600
|
+
muiFilterDateTimePickerProps?:
|
601
|
+
| ((props: {
|
602
|
+
column: MRT_Column<TData>;
|
603
|
+
rangeFilterIndex?: number;
|
604
|
+
table: MRT_TableInstance<TData>;
|
605
|
+
}) => DateTimePickerProps<never>)
|
606
|
+
| DateTimePickerProps<never>;
|
607
|
+
muiFilterSliderProps?:
|
608
|
+
| ((props: {
|
609
|
+
column: MRT_Column<TData>;
|
610
|
+
table: MRT_TableInstance<TData>;
|
611
|
+
}) => SliderProps)
|
612
|
+
| SliderProps;
|
613
|
+
muiFilterTextFieldProps?:
|
614
|
+
| ((props: {
|
615
|
+
column: MRT_Column<TData>;
|
616
|
+
rangeFilterIndex?: number;
|
617
|
+
table: MRT_TableInstance<TData>;
|
618
|
+
}) => TextFieldProps)
|
619
|
+
| TextFieldProps;
|
620
|
+
muiFilterTimePickerProps?:
|
621
|
+
| ((props: {
|
622
|
+
column: MRT_Column<TData>;
|
623
|
+
rangeFilterIndex?: number;
|
624
|
+
table: MRT_TableInstance<TData>;
|
625
|
+
}) => TimePickerProps<never>)
|
626
|
+
| TimePickerProps<never>;
|
627
|
+
muiTableBodyCellProps?:
|
628
|
+
| ((props: {
|
629
|
+
cell: MRT_Cell<TData, TValue>;
|
630
|
+
column: MRT_Column<TData>;
|
631
|
+
row: MRT_Row<TData>;
|
632
|
+
table: MRT_TableInstance<TData>;
|
633
|
+
}) => TableCellProps)
|
634
|
+
| TableCellProps;
|
635
|
+
muiTableFooterCellProps?:
|
636
|
+
| ((props: {
|
637
|
+
column: MRT_Column<TData>;
|
638
|
+
table: MRT_TableInstance<TData>;
|
639
|
+
}) => TableCellProps)
|
640
|
+
| TableCellProps;
|
641
|
+
muiTableHeadCellProps?:
|
642
|
+
| ((props: {
|
643
|
+
column: MRT_Column<TData>;
|
644
|
+
table: MRT_TableInstance<TData>;
|
645
|
+
}) => TableCellProps)
|
646
|
+
| TableCellProps;
|
647
|
+
PlaceholderCell?: (props: {
|
648
|
+
cell: MRT_Cell<TData, TValue>;
|
649
|
+
column: MRT_Column<TData, TValue>;
|
650
|
+
row: MRT_Row<TData>;
|
651
|
+
table: MRT_TableInstance<TData>;
|
652
|
+
}) => ReactNode;
|
653
|
+
renderCellActionMenuItems?: (props: {
|
654
|
+
cell: MRT_Cell<TData>;
|
655
|
+
closeMenu: () => void;
|
656
|
+
column: MRT_Column<TData>;
|
657
|
+
internalMenuItems: ReactNode[];
|
658
|
+
row: MRT_Row<TData>;
|
659
|
+
staticColumnIndex?: number;
|
660
|
+
staticRowIndex?: number;
|
661
|
+
table: MRT_TableInstance<TData>;
|
662
|
+
}) => ReactNode[];
|
663
|
+
renderColumnActionsMenuItems?: (props: {
|
664
|
+
closeMenu: () => void;
|
665
|
+
column: MRT_Column<TData>;
|
666
|
+
internalColumnMenuItems: ReactNode[];
|
667
|
+
table: MRT_TableInstance<TData>;
|
668
|
+
}) => ReactNode[];
|
669
|
+
renderColumnFilterModeMenuItems?: (props: {
|
670
|
+
column: MRT_Column<TData>;
|
671
|
+
internalFilterOptions: MRT_InternalFilterOption[];
|
672
|
+
onSelectFilterMode: (filterMode: MRT_FilterOption) => void;
|
673
|
+
table: MRT_TableInstance<TData>;
|
674
|
+
}) => ReactNode[];
|
675
|
+
sortingFn?: MRT_SortingFn<TData>;
|
676
|
+
visibleInShowHideMenu?: boolean;
|
677
|
+
}
|
678
|
+
|
679
|
+
export type MRT_DisplayColumnDef<
|
680
|
+
TData extends MRT_RowData,
|
681
|
+
TValue = unknown,
|
682
|
+
> = Omit<MRT_ColumnDef<TData, TValue>, 'accessorFn' | 'accessorKey'>;
|
683
|
+
|
684
|
+
export type MRT_GroupColumnDef<TData extends MRT_RowData> =
|
685
|
+
MRT_DisplayColumnDef<TData, any> & {
|
686
|
+
columns: MRT_ColumnDef<TData>[];
|
687
|
+
};
|
688
|
+
|
689
|
+
export type MRT_DefinedColumnDef<
|
690
|
+
TData extends MRT_RowData,
|
691
|
+
TValue = unknown,
|
692
|
+
> = Omit<MRT_ColumnDef<TData, TValue>, 'defaultDisplayColumn' | 'id'> & {
|
693
|
+
_filterFn: MRT_FilterOption;
|
694
|
+
defaultDisplayColumn: Partial<MRT_ColumnDef<TData, TValue>>;
|
695
|
+
id: string;
|
696
|
+
};
|
697
|
+
|
698
|
+
export type MRT_Column<TData extends MRT_RowData, TValue = unknown> = Omit<
|
699
|
+
Column<TData, TValue>,
|
700
|
+
'columnDef' | 'columns' | 'filterFn' | 'footer' | 'header'
|
701
|
+
> & {
|
702
|
+
columnDef: MRT_DefinedColumnDef<TData, TValue>;
|
703
|
+
columns?: MRT_Column<TData, TValue>[];
|
704
|
+
filterFn?: MRT_FilterFn<TData>;
|
705
|
+
footer: string;
|
706
|
+
header: string;
|
707
|
+
};
|
708
|
+
|
709
|
+
export type MRT_Header<TData extends MRT_RowData> = Omit<
|
710
|
+
Header<TData, unknown>,
|
711
|
+
'column'
|
712
|
+
> & {
|
713
|
+
column: MRT_Column<TData>;
|
714
|
+
};
|
715
|
+
|
716
|
+
export type MRT_HeaderGroup<TData extends MRT_RowData> = Omit<
|
717
|
+
HeaderGroup<TData>,
|
718
|
+
'headers'
|
719
|
+
> & {
|
720
|
+
headers: MRT_Header<TData>[];
|
721
|
+
};
|
722
|
+
|
723
|
+
export type MRT_Row<TData extends MRT_RowData> = Omit<
|
724
|
+
Row<TData>,
|
725
|
+
| '_valuesCache'
|
726
|
+
| 'getAllCells'
|
727
|
+
| 'getParentRow'
|
728
|
+
| 'getParentRows'
|
729
|
+
| 'getRow'
|
730
|
+
| 'getVisibleCells'
|
731
|
+
| 'subRows'
|
732
|
+
> & {
|
733
|
+
_valuesCache: Record<LiteralUnion<string & DeepKeys<TData>>, any>;
|
734
|
+
getAllCells: () => MRT_Cell<TData>[];
|
735
|
+
getParentRow: () => MRT_Row<TData> | null;
|
736
|
+
getParentRows: () => MRT_Row<TData>[];
|
737
|
+
getRow: () => MRT_Row<TData>;
|
738
|
+
getVisibleCells: () => MRT_Cell<TData>[];
|
739
|
+
subRows?: MRT_Row<TData>[];
|
740
|
+
};
|
741
|
+
|
742
|
+
export type MRT_Cell<TData extends MRT_RowData, TValue = unknown> = Omit<
|
743
|
+
Cell<TData, TValue>,
|
744
|
+
'column' | 'row'
|
745
|
+
> & {
|
746
|
+
column: MRT_Column<TData, TValue>;
|
747
|
+
row: MRT_Row<TData>;
|
748
|
+
};
|
749
|
+
|
750
|
+
export type MRT_AggregationOption = string & keyof typeof MRT_AggregationFns;
|
751
|
+
|
752
|
+
export type MRT_AggregationFn<TData extends MRT_RowData> =
|
753
|
+
| AggregationFn<TData>
|
754
|
+
| MRT_AggregationOption;
|
755
|
+
|
756
|
+
export type MRT_SortingOption = LiteralUnion<
|
757
|
+
string & keyof typeof MRT_SortingFns
|
758
|
+
>;
|
759
|
+
|
760
|
+
export type MRT_SortingFn<TData extends MRT_RowData> =
|
761
|
+
| MRT_SortingOption
|
762
|
+
| SortingFn<TData>;
|
763
|
+
|
764
|
+
export type MRT_FilterOption = LiteralUnion<
|
765
|
+
string & keyof typeof MRT_FilterFns
|
766
|
+
>;
|
767
|
+
|
768
|
+
export type MRT_FilterFn<TData extends MRT_RowData> =
|
769
|
+
| FilterFn<TData>
|
770
|
+
| MRT_FilterOption;
|
771
|
+
|
772
|
+
export type MRT_InternalFilterOption = {
|
773
|
+
divider: boolean;
|
774
|
+
label: string;
|
775
|
+
option: string;
|
776
|
+
symbol: string;
|
777
|
+
};
|
778
|
+
|
779
|
+
export type MRT_DisplayColumnIds =
|
780
|
+
| 'mrt-row-actions'
|
781
|
+
| 'mrt-row-drag'
|
782
|
+
| 'mrt-row-expand'
|
783
|
+
| 'mrt-row-numbers'
|
784
|
+
| 'mrt-row-pin'
|
785
|
+
| 'mrt-row-select'
|
786
|
+
| 'mrt-row-spacer';
|
787
|
+
|
788
|
+
/**
|
789
|
+
* `columns` and `data` props are the only required props, but there are over 170 other optional props.
|
790
|
+
*
|
791
|
+
* See more info on creating columns and data on the official docs site:
|
792
|
+
* @link https://www.material-react-table.com/docs/getting-started/usage
|
793
|
+
*
|
794
|
+
* See the full props list on the official docs site:
|
795
|
+
* @link https://www.material-react-table.com/docs/api/props
|
796
|
+
*/
|
797
|
+
export interface MRT_TableOptions<TData extends MRT_RowData>
|
798
|
+
extends Omit<
|
799
|
+
Partial<TableOptions<TData>>,
|
800
|
+
| 'columns'
|
801
|
+
| 'data'
|
802
|
+
| 'defaultColumn'
|
803
|
+
| 'enableRowSelection'
|
804
|
+
| 'expandRowsFn'
|
805
|
+
| 'getRowId'
|
806
|
+
| 'globalFilterFn'
|
807
|
+
| 'initialState'
|
808
|
+
| 'onStateChange'
|
809
|
+
| 'state'
|
810
|
+
> {
|
811
|
+
columnFilterDisplayMode?: 'custom' | 'popover' | 'subheader';
|
812
|
+
columnFilterModeOptions?: Array<
|
813
|
+
LiteralUnion<string & MRT_FilterOption>
|
814
|
+
> | null;
|
815
|
+
/**
|
816
|
+
* The columns to display in the table. `accessorKey`s or `accessorFn`s must match keys in the `data` table option.
|
817
|
+
*
|
818
|
+
* See more info on creating columns on the official docs site:
|
819
|
+
* @link https://www.material-react-table.com/docs/guides/data-columns
|
820
|
+
* @link https://www.material-react-table.com/docs/guides/display-columns
|
821
|
+
*
|
822
|
+
* See all Columns Options on the official docs site:
|
823
|
+
* @link https://www.material-react-table.com/docs/api/column-options
|
824
|
+
*/
|
825
|
+
columns: MRT_ColumnDef<TData, any>[];
|
826
|
+
columnVirtualizerInstanceRef?: RefObject<MRT_ColumnVirtualizer | null>;
|
827
|
+
columnVirtualizerOptions?:
|
828
|
+
| ((props: {
|
829
|
+
table: MRT_TableInstance<TData>;
|
830
|
+
}) => Partial<VirtualizerOptions<HTMLDivElement, HTMLTableCellElement>>)
|
831
|
+
| Partial<VirtualizerOptions<HTMLDivElement, HTMLTableCellElement>>;
|
832
|
+
createDisplayMode?: 'custom' | 'modal' | 'row';
|
833
|
+
/**
|
834
|
+
* Pass your data as an array of objects. Objects can theoretically be any shape, but it's best to keep them consistent.
|
835
|
+
*
|
836
|
+
* See the usage guide for more info on creating columns and data:
|
837
|
+
* @link https://www.material-react-table.com/docs/getting-started/usage
|
838
|
+
*/
|
839
|
+
data: TData[];
|
840
|
+
/**
|
841
|
+
* Instead of specifying a bunch of the same options for each column, you can just change an option in the `defaultColumn` table option to change a default option for all columns.
|
842
|
+
*/
|
843
|
+
defaultColumn?: Partial<MRT_ColumnDef<TData>>;
|
844
|
+
/**
|
845
|
+
* Change the default options for display columns.
|
846
|
+
*/
|
847
|
+
defaultDisplayColumn?: Partial<MRT_DisplayColumnDef<TData>>;
|
848
|
+
displayColumnDefOptions?: Partial<{
|
849
|
+
[key in MRT_DisplayColumnIds]: Partial<MRT_DisplayColumnDef<TData>>;
|
850
|
+
}>;
|
851
|
+
editDisplayMode?: 'cell' | 'custom' | 'modal' | 'row' | 'table';
|
852
|
+
enableBatchRowSelection?: boolean;
|
853
|
+
enableBottomToolbar?: boolean;
|
854
|
+
enableCellActions?: ((cell: MRT_Cell<TData>) => boolean) | boolean;
|
855
|
+
enableClickToCopy?:
|
856
|
+
| 'context-menu'
|
857
|
+
| ((cell: MRT_Cell<TData>) => 'context-menu' | boolean)
|
858
|
+
| boolean;
|
859
|
+
enableColumnActions?: boolean;
|
860
|
+
enableColumnDragging?: boolean;
|
861
|
+
enableColumnFilterModes?: boolean;
|
862
|
+
enableColumnOrdering?: boolean;
|
863
|
+
enableColumnVirtualization?: boolean;
|
864
|
+
enableDensityToggle?: boolean;
|
865
|
+
enableEditing?: ((row: MRT_Row<TData>) => boolean) | boolean;
|
866
|
+
enableExpandAll?: boolean;
|
867
|
+
enableFacetedValues?: boolean;
|
868
|
+
enableFilterMatchHighlighting?: boolean;
|
869
|
+
enableFullScreenToggle?: boolean;
|
870
|
+
enableGlobalFilterModes?: boolean;
|
871
|
+
enableGlobalFilterRankedResults?: boolean;
|
872
|
+
enableKeyboardShortcuts?: boolean;
|
873
|
+
enablePagination?: boolean;
|
874
|
+
enableRowActions?: boolean;
|
875
|
+
enableRowDragging?: boolean;
|
876
|
+
enableRowNumbers?: boolean;
|
877
|
+
enableRowOrdering?: boolean;
|
878
|
+
enableRowSelection?: ((row: MRT_Row<TData>) => boolean) | boolean;
|
879
|
+
enableRowVirtualization?: boolean;
|
880
|
+
enableSelectAll?: boolean;
|
881
|
+
enableStickyFooter?: boolean;
|
882
|
+
enableStickyHeader?: boolean;
|
883
|
+
enableTableFooter?: boolean;
|
884
|
+
enableTableHead?: boolean;
|
885
|
+
enableToolbarInternalActions?: boolean;
|
886
|
+
enableTopToolbar?: boolean;
|
887
|
+
expandRowsFn?: (dataRow: TData) => TData[];
|
888
|
+
getRowId?: (
|
889
|
+
originalRow: TData,
|
890
|
+
index: number,
|
891
|
+
parentRow: MRT_Row<TData>,
|
892
|
+
) => string;
|
893
|
+
globalFilterFn?: MRT_FilterOption;
|
894
|
+
globalFilterModeOptions?: MRT_FilterOption[] | null;
|
895
|
+
icons?: Partial<MRT_Icons>;
|
896
|
+
id?: string;
|
897
|
+
initialState?: Partial<MRT_TableState<TData>>;
|
898
|
+
/**
|
899
|
+
* Changes which kind of CSS layout is used to render the table. `semantic` uses default semantic HTML elements, while `grid` adds CSS grid and flexbox styles
|
900
|
+
*/
|
901
|
+
layoutMode?: 'grid' | 'grid-no-grow' | 'semantic';
|
902
|
+
/**
|
903
|
+
* Pass in either a locale imported from `material-react-table/locales/*` or a custom locale object.
|
904
|
+
*
|
905
|
+
* See the localization (i18n) guide for more info:
|
906
|
+
* @link https://www.material-react-table.com/docs/guides/localization
|
907
|
+
*/
|
908
|
+
localization?: Partial<MRT_Localization>;
|
909
|
+
/**
|
910
|
+
* Memoize cells, rows, or the entire table body to potentially improve render performance.
|
911
|
+
*
|
912
|
+
* @warning This will break some dynamic rendering features. See the memoization guide for more info:
|
913
|
+
* @link https://www.material-react-table.com/docs/guides/memoize-components
|
914
|
+
*/
|
915
|
+
memoMode?: 'cells' | 'rows' | 'table-body';
|
916
|
+
mrtTheme?: ((theme: Theme) => Partial<MRT_Theme>) | Partial<MRT_Theme>;
|
917
|
+
muiBottomToolbarProps?:
|
918
|
+
| ((props: { table: MRT_TableInstance<TData> }) => BoxProps)
|
919
|
+
| BoxProps;
|
920
|
+
muiCircularProgressProps?:
|
921
|
+
| ((props: {
|
922
|
+
table: MRT_TableInstance<TData>;
|
923
|
+
}) => CircularProgressProps & { Component?: ReactNode })
|
924
|
+
| (CircularProgressProps & { Component?: ReactNode });
|
925
|
+
/**
|
926
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
927
|
+
*/
|
928
|
+
muiColumnActionsButtonProps?:
|
929
|
+
| ((props: {
|
930
|
+
column: MRT_Column<TData>;
|
931
|
+
table: MRT_TableInstance<TData>;
|
932
|
+
}) => IconButtonProps)
|
933
|
+
| IconButtonProps;
|
934
|
+
/**
|
935
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
936
|
+
*/
|
937
|
+
muiColumnDragHandleProps?:
|
938
|
+
| ((props: {
|
939
|
+
column: MRT_Column<TData>;
|
940
|
+
table: MRT_TableInstance<TData>;
|
941
|
+
}) => IconButtonProps)
|
942
|
+
| IconButtonProps;
|
943
|
+
/**
|
944
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
945
|
+
*/
|
946
|
+
muiCopyButtonProps?:
|
947
|
+
| ((props: {
|
948
|
+
cell: MRT_Cell<TData>;
|
949
|
+
column: MRT_Column<TData>;
|
950
|
+
row: MRT_Row<TData>;
|
951
|
+
table: MRT_TableInstance<TData>;
|
952
|
+
}) => ButtonProps)
|
953
|
+
| ButtonProps;
|
954
|
+
muiCreateRowModalProps?:
|
955
|
+
| ((props: {
|
956
|
+
row: MRT_Row<TData>;
|
957
|
+
table: MRT_TableInstance<TData>;
|
958
|
+
}) => DialogProps)
|
959
|
+
| DialogProps;
|
960
|
+
muiDetailPanelProps?:
|
961
|
+
| ((props: {
|
962
|
+
row: MRT_Row<TData>;
|
963
|
+
table: MRT_TableInstance<TData>;
|
964
|
+
}) => TableCellProps)
|
965
|
+
| TableCellProps;
|
966
|
+
muiEditRowDialogProps?:
|
967
|
+
| ((props: {
|
968
|
+
row: MRT_Row<TData>;
|
969
|
+
table: MRT_TableInstance<TData>;
|
970
|
+
}) => DialogProps)
|
971
|
+
| DialogProps;
|
972
|
+
/**
|
973
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
974
|
+
*/
|
975
|
+
muiEditTextFieldProps?:
|
976
|
+
| ((props: {
|
977
|
+
cell: MRT_Cell<TData>;
|
978
|
+
column: MRT_Column<TData>;
|
979
|
+
row: MRT_Row<TData>;
|
980
|
+
table: MRT_TableInstance<TData>;
|
981
|
+
}) => TextFieldProps)
|
982
|
+
| TextFieldProps;
|
983
|
+
muiExpandAllButtonProps?:
|
984
|
+
| ((props: { table: MRT_TableInstance<TData> }) => IconButtonProps)
|
985
|
+
| IconButtonProps;
|
986
|
+
muiExpandButtonProps?:
|
987
|
+
| ((props: {
|
988
|
+
row: MRT_Row<TData>;
|
989
|
+
staticRowIndex?: number;
|
990
|
+
table: MRT_TableInstance<TData>;
|
991
|
+
}) => IconButtonProps)
|
992
|
+
| IconButtonProps;
|
993
|
+
/**
|
994
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
995
|
+
*/
|
996
|
+
muiFilterAutocompleteProps?:
|
997
|
+
| ((props: {
|
998
|
+
column: MRT_Column<TData>;
|
999
|
+
table: MRT_TableInstance<TData>;
|
1000
|
+
}) => AutocompleteProps<any, any, any, any>)
|
1001
|
+
| AutocompleteProps<any, any, any, any>;
|
1002
|
+
/**
|
1003
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1004
|
+
*/
|
1005
|
+
muiFilterCheckboxProps?:
|
1006
|
+
| ((props: {
|
1007
|
+
column: MRT_Column<TData>;
|
1008
|
+
table: MRT_TableInstance<TData>;
|
1009
|
+
}) => CheckboxProps)
|
1010
|
+
| CheckboxProps;
|
1011
|
+
/**
|
1012
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1013
|
+
*/
|
1014
|
+
muiFilterDatePickerProps?:
|
1015
|
+
| ((props: {
|
1016
|
+
column: MRT_Column<TData>;
|
1017
|
+
rangeFilterIndex?: number;
|
1018
|
+
table: MRT_TableInstance<TData>;
|
1019
|
+
}) => DatePickerProps<never>)
|
1020
|
+
| DatePickerProps<never>;
|
1021
|
+
/**
|
1022
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1023
|
+
*/
|
1024
|
+
muiFilterDateTimePickerProps?:
|
1025
|
+
| ((props: {
|
1026
|
+
column: MRT_Column<TData>;
|
1027
|
+
rangeFilterIndex?: number;
|
1028
|
+
table: MRT_TableInstance<TData>;
|
1029
|
+
}) => DateTimePickerProps<never>)
|
1030
|
+
| DateTimePickerProps<never>;
|
1031
|
+
/**
|
1032
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1033
|
+
*/
|
1034
|
+
muiFilterSliderProps?:
|
1035
|
+
| ((props: {
|
1036
|
+
column: MRT_Column<TData>;
|
1037
|
+
table: MRT_TableInstance<TData>;
|
1038
|
+
}) => SliderProps)
|
1039
|
+
| SliderProps;
|
1040
|
+
/**
|
1041
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1042
|
+
*/
|
1043
|
+
muiFilterTextFieldProps?:
|
1044
|
+
| ((props: {
|
1045
|
+
column: MRT_Column<TData>;
|
1046
|
+
rangeFilterIndex?: number;
|
1047
|
+
table: MRT_TableInstance<TData>;
|
1048
|
+
}) => TextFieldProps)
|
1049
|
+
| TextFieldProps;
|
1050
|
+
/**
|
1051
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1052
|
+
*/
|
1053
|
+
muiFilterTimePickerProps?:
|
1054
|
+
| ((props: {
|
1055
|
+
column: MRT_Column<TData>;
|
1056
|
+
rangeFilterIndex?: number;
|
1057
|
+
table: MRT_TableInstance<TData>;
|
1058
|
+
}) => TimePickerProps<never>)
|
1059
|
+
| TimePickerProps<never>;
|
1060
|
+
muiLinearProgressProps?:
|
1061
|
+
| ((props: {
|
1062
|
+
isTopToolbar: boolean;
|
1063
|
+
table: MRT_TableInstance<TData>;
|
1064
|
+
}) => LinearProgressProps)
|
1065
|
+
| LinearProgressProps;
|
1066
|
+
muiPaginationProps?:
|
1067
|
+
| ((props: { table: MRT_TableInstance<TData> }) => Partial<
|
1068
|
+
PaginationProps & {
|
1069
|
+
SelectProps?: Partial<SelectProps>;
|
1070
|
+
disabled?: boolean;
|
1071
|
+
rowsPerPageOptions?: { label: string; value: number }[] | number[];
|
1072
|
+
showRowsPerPage?: boolean;
|
1073
|
+
}
|
1074
|
+
>)
|
1075
|
+
| Partial<
|
1076
|
+
PaginationProps & {
|
1077
|
+
SelectProps?: Partial<SelectProps>;
|
1078
|
+
disabled?: boolean;
|
1079
|
+
rowsPerPageOptions?: { label: string; value: number }[] | number[];
|
1080
|
+
showRowsPerPage?: boolean;
|
1081
|
+
}
|
1082
|
+
>;
|
1083
|
+
muiRowDragHandleProps?:
|
1084
|
+
| ((props: {
|
1085
|
+
row: MRT_Row<TData>;
|
1086
|
+
table: MRT_TableInstance<TData>;
|
1087
|
+
}) => IconButtonProps)
|
1088
|
+
| IconButtonProps;
|
1089
|
+
muiSearchTextFieldProps?:
|
1090
|
+
| ((props: { table: MRT_TableInstance<TData> }) => TextFieldProps)
|
1091
|
+
| TextFieldProps;
|
1092
|
+
muiSelectAllCheckboxProps?:
|
1093
|
+
| ((props: { table: MRT_TableInstance<TData> }) => CheckboxProps)
|
1094
|
+
| CheckboxProps;
|
1095
|
+
muiSelectCheckboxProps?:
|
1096
|
+
| ((props: {
|
1097
|
+
row: MRT_Row<TData>;
|
1098
|
+
staticRowIndex?: number;
|
1099
|
+
table: MRT_TableInstance<TData>;
|
1100
|
+
}) => CheckboxProps | RadioProps)
|
1101
|
+
| (CheckboxProps | RadioProps);
|
1102
|
+
muiSkeletonProps?:
|
1103
|
+
| ((props: {
|
1104
|
+
cell: MRT_Cell<TData>;
|
1105
|
+
column: MRT_Column<TData>;
|
1106
|
+
row: MRT_Row<TData>;
|
1107
|
+
table: MRT_TableInstance<TData>;
|
1108
|
+
}) => SkeletonProps)
|
1109
|
+
| SkeletonProps;
|
1110
|
+
/**
|
1111
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1112
|
+
*/
|
1113
|
+
muiTableBodyCellProps?:
|
1114
|
+
| ((props: {
|
1115
|
+
cell: MRT_Cell<TData>;
|
1116
|
+
column: MRT_Column<TData>;
|
1117
|
+
row: MRT_Row<TData>;
|
1118
|
+
table: MRT_TableInstance<TData>;
|
1119
|
+
}) => TableCellProps)
|
1120
|
+
| TableCellProps;
|
1121
|
+
muiTableBodyProps?:
|
1122
|
+
| ((props: { table: MRT_TableInstance<TData> }) => TableBodyProps)
|
1123
|
+
| TableBodyProps;
|
1124
|
+
muiTableBodyRowProps?:
|
1125
|
+
| ((props: {
|
1126
|
+
isDetailPanel?: boolean;
|
1127
|
+
row: MRT_Row<TData>;
|
1128
|
+
staticRowIndex: number;
|
1129
|
+
table: MRT_TableInstance<TData>;
|
1130
|
+
}) => TableRowProps)
|
1131
|
+
| TableRowProps;
|
1132
|
+
muiTableContainerProps?:
|
1133
|
+
| ((props: { table: MRT_TableInstance<TData> }) => TableContainerProps)
|
1134
|
+
| TableContainerProps;
|
1135
|
+
/**
|
1136
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1137
|
+
*/
|
1138
|
+
muiTableFooterCellProps?:
|
1139
|
+
| ((props: {
|
1140
|
+
column: MRT_Column<TData>;
|
1141
|
+
table: MRT_TableInstance<TData>;
|
1142
|
+
}) => TableCellProps)
|
1143
|
+
| TableCellProps;
|
1144
|
+
muiTableFooterProps?:
|
1145
|
+
| ((props: { table: MRT_TableInstance<TData> }) => TableFooterProps)
|
1146
|
+
| TableFooterProps;
|
1147
|
+
muiTableFooterRowProps?:
|
1148
|
+
| ((props: {
|
1149
|
+
footerGroup: MRT_HeaderGroup<TData>;
|
1150
|
+
table: MRT_TableInstance<TData>;
|
1151
|
+
}) => TableRowProps)
|
1152
|
+
| TableRowProps;
|
1153
|
+
/**
|
1154
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1155
|
+
*/
|
1156
|
+
muiTableHeadCellProps?:
|
1157
|
+
| ((props: {
|
1158
|
+
column: MRT_Column<TData>;
|
1159
|
+
table: MRT_TableInstance<TData>;
|
1160
|
+
}) => TableCellProps)
|
1161
|
+
| TableCellProps;
|
1162
|
+
muiTableHeadProps?:
|
1163
|
+
| ((props: { table: MRT_TableInstance<TData> }) => TableHeadProps)
|
1164
|
+
| TableHeadProps;
|
1165
|
+
muiTableHeadRowProps?:
|
1166
|
+
| ((props: {
|
1167
|
+
headerGroup: MRT_HeaderGroup<TData>;
|
1168
|
+
table: MRT_TableInstance<TData>;
|
1169
|
+
}) => TableRowProps)
|
1170
|
+
| TableRowProps;
|
1171
|
+
muiTablePaperProps?:
|
1172
|
+
| ((props: { table: MRT_TableInstance<TData> }) => PaperProps)
|
1173
|
+
| PaperProps;
|
1174
|
+
muiTableProps?:
|
1175
|
+
| ((props: { table: MRT_TableInstance<TData> }) => TableProps)
|
1176
|
+
| TableProps;
|
1177
|
+
muiToolbarAlertBannerChipProps?:
|
1178
|
+
| ((props: { table: MRT_TableInstance<TData> }) => ChipProps)
|
1179
|
+
| ChipProps;
|
1180
|
+
muiToolbarAlertBannerProps?:
|
1181
|
+
| ((props: { table: MRT_TableInstance<TData> }) => AlertProps)
|
1182
|
+
| AlertProps;
|
1183
|
+
muiTopToolbarProps?:
|
1184
|
+
| ((props: { table: MRT_TableInstance<TData> }) => BoxProps)
|
1185
|
+
| BoxProps;
|
1186
|
+
onActionCellChange?: OnChangeFn<MRT_Cell<TData> | null>;
|
1187
|
+
onColumnFilterFnsChange?: OnChangeFn<{ [key: string]: MRT_FilterOption }>;
|
1188
|
+
onCreatingRowCancel?: (props: {
|
1189
|
+
row: MRT_Row<TData>;
|
1190
|
+
table: MRT_TableInstance<TData>;
|
1191
|
+
}) => void;
|
1192
|
+
onCreatingRowChange?: OnChangeFn<MRT_Row<TData> | null>;
|
1193
|
+
onCreatingRowSave?: (props: {
|
1194
|
+
exitCreatingMode: () => void;
|
1195
|
+
row: MRT_Row<TData>;
|
1196
|
+
table: MRT_TableInstance<TData>;
|
1197
|
+
values: Record<LiteralUnion<string & DeepKeys<TData>>, any>;
|
1198
|
+
}) => Promise<void> | void;
|
1199
|
+
onDensityChange?: OnChangeFn<MRT_DensityState>;
|
1200
|
+
onDraggingColumnChange?: OnChangeFn<MRT_Column<TData> | null>;
|
1201
|
+
onDraggingRowChange?: OnChangeFn<MRT_Row<TData> | null>;
|
1202
|
+
onEditingCellChange?: OnChangeFn<MRT_Cell<TData> | null>;
|
1203
|
+
onEditingRowCancel?: (props: {
|
1204
|
+
row: MRT_Row<TData>;
|
1205
|
+
table: MRT_TableInstance<TData>;
|
1206
|
+
}) => void;
|
1207
|
+
onEditingRowChange?: OnChangeFn<MRT_Row<TData> | null>;
|
1208
|
+
onEditingRowSave?: (props: {
|
1209
|
+
exitEditingMode: () => void;
|
1210
|
+
row: MRT_Row<TData>;
|
1211
|
+
table: MRT_TableInstance<TData>;
|
1212
|
+
values: Record<LiteralUnion<string & DeepKeys<TData>>, any>;
|
1213
|
+
}) => Promise<void> | void;
|
1214
|
+
onGlobalFilterFnChange?: OnChangeFn<MRT_FilterOption>;
|
1215
|
+
onHoveredColumnChange?: OnChangeFn<Partial<MRT_Column<TData>> | null>;
|
1216
|
+
onHoveredRowChange?: OnChangeFn<Partial<MRT_Row<TData>> | null>;
|
1217
|
+
onIsFullScreenChange?: OnChangeFn<boolean>;
|
1218
|
+
onShowAlertBannerChange?: OnChangeFn<boolean>;
|
1219
|
+
onShowColumnFiltersChange?: OnChangeFn<boolean>;
|
1220
|
+
onShowGlobalFilterChange?: OnChangeFn<boolean>;
|
1221
|
+
onShowToolbarDropZoneChange?: OnChangeFn<boolean>;
|
1222
|
+
paginationDisplayMode?: 'custom' | 'default' | 'pages';
|
1223
|
+
positionActionsColumn?: 'first' | 'last';
|
1224
|
+
positionCreatingRow?: 'bottom' | 'top' | number;
|
1225
|
+
positionExpandColumn?: 'first' | 'last';
|
1226
|
+
positionGlobalFilter?: 'left' | 'none' | 'right';
|
1227
|
+
positionPagination?: 'both' | 'bottom' | 'none' | 'top';
|
1228
|
+
positionToolbarAlertBanner?: 'bottom' | 'head-overlay' | 'none' | 'top';
|
1229
|
+
positionToolbarDropZone?: 'both' | 'bottom' | 'none' | 'top';
|
1230
|
+
renderBottomToolbar?:
|
1231
|
+
| ((props: { table: MRT_TableInstance<TData> }) => ReactNode)
|
1232
|
+
| ReactNode;
|
1233
|
+
renderBottomToolbarCustomActions?: (props: {
|
1234
|
+
table: MRT_TableInstance<TData>;
|
1235
|
+
}) => ReactNode;
|
1236
|
+
renderCaption?:
|
1237
|
+
| ((props: { table: MRT_TableInstance<TData> }) => ReactNode)
|
1238
|
+
| ReactNode;
|
1239
|
+
/**
|
1240
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1241
|
+
*/
|
1242
|
+
renderCellActionMenuItems?: (props: {
|
1243
|
+
cell: MRT_Cell<TData>;
|
1244
|
+
closeMenu: () => void;
|
1245
|
+
column: MRT_Column<TData>;
|
1246
|
+
internalMenuItems: ReactNode[];
|
1247
|
+
row: MRT_Row<TData>;
|
1248
|
+
staticColumnIndex?: number;
|
1249
|
+
staticRowIndex?: number;
|
1250
|
+
table: MRT_TableInstance<TData>;
|
1251
|
+
}) => ReactNode[];
|
1252
|
+
/**
|
1253
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1254
|
+
*/
|
1255
|
+
renderColumnActionsMenuItems?: (props: {
|
1256
|
+
closeMenu: () => void;
|
1257
|
+
column: MRT_Column<TData>;
|
1258
|
+
internalColumnMenuItems: ReactNode[];
|
1259
|
+
table: MRT_TableInstance<TData>;
|
1260
|
+
}) => ReactNode[];
|
1261
|
+
/**
|
1262
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1263
|
+
*/
|
1264
|
+
renderColumnFilterModeMenuItems?: (props: {
|
1265
|
+
column: MRT_Column<TData>;
|
1266
|
+
internalFilterOptions: MRT_InternalFilterOption[];
|
1267
|
+
onSelectFilterMode: (filterMode: MRT_FilterOption) => void;
|
1268
|
+
table: MRT_TableInstance<TData>;
|
1269
|
+
}) => ReactNode[];
|
1270
|
+
renderCreateRowDialogContent?: (props: {
|
1271
|
+
internalEditComponents: ReactNode[];
|
1272
|
+
row: MRT_Row<TData>;
|
1273
|
+
table: MRT_TableInstance<TData>;
|
1274
|
+
}) => ReactNode;
|
1275
|
+
renderDetailPanel?: (props: {
|
1276
|
+
row: MRT_Row<TData>;
|
1277
|
+
table: MRT_TableInstance<TData>;
|
1278
|
+
}) => ReactNode;
|
1279
|
+
renderEditRowDialogContent?: (props: {
|
1280
|
+
internalEditComponents: ReactNode[];
|
1281
|
+
row: MRT_Row<TData>;
|
1282
|
+
table: MRT_TableInstance<TData>;
|
1283
|
+
}) => ReactNode;
|
1284
|
+
renderEmptyRowsFallback?: (props: {
|
1285
|
+
table: MRT_TableInstance<TData>;
|
1286
|
+
}) => ReactNode;
|
1287
|
+
renderGlobalFilterModeMenuItems?: (props: {
|
1288
|
+
internalFilterOptions: MRT_InternalFilterOption[];
|
1289
|
+
onSelectFilterMode: (filterMode: MRT_FilterOption) => void;
|
1290
|
+
table: MRT_TableInstance<TData>;
|
1291
|
+
}) => ReactNode[];
|
1292
|
+
renderRowActionMenuItems?: (props: {
|
1293
|
+
closeMenu: () => void;
|
1294
|
+
row: MRT_Row<TData>;
|
1295
|
+
staticRowIndex?: number;
|
1296
|
+
table: MRT_TableInstance<TData>;
|
1297
|
+
}) => ReactNode[] | undefined;
|
1298
|
+
renderRowActions?: (props: {
|
1299
|
+
cell: MRT_Cell<TData>;
|
1300
|
+
row: MRT_Row<TData>;
|
1301
|
+
staticRowIndex?: number;
|
1302
|
+
table: MRT_TableInstance<TData>;
|
1303
|
+
}) => ReactNode;
|
1304
|
+
renderToolbarAlertBannerContent?: (props: {
|
1305
|
+
groupedAlert: ReactNode | null;
|
1306
|
+
selectedAlert: ReactNode | null;
|
1307
|
+
table: MRT_TableInstance<TData>;
|
1308
|
+
}) => ReactNode;
|
1309
|
+
renderToolbarInternalActions?: (props: {
|
1310
|
+
table: MRT_TableInstance<TData>;
|
1311
|
+
}) => ReactNode;
|
1312
|
+
renderTopToolbar?:
|
1313
|
+
| ((props: { table: MRT_TableInstance<TData> }) => ReactNode)
|
1314
|
+
| ReactNode;
|
1315
|
+
renderTopToolbarCustomActions?: (props: {
|
1316
|
+
table: MRT_TableInstance<TData>;
|
1317
|
+
}) => ReactNode;
|
1318
|
+
rowNumberDisplayMode?: 'original' | 'static';
|
1319
|
+
rowPinningDisplayMode?:
|
1320
|
+
| 'bottom'
|
1321
|
+
| 'select-bottom'
|
1322
|
+
| 'select-sticky'
|
1323
|
+
| 'select-top'
|
1324
|
+
| 'sticky'
|
1325
|
+
| 'top'
|
1326
|
+
| 'top-and-bottom';
|
1327
|
+
rowVirtualizerInstanceRef?: RefObject<MRT_RowVirtualizer | null>;
|
1328
|
+
rowVirtualizerOptions?:
|
1329
|
+
| ((props: {
|
1330
|
+
table: MRT_TableInstance<TData>;
|
1331
|
+
}) => Partial<VirtualizerOptions<HTMLDivElement, HTMLTableRowElement>>)
|
1332
|
+
| Partial<VirtualizerOptions<HTMLDivElement, HTMLTableRowElement>>;
|
1333
|
+
selectAllMode?: 'all' | 'page';
|
1334
|
+
/**
|
1335
|
+
* Manage state externally any way you want, then pass it back into MRT.
|
1336
|
+
*/
|
1337
|
+
state?: Partial<MRT_TableState<TData>>;
|
1338
|
+
}
|