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,2177 @@
|
|
1
|
+
import { type MRT_TableOptions } from 'material-react-table';
|
2
|
+
|
3
|
+
export type TableOption = {
|
4
|
+
defaultValue?: string;
|
5
|
+
description?: string;
|
6
|
+
link?: string;
|
7
|
+
linkText?: string;
|
8
|
+
tableOption: keyof MRT_TableOptions<TableOption>;
|
9
|
+
required?: boolean;
|
10
|
+
source?: 'MRT' | 'TanStack Table' | 'TanStack Virtual' | 'Material UI' | '';
|
11
|
+
type?: string;
|
12
|
+
};
|
13
|
+
|
14
|
+
export const tableOptions: TableOption[] = [
|
15
|
+
{
|
16
|
+
tableOption: '_features',
|
17
|
+
defaultValue: '',
|
18
|
+
description: `An array of extra features that you can add to the table instance.`,
|
19
|
+
link: 'https://tanstack.com/table/latest/docs/guide/custom-features',
|
20
|
+
linkText: 'TanStack Table Custom Features Docs',
|
21
|
+
required: false,
|
22
|
+
source: 'TanStack Table',
|
23
|
+
type: 'Array<TableFeature>',
|
24
|
+
},
|
25
|
+
{
|
26
|
+
tableOption: 'aggregationFns',
|
27
|
+
defaultValue: '',
|
28
|
+
description: `This option allows you to define custom aggregation functions that can be referenced in a column's aggregationFn option by their key`,
|
29
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/grouping#aggregationfns',
|
30
|
+
linkText: 'TanStack Table Grouping Docs',
|
31
|
+
required: false,
|
32
|
+
source: 'TanStack Table',
|
33
|
+
type: 'Record<string, AggregationFn>',
|
34
|
+
},
|
35
|
+
{
|
36
|
+
tableOption: 'autoResetAll',
|
37
|
+
defaultValue: '',
|
38
|
+
description:
|
39
|
+
'Set this option to override any of the autoReset... feature options.',
|
40
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#autoresetall',
|
41
|
+
linkText: 'TanStack Table Core Table Docs',
|
42
|
+
required: false,
|
43
|
+
source: 'TanStack Table',
|
44
|
+
type: 'boolean',
|
45
|
+
},
|
46
|
+
{
|
47
|
+
tableOption: 'autoResetExpanded',
|
48
|
+
defaultValue: '',
|
49
|
+
description:
|
50
|
+
'Enable this setting to automatically reset the expanded state of the table when grouping state changes.',
|
51
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/expanding#autoresetexpanded',
|
52
|
+
linkText: 'TanStack Table Expanding Docs',
|
53
|
+
required: false,
|
54
|
+
source: 'TanStack Table',
|
55
|
+
type: 'boolean',
|
56
|
+
},
|
57
|
+
{
|
58
|
+
tableOption: 'autoResetPageIndex',
|
59
|
+
defaultValue: '',
|
60
|
+
description:
|
61
|
+
'If set to true, pagination will be reset to the first page when page-altering state changes eg. data is updated, filters change, grouping changes, etc.',
|
62
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/pagination#autoresetpagination',
|
63
|
+
linkText: 'TanStack Table Pagination Docs',
|
64
|
+
required: false,
|
65
|
+
source: 'TanStack Table',
|
66
|
+
type: 'boolean',
|
67
|
+
},
|
68
|
+
{
|
69
|
+
tableOption: 'columnFilterModeOptions',
|
70
|
+
defaultValue: '',
|
71
|
+
description:
|
72
|
+
'Specify which filter modes are available for every column. Optionally specify this per column as a column option.',
|
73
|
+
link: '/docs/guides/column-filtering#customize-filter-modes',
|
74
|
+
linkText: 'MRT Column Filtering Docs',
|
75
|
+
required: false,
|
76
|
+
source: 'MRT',
|
77
|
+
type: 'Array<MRT_FilterOption | string> | null',
|
78
|
+
},
|
79
|
+
{
|
80
|
+
tableOption: 'columnResizeDirection',
|
81
|
+
defaultValue: "muiTheme.direction || 'ltr'",
|
82
|
+
description:
|
83
|
+
'Determines the direction of column resizing. ltr = left to right, rtl = right to left.',
|
84
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/column-sizing#columnresizedirection',
|
85
|
+
linkText: 'MRT Column Resizing Docs',
|
86
|
+
required: false,
|
87
|
+
source: 'TanStack Table',
|
88
|
+
type: "'ltr' | 'rtl'",
|
89
|
+
},
|
90
|
+
{
|
91
|
+
tableOption: 'columnResizeMode',
|
92
|
+
defaultValue: "'onChange'",
|
93
|
+
description:
|
94
|
+
'Determines when the columnSizing state is updated. onChange updates the state when the user is dragging the resize handle. onEnd updates the state when the user releases the resize handle.',
|
95
|
+
link: '/docs/guides/column-resizing#column-resize-mode',
|
96
|
+
linkText: 'MRT Column Resizing Docs',
|
97
|
+
required: false,
|
98
|
+
source: 'MRT',
|
99
|
+
type: "'onEnd' | 'onChange'",
|
100
|
+
},
|
101
|
+
{
|
102
|
+
tableOption: 'columns',
|
103
|
+
defaultValue: '',
|
104
|
+
description: 'The array of column defs to use for the table.',
|
105
|
+
link: '/docs/api/column-options',
|
106
|
+
linkText: 'MRT Column Options API Reference',
|
107
|
+
required: true,
|
108
|
+
source: 'MRT',
|
109
|
+
type: 'Array<MRT_ColumnDef<TData>>',
|
110
|
+
},
|
111
|
+
{
|
112
|
+
tableOption: 'columnVirtualizerOptions',
|
113
|
+
defaultValue: '',
|
114
|
+
description: '',
|
115
|
+
link: '',
|
116
|
+
linkText: '',
|
117
|
+
required: false,
|
118
|
+
source: 'MRT',
|
119
|
+
type: 'Partial<VirtualizerOptions<HTMLDivElement, HTMLTableCellElement>>',
|
120
|
+
},
|
121
|
+
{
|
122
|
+
tableOption: 'columnVirtualizerInstanceRef',
|
123
|
+
defaultValue: '',
|
124
|
+
description: '',
|
125
|
+
link: '',
|
126
|
+
linkText: '',
|
127
|
+
required: false,
|
128
|
+
source: 'MRT',
|
129
|
+
type: 'MutableRefObject<Virtualizer | null>',
|
130
|
+
},
|
131
|
+
{
|
132
|
+
tableOption: 'data',
|
133
|
+
defaultValue: '',
|
134
|
+
description: `The data for the table to display. This can be an array of anything, but you will need to set up your column definitions to "access" the data. When the data option changes reference (compared via Object.is), the table will reprocess the data. Any other data processing that relies on the core data model (such as grouping, sorting, filtering, etc) will also be reprocessed.`,
|
135
|
+
link: '/docs/getting-started/usage#creating-data-rows',
|
136
|
+
linkText: 'Usage Docs',
|
137
|
+
required: true,
|
138
|
+
source: 'MRT',
|
139
|
+
type: 'Array<TData>',
|
140
|
+
},
|
141
|
+
{
|
142
|
+
tableOption: 'debugAll',
|
143
|
+
defaultValue: 'false',
|
144
|
+
description:
|
145
|
+
'Set this option to true to output all debugging information to the console.',
|
146
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#debugall',
|
147
|
+
linkText: 'TanStack Table Core Table Docs',
|
148
|
+
required: false,
|
149
|
+
source: 'TanStack Table',
|
150
|
+
type: 'boolean',
|
151
|
+
},
|
152
|
+
{
|
153
|
+
tableOption: 'debugColumns',
|
154
|
+
defaultValue: 'false',
|
155
|
+
description:
|
156
|
+
'Set this option to true to output column debugging information to the console.',
|
157
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#debugcolumns',
|
158
|
+
linkText: 'TanStack Table Core Table Docs',
|
159
|
+
required: false,
|
160
|
+
source: 'TanStack Table',
|
161
|
+
type: 'boolean',
|
162
|
+
},
|
163
|
+
{
|
164
|
+
tableOption: 'debugHeaders',
|
165
|
+
defaultValue: 'false',
|
166
|
+
description:
|
167
|
+
'Set this option to true to output header debugging information to the console.',
|
168
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#debugheaders',
|
169
|
+
linkText: 'TanStack Table Core Table Docs',
|
170
|
+
required: false,
|
171
|
+
source: 'TanStack Table',
|
172
|
+
type: 'boolean',
|
173
|
+
},
|
174
|
+
{
|
175
|
+
tableOption: 'debugRows',
|
176
|
+
defaultValue: 'false',
|
177
|
+
description:
|
178
|
+
'Set this option to true to output row debugging information to the console.',
|
179
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#debugrows',
|
180
|
+
linkText: 'TanStack Table Core Table Docs',
|
181
|
+
required: false,
|
182
|
+
source: 'TanStack Table',
|
183
|
+
type: 'boolean',
|
184
|
+
},
|
185
|
+
{
|
186
|
+
tableOption: 'debugTable',
|
187
|
+
defaultValue: 'false',
|
188
|
+
description:
|
189
|
+
'Set this option to true to output table debugging information to the console.',
|
190
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#debugcolumns',
|
191
|
+
linkText: 'TanStack Table Core Table Docs',
|
192
|
+
required: false,
|
193
|
+
source: 'TanStack Table',
|
194
|
+
type: 'boolean',
|
195
|
+
},
|
196
|
+
{
|
197
|
+
tableOption: 'defaultColumn',
|
198
|
+
defaultValue: '',
|
199
|
+
description:
|
200
|
+
'Default column options to use for all column defs supplied to the table. This is useful for providing default cell/header/footer renderers, sorting/filtering/grouping options, etc.',
|
201
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#defaultcolumn',
|
202
|
+
linkText: 'TanStack Table Core Table Docs',
|
203
|
+
required: false,
|
204
|
+
source: 'TanStack Table',
|
205
|
+
type: 'Partial<MRT_ColumnDef<TData>>',
|
206
|
+
},
|
207
|
+
{
|
208
|
+
tableOption: 'defaultDisplayColumn',
|
209
|
+
defaultValue: '',
|
210
|
+
description:
|
211
|
+
'Default column options to use for all display column defs supplied to the table. This is useful for providing default cell/header/footer renderers, or turning on or off certain features for all display columns.',
|
212
|
+
link: '/docs/guides/display-columns',
|
213
|
+
linkText: 'MRT Display Columns Docs',
|
214
|
+
required: false,
|
215
|
+
source: 'MRT',
|
216
|
+
type: 'Partial<MRT_DisplayColumnDef<TData>>',
|
217
|
+
},
|
218
|
+
{
|
219
|
+
tableOption: 'displayColumnDefOptions',
|
220
|
+
defaultValue: '',
|
221
|
+
description:
|
222
|
+
'Customize and override the column definition options for the built-in display columns. (Select, Expand, Row Actions, etc.)',
|
223
|
+
link: '/docs/guides/display-columns#display-column-definition-options-prop',
|
224
|
+
linkText: 'MRT Display Columns Docs',
|
225
|
+
required: false,
|
226
|
+
source: 'MRT',
|
227
|
+
type: '{ [key: string]: MRT_DisplayColumnDef<TData> }',
|
228
|
+
},
|
229
|
+
{
|
230
|
+
tableOption: 'editDisplayMode',
|
231
|
+
defaultValue: "'modal'",
|
232
|
+
description:
|
233
|
+
'You can choose between 5 different built-in editing modes. Edit a row in a modal, or a row inline, just 1 cell at a time, or always have all cells editable.',
|
234
|
+
link: '/docs/guides/editing#editing-modes',
|
235
|
+
linkText: 'MRT Editing Docs',
|
236
|
+
required: false,
|
237
|
+
source: 'MRT',
|
238
|
+
type: "'modal' | 'cell' | 'row' | 'table' | 'custom",
|
239
|
+
},
|
240
|
+
{
|
241
|
+
tableOption: 'enableBottomToolbar',
|
242
|
+
defaultValue: 'true',
|
243
|
+
description: '',
|
244
|
+
link: '/docs/guides/customize-toolbars#hide-disable-toolbars',
|
245
|
+
linkText: 'MRT Customize Toolbars Docs',
|
246
|
+
required: false,
|
247
|
+
source: 'MRT',
|
248
|
+
type: 'boolean',
|
249
|
+
},
|
250
|
+
{
|
251
|
+
tableOption: 'enableClickToCopy',
|
252
|
+
defaultValue: 'false',
|
253
|
+
description: '',
|
254
|
+
link: '/docs/guides/click-to-copy',
|
255
|
+
linkText: 'MRT Click to Copy Docs',
|
256
|
+
required: false,
|
257
|
+
source: 'MRT',
|
258
|
+
type: "boolean | 'context-menu' | ((cell: MRT_Cell<TData>) => 'context-menu' | boolean)",
|
259
|
+
},
|
260
|
+
{
|
261
|
+
tableOption: 'enableColumnActions',
|
262
|
+
defaultValue: 'true',
|
263
|
+
description: '',
|
264
|
+
link: '/docs/guides/column-actions',
|
265
|
+
linkText: 'MRT Column Actions Docs',
|
266
|
+
required: false,
|
267
|
+
source: 'MRT',
|
268
|
+
type: 'boolean',
|
269
|
+
},
|
270
|
+
{
|
271
|
+
tableOption: 'enableColumnDragging',
|
272
|
+
defaultValue: 'false',
|
273
|
+
description: '',
|
274
|
+
link: '/docs/guides/column-ordering-dnd',
|
275
|
+
linkText: 'MRT Column Ordering DnD Docs',
|
276
|
+
required: false,
|
277
|
+
source: 'MRT',
|
278
|
+
type: 'boolean',
|
279
|
+
},
|
280
|
+
{
|
281
|
+
tableOption: 'enableColumnFilterModes',
|
282
|
+
defaultValue: 'false',
|
283
|
+
description: '',
|
284
|
+
link: '/docs/guides/column-filtering#filter-modes',
|
285
|
+
linkText: 'MRT Column Filtering Docs',
|
286
|
+
required: false,
|
287
|
+
source: 'MRT',
|
288
|
+
type: 'boolean',
|
289
|
+
},
|
290
|
+
{
|
291
|
+
tableOption: 'enableColumnFilters',
|
292
|
+
defaultValue: 'true',
|
293
|
+
description: '',
|
294
|
+
link: '/docs/guides/column-filtering#disable-filtering-features',
|
295
|
+
linkText: 'MRT Column Filtering Docs',
|
296
|
+
required: false,
|
297
|
+
source: 'MRT',
|
298
|
+
type: 'boolean',
|
299
|
+
},
|
300
|
+
{
|
301
|
+
tableOption: 'enableColumnOrdering',
|
302
|
+
defaultValue: '',
|
303
|
+
description: '',
|
304
|
+
link: '/docs/guides/column-ordering-dnd',
|
305
|
+
linkText: 'MRT Column Ordering DnD Docs',
|
306
|
+
required: false,
|
307
|
+
source: 'MRT',
|
308
|
+
type: 'boolean',
|
309
|
+
},
|
310
|
+
{
|
311
|
+
tableOption: 'enableColumnVirtualization',
|
312
|
+
defaultValue: '',
|
313
|
+
description:
|
314
|
+
'Enables column virtualization and creates an MRT_ColumnVirtualizer instance internally. This option CANNOT be enabled conditionally. Other side effects include layoutMode will be set either to "grid" or "grid-no-grow"',
|
315
|
+
link: '/docs/guides/virtualization#enable-column-virtualization',
|
316
|
+
linkText: 'MRT Virtualization Docs',
|
317
|
+
required: false,
|
318
|
+
source: 'MRT',
|
319
|
+
type: 'boolean',
|
320
|
+
},
|
321
|
+
{
|
322
|
+
tableOption: 'enableColumnResizing',
|
323
|
+
defaultValue: '',
|
324
|
+
description: '',
|
325
|
+
link: '/docs/guides/column-resizing',
|
326
|
+
linkText: 'MRT Column Resizing Docs',
|
327
|
+
required: false,
|
328
|
+
source: 'MRT',
|
329
|
+
type: 'boolean',
|
330
|
+
},
|
331
|
+
{
|
332
|
+
tableOption: 'enableDensityToggle',
|
333
|
+
defaultValue: 'true',
|
334
|
+
description: '',
|
335
|
+
link: '/docs/guides/density-toggle',
|
336
|
+
linkText: 'MRT Density Toggle Docs',
|
337
|
+
required: false,
|
338
|
+
source: 'MRT',
|
339
|
+
type: 'boolean',
|
340
|
+
},
|
341
|
+
{
|
342
|
+
tableOption: 'enableEditing',
|
343
|
+
defaultValue: '',
|
344
|
+
description: '',
|
345
|
+
link: '/docs/guides/editing',
|
346
|
+
linkText: 'MRT Editing Docs',
|
347
|
+
required: false,
|
348
|
+
source: 'MRT',
|
349
|
+
type: 'boolean | (row: MRT_Row) => boolean',
|
350
|
+
},
|
351
|
+
{
|
352
|
+
tableOption: 'enableExpandAll',
|
353
|
+
defaultValue: 'true',
|
354
|
+
description: '',
|
355
|
+
link: '/docs/guides/expanding-sub-rows',
|
356
|
+
linkText: 'MRT Expanding Sub Rows Docs',
|
357
|
+
required: false,
|
358
|
+
source: 'MRT',
|
359
|
+
type: 'boolean',
|
360
|
+
},
|
361
|
+
{
|
362
|
+
tableOption: 'enableExpanding',
|
363
|
+
defaultValue: '',
|
364
|
+
description: '',
|
365
|
+
link: '/docs/guides/expanding-sub-rows',
|
366
|
+
linkText: 'MRT Expanding Sub Rows Docs',
|
367
|
+
required: false,
|
368
|
+
source: 'MRT',
|
369
|
+
type: 'boolean',
|
370
|
+
},
|
371
|
+
{
|
372
|
+
tableOption: 'enableFacetedValues',
|
373
|
+
defaultValue: 'true',
|
374
|
+
description:
|
375
|
+
'Enable or disable the calculation of faceted values. Facet values are a list of all unique values in a column. These are useful for advanced filtering components with selection, autocomplete, etc.',
|
376
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#enablefilters',
|
377
|
+
linkText: 'TanStack Filters Docs',
|
378
|
+
required: false,
|
379
|
+
source: 'TanStack Table',
|
380
|
+
type: 'boolean',
|
381
|
+
},
|
382
|
+
{
|
383
|
+
tableOption: 'enableFilterMatchHighlighting',
|
384
|
+
defaultValue: 'true',
|
385
|
+
description:
|
386
|
+
'Enable or disable highlighting text that matches the filter in the table cells.',
|
387
|
+
link: '/docs/guides/column-filtering#filter-match-highlighting',
|
388
|
+
linkText: 'MRT Column Filtering Docs',
|
389
|
+
required: false,
|
390
|
+
source: 'MRT',
|
391
|
+
type: 'boolean',
|
392
|
+
},
|
393
|
+
{
|
394
|
+
tableOption: 'enableFilters',
|
395
|
+
defaultValue: 'true',
|
396
|
+
description: 'Enable or disable both the global and column filters.',
|
397
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#enablefilters',
|
398
|
+
linkText: 'TanStack Filters Docs',
|
399
|
+
required: false,
|
400
|
+
source: 'TanStack Table',
|
401
|
+
type: 'boolean',
|
402
|
+
},
|
403
|
+
{
|
404
|
+
tableOption: 'enableFullScreenToggle',
|
405
|
+
defaultValue: 'true',
|
406
|
+
description:
|
407
|
+
'Enable or disable the full screen toggle feature. Disabling will also hide the full screen toggle button.',
|
408
|
+
link: '/docs/guides/full-screen-toggle',
|
409
|
+
linkText: 'MRT Full Screen Toggle Docs',
|
410
|
+
required: false,
|
411
|
+
source: 'MRT',
|
412
|
+
type: 'boolean',
|
413
|
+
},
|
414
|
+
{
|
415
|
+
tableOption: 'enableGlobalFilter',
|
416
|
+
defaultValue: 'true',
|
417
|
+
description: '',
|
418
|
+
link: '/docs/guides/global-filtering#disable-global-filter-feature',
|
419
|
+
linkText: 'MRT Global Filtering Docs',
|
420
|
+
required: false,
|
421
|
+
source: 'MRT',
|
422
|
+
type: 'boolean',
|
423
|
+
},
|
424
|
+
{
|
425
|
+
tableOption: 'enableGlobalFilterModes',
|
426
|
+
defaultValue: 'true',
|
427
|
+
description: '',
|
428
|
+
link: '/docs/guides/global-filtering#global-filter-modes',
|
429
|
+
linkText: 'MRT Global Filtering Docs',
|
430
|
+
required: false,
|
431
|
+
source: 'MRT',
|
432
|
+
type: 'boolean',
|
433
|
+
},
|
434
|
+
{
|
435
|
+
tableOption: 'enableGlobalFilterRankedResults',
|
436
|
+
defaultValue: 'true',
|
437
|
+
description: '',
|
438
|
+
link: '/docs/guides/global-filtering#ranked-results',
|
439
|
+
linkText: 'MRT Global Filtering Docs',
|
440
|
+
required: false,
|
441
|
+
source: 'MRT',
|
442
|
+
type: 'boolean',
|
443
|
+
},
|
444
|
+
{
|
445
|
+
tableOption: 'enableGrouping',
|
446
|
+
defaultValue: '',
|
447
|
+
description: '',
|
448
|
+
link: '/docs/guides/aggregation-and-grouping#enable-grouping',
|
449
|
+
linkText: 'MRT Aggregation and Grouping Docs',
|
450
|
+
required: false,
|
451
|
+
source: 'MRT',
|
452
|
+
type: 'boolean',
|
453
|
+
},
|
454
|
+
{
|
455
|
+
tableOption: 'enableHiding',
|
456
|
+
defaultValue: 'true',
|
457
|
+
description: '',
|
458
|
+
link: '/docs/guides/column-hiding',
|
459
|
+
linkText: 'MRT Column Hiding Docs',
|
460
|
+
required: false,
|
461
|
+
source: 'MRT',
|
462
|
+
type: 'boolean',
|
463
|
+
},
|
464
|
+
{
|
465
|
+
tableOption: 'enableMultiRemove',
|
466
|
+
defaultValue: '',
|
467
|
+
description: '',
|
468
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/sorting#enablemultiremove',
|
469
|
+
linkText: 'TanStack Sorting Docs',
|
470
|
+
required: false,
|
471
|
+
source: 'TanStack Table',
|
472
|
+
type: 'boolean',
|
473
|
+
},
|
474
|
+
{
|
475
|
+
tableOption: 'enableMultiRowSelection',
|
476
|
+
defaultValue: 'true',
|
477
|
+
description:
|
478
|
+
'If true, the user can select multiple rows at once with a checkbox. If false, the user can only select one row at a time with a radio button.',
|
479
|
+
link: '/docs/guides/row-selection#single-row-selection',
|
480
|
+
linkText: 'MRT Row Selection Docs',
|
481
|
+
required: false,
|
482
|
+
source: 'MRT',
|
483
|
+
type: 'boolean',
|
484
|
+
},
|
485
|
+
{
|
486
|
+
tableOption: 'enableMultiSort',
|
487
|
+
defaultValue: '',
|
488
|
+
description: '',
|
489
|
+
link: '',
|
490
|
+
linkText: '',
|
491
|
+
required: false,
|
492
|
+
source: '',
|
493
|
+
type: 'boolean',
|
494
|
+
},
|
495
|
+
{
|
496
|
+
tableOption: 'enableKeyboardShortcuts',
|
497
|
+
defaultValue: 'true',
|
498
|
+
description: '',
|
499
|
+
link: '',
|
500
|
+
linkText: '',
|
501
|
+
required: false,
|
502
|
+
source: '',
|
503
|
+
type: 'boolean',
|
504
|
+
},
|
505
|
+
{
|
506
|
+
tableOption: 'enablePagination',
|
507
|
+
defaultValue: 'true',
|
508
|
+
description: '',
|
509
|
+
link: '',
|
510
|
+
linkText: '',
|
511
|
+
required: false,
|
512
|
+
source: '',
|
513
|
+
type: 'boolean',
|
514
|
+
},
|
515
|
+
{
|
516
|
+
tableOption: 'enableColumnPinning',
|
517
|
+
defaultValue: '',
|
518
|
+
description: '',
|
519
|
+
link: '',
|
520
|
+
linkText: '',
|
521
|
+
required: false,
|
522
|
+
source: '',
|
523
|
+
type: 'boolean',
|
524
|
+
},
|
525
|
+
{
|
526
|
+
tableOption: 'enableCellActions',
|
527
|
+
defaultValue: '',
|
528
|
+
description: '',
|
529
|
+
link: '',
|
530
|
+
linkText: '',
|
531
|
+
required: false,
|
532
|
+
source: '',
|
533
|
+
type: '((cell: MRT_Cell<TData>) => boolean) | boolean',
|
534
|
+
},
|
535
|
+
{
|
536
|
+
tableOption: 'enableRowActions',
|
537
|
+
defaultValue: '',
|
538
|
+
description: '',
|
539
|
+
link: '',
|
540
|
+
linkText: '',
|
541
|
+
required: false,
|
542
|
+
source: '',
|
543
|
+
type: 'boolean',
|
544
|
+
},
|
545
|
+
{
|
546
|
+
tableOption: 'enableRowDragging',
|
547
|
+
defaultValue: '',
|
548
|
+
description: '',
|
549
|
+
link: '',
|
550
|
+
linkText: '',
|
551
|
+
required: false,
|
552
|
+
source: '',
|
553
|
+
type: 'boolean',
|
554
|
+
},
|
555
|
+
{
|
556
|
+
tableOption: 'enableRowNumbers',
|
557
|
+
defaultValue: '',
|
558
|
+
description: '',
|
559
|
+
link: '/docs/guides/row-numbers',
|
560
|
+
linkText: 'Row Numbers Feature Guide',
|
561
|
+
required: false,
|
562
|
+
source: 'MRT',
|
563
|
+
type: 'boolean',
|
564
|
+
},
|
565
|
+
{
|
566
|
+
tableOption: 'enableRowOrdering',
|
567
|
+
defaultValue: '',
|
568
|
+
description: '',
|
569
|
+
link: '',
|
570
|
+
linkText: '',
|
571
|
+
required: false,
|
572
|
+
source: '',
|
573
|
+
type: 'boolean',
|
574
|
+
},
|
575
|
+
{
|
576
|
+
tableOption: 'enableRowPinning',
|
577
|
+
defaultValue: '',
|
578
|
+
description: '',
|
579
|
+
link: '',
|
580
|
+
linkText: '',
|
581
|
+
required: false,
|
582
|
+
source: '',
|
583
|
+
type: 'boolean | (row: MRT_Row) => boolean',
|
584
|
+
},
|
585
|
+
{
|
586
|
+
tableOption: 'keepPinnedRows',
|
587
|
+
defaultValue: 'true',
|
588
|
+
description: '',
|
589
|
+
link: '',
|
590
|
+
linkText: '',
|
591
|
+
required: false,
|
592
|
+
source: '',
|
593
|
+
type: 'boolean',
|
594
|
+
},
|
595
|
+
{
|
596
|
+
tableOption: 'rowPinningDisplayMode',
|
597
|
+
defaultValue: "'sticky'",
|
598
|
+
description: '',
|
599
|
+
link: '',
|
600
|
+
linkText: '',
|
601
|
+
required: false,
|
602
|
+
source: '',
|
603
|
+
type: "'sticky' | 'top' | 'bottom' | 'top-and-bottom' | 'select-sticky' | 'select-top' | 'select-bottom'",
|
604
|
+
},
|
605
|
+
{
|
606
|
+
tableOption: 'enableBatchRowSelection',
|
607
|
+
defaultValue: 'true',
|
608
|
+
description:
|
609
|
+
'If true, the user can select multiple rows at once by holding down the shift key while clicking.',
|
610
|
+
link: '/docs/guides/row-selection#batch-row-selection',
|
611
|
+
linkText: 'MRT Row Selection Docs',
|
612
|
+
required: false,
|
613
|
+
source: 'MRT',
|
614
|
+
type: 'boolean',
|
615
|
+
},
|
616
|
+
{
|
617
|
+
tableOption: 'enableRowSelection',
|
618
|
+
defaultValue: '',
|
619
|
+
description:
|
620
|
+
'Enables row selection either for every row, or on a per-row basis using a function.',
|
621
|
+
link: '/docs/guides/row-selection#enable-row-selection',
|
622
|
+
linkText: 'MRT Row Selection Docs',
|
623
|
+
required: false,
|
624
|
+
source: 'MRT',
|
625
|
+
type: 'boolean | (row: MRT_Row) => boolean',
|
626
|
+
},
|
627
|
+
{
|
628
|
+
tableOption: 'enableRowVirtualization',
|
629
|
+
defaultValue: '',
|
630
|
+
description:
|
631
|
+
'Enables row virtualization and creates an MRT_RowVirtualizer instance internally. This option CANNOT be enabled conditionally. Other side effects include layoutMode will be set either to "grid" or "grid-no-grow"',
|
632
|
+
link: '/docs/guides/virtualization#enable-row-virtualization',
|
633
|
+
linkText: 'MRT Virtualization Docs',
|
634
|
+
required: false,
|
635
|
+
source: 'MRT',
|
636
|
+
type: 'boolean',
|
637
|
+
},
|
638
|
+
{
|
639
|
+
tableOption: 'enableSelectAll',
|
640
|
+
defaultValue: 'true',
|
641
|
+
description: '',
|
642
|
+
link: '',
|
643
|
+
linkText: '',
|
644
|
+
required: false,
|
645
|
+
source: '',
|
646
|
+
type: 'boolean',
|
647
|
+
},
|
648
|
+
{
|
649
|
+
tableOption: 'enableSorting',
|
650
|
+
defaultValue: 'true',
|
651
|
+
description: '',
|
652
|
+
link: '',
|
653
|
+
linkText: '',
|
654
|
+
required: false,
|
655
|
+
source: '',
|
656
|
+
type: 'boolean',
|
657
|
+
},
|
658
|
+
{
|
659
|
+
tableOption: 'enableSortingRemoval',
|
660
|
+
defaultValue: 'true',
|
661
|
+
description: '',
|
662
|
+
link: '',
|
663
|
+
linkText: '',
|
664
|
+
required: false,
|
665
|
+
source: '',
|
666
|
+
type: 'boolean',
|
667
|
+
},
|
668
|
+
{
|
669
|
+
tableOption: 'enableStickyFooter',
|
670
|
+
defaultValue: '',
|
671
|
+
description: '',
|
672
|
+
link: '',
|
673
|
+
linkText: '',
|
674
|
+
required: false,
|
675
|
+
source: '',
|
676
|
+
type: 'boolean',
|
677
|
+
},
|
678
|
+
{
|
679
|
+
tableOption: 'enableStickyHeader',
|
680
|
+
defaultValue: '',
|
681
|
+
description: '',
|
682
|
+
link: '',
|
683
|
+
linkText: '',
|
684
|
+
required: false,
|
685
|
+
source: '',
|
686
|
+
type: 'boolean',
|
687
|
+
},
|
688
|
+
{
|
689
|
+
tableOption: 'enableSubRowSelection',
|
690
|
+
defaultValue: 'true',
|
691
|
+
description: '',
|
692
|
+
link: '',
|
693
|
+
linkText: '',
|
694
|
+
required: false,
|
695
|
+
source: '',
|
696
|
+
type: 'boolean',
|
697
|
+
},
|
698
|
+
{
|
699
|
+
tableOption: 'enableTableFooter',
|
700
|
+
defaultValue: 'true',
|
701
|
+
description: '',
|
702
|
+
link: '',
|
703
|
+
linkText: '',
|
704
|
+
required: false,
|
705
|
+
source: '',
|
706
|
+
type: 'boolean',
|
707
|
+
},
|
708
|
+
{
|
709
|
+
tableOption: 'enableTableHead',
|
710
|
+
defaultValue: 'true',
|
711
|
+
description: '',
|
712
|
+
link: '',
|
713
|
+
linkText: '',
|
714
|
+
required: false,
|
715
|
+
source: '',
|
716
|
+
type: 'boolean',
|
717
|
+
},
|
718
|
+
{
|
719
|
+
tableOption: 'enableToolbarInternalActions',
|
720
|
+
defaultValue: 'true',
|
721
|
+
description: '',
|
722
|
+
link: '',
|
723
|
+
linkText: '',
|
724
|
+
required: false,
|
725
|
+
source: '',
|
726
|
+
type: 'boolean',
|
727
|
+
},
|
728
|
+
{
|
729
|
+
tableOption: 'enableTopToolbar',
|
730
|
+
defaultValue: 'true',
|
731
|
+
description: '',
|
732
|
+
link: '',
|
733
|
+
linkText: '',
|
734
|
+
required: false,
|
735
|
+
source: '',
|
736
|
+
type: 'boolean',
|
737
|
+
},
|
738
|
+
{
|
739
|
+
tableOption: 'globalFilterModeOptions',
|
740
|
+
defaultValue: '',
|
741
|
+
description: '',
|
742
|
+
link: '',
|
743
|
+
linkText: '',
|
744
|
+
required: false,
|
745
|
+
source: '',
|
746
|
+
type: 'Array<MRT_FilterOption | string> | null',
|
747
|
+
},
|
748
|
+
{
|
749
|
+
tableOption: 'expandRowsFn',
|
750
|
+
defaultValue: '',
|
751
|
+
description: '',
|
752
|
+
link: '',
|
753
|
+
linkText: '',
|
754
|
+
required: false,
|
755
|
+
source: '',
|
756
|
+
type: '(dataRow: TData) => TData[]', //?
|
757
|
+
},
|
758
|
+
{
|
759
|
+
tableOption: 'filterFns',
|
760
|
+
defaultValue: '',
|
761
|
+
description: `This option allows you to define custom filter functions that can be referenced in a column's filterFn option by their key`,
|
762
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#filterfns',
|
763
|
+
linkText: 'TanStack Table Filters Docs',
|
764
|
+
required: false,
|
765
|
+
source: 'TanStack Table',
|
766
|
+
type: 'Record<string, FilterFn>',
|
767
|
+
},
|
768
|
+
{
|
769
|
+
tableOption: 'filterFromLeafRows',
|
770
|
+
defaultValue: 'false',
|
771
|
+
description: '',
|
772
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#filterfromleafrows',
|
773
|
+
linkText: 'TanStack Filtering Docs',
|
774
|
+
required: false,
|
775
|
+
source: 'TanStack Table',
|
776
|
+
type: 'boolean',
|
777
|
+
},
|
778
|
+
{
|
779
|
+
tableOption: 'getColumnCanGlobalFilter',
|
780
|
+
defaultValue: '',
|
781
|
+
description: '',
|
782
|
+
link: '',
|
783
|
+
linkText: '',
|
784
|
+
required: false,
|
785
|
+
source: '',
|
786
|
+
type: '(column: Column<TData, unknown>) => boolean',
|
787
|
+
},
|
788
|
+
{
|
789
|
+
tableOption: 'getCoreRowModel',
|
790
|
+
defaultValue: '',
|
791
|
+
description: `Material React Table uses the default core row model function from TanStack Table, but you can override its implementation here. It is called once per table and should return a new function which will calculate and return the row model for the table.`,
|
792
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#getcorerowmodel',
|
793
|
+
linkText: 'TanStack Table Core Table Docs',
|
794
|
+
required: false,
|
795
|
+
source: 'TanStack Table',
|
796
|
+
type: '(table: Table<TData>) => () => RowModel<TData>',
|
797
|
+
},
|
798
|
+
{
|
799
|
+
tableOption: 'getExpandedRowModel',
|
800
|
+
defaultValue: '',
|
801
|
+
description: '',
|
802
|
+
link: '',
|
803
|
+
linkText: '',
|
804
|
+
required: false,
|
805
|
+
source: 'MRT',
|
806
|
+
type: '() => MRT_RowModel<TData>',
|
807
|
+
},
|
808
|
+
{
|
809
|
+
tableOption: 'getFacetedMinMaxValues',
|
810
|
+
defaultValue: '',
|
811
|
+
description:
|
812
|
+
'A function that computes and returns a min/max tuple derived from column.getFacetedRowModel. Useful for displaying faceted result values.',
|
813
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#getfacetedminmaxvalues',
|
814
|
+
linkText: 'TanStack Table Filters Docs',
|
815
|
+
required: false,
|
816
|
+
source: 'TanStack Table',
|
817
|
+
type: '() => Map<any, number>',
|
818
|
+
},
|
819
|
+
{
|
820
|
+
tableOption: 'getFacetedRowModel',
|
821
|
+
defaultValue: '',
|
822
|
+
description:
|
823
|
+
'Returns the row model with all other column filters applied, excluding its own filter. Useful for displaying faceted result counts.',
|
824
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#getfacetedrowmodel',
|
825
|
+
linkText: 'TanStack Table Filters Docs',
|
826
|
+
required: false,
|
827
|
+
source: 'TanStack Table',
|
828
|
+
type: '() => RowModel<TData>',
|
829
|
+
},
|
830
|
+
{
|
831
|
+
tableOption: 'getFacetedUniqueValues',
|
832
|
+
defaultValue: '',
|
833
|
+
description:
|
834
|
+
'A function that computes and returns a Map of unique values and their occurrences derived from column.getFacetedRowModel. Useful for displaying faceted result values.',
|
835
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#getfaceteduniquevalues',
|
836
|
+
linkText: 'TanStack Table Filters Docs',
|
837
|
+
required: false,
|
838
|
+
source: 'TanStack Table',
|
839
|
+
type: '() => Map<any, number>',
|
840
|
+
},
|
841
|
+
{
|
842
|
+
tableOption: 'getFilteredRowModel',
|
843
|
+
defaultValue: '',
|
844
|
+
description:
|
845
|
+
'Returns the row model with all other column filters applied, excluding its own filter. Useful for displaying faceted result counts.',
|
846
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#getfilteredrowmodel',
|
847
|
+
linkText: 'TanStack Table Filters Docs',
|
848
|
+
required: false,
|
849
|
+
source: 'TanStack Table',
|
850
|
+
type: '() => RowModel<TData>',
|
851
|
+
},
|
852
|
+
{
|
853
|
+
tableOption: 'getGroupedRowModel',
|
854
|
+
defaultValue: '',
|
855
|
+
description:
|
856
|
+
'Returns the row model after grouping has taken place, but no further.',
|
857
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/grouping#getgroupedrowmodel',
|
858
|
+
linkText: 'TanStack Table Grouping Docs',
|
859
|
+
required: false,
|
860
|
+
source: 'TanStack Table',
|
861
|
+
type: '(table: Table<TData>) => () => RowModel<TData>',
|
862
|
+
},
|
863
|
+
{
|
864
|
+
tableOption: 'getIsRowExpanded',
|
865
|
+
defaultValue: '',
|
866
|
+
description:
|
867
|
+
'If provided, allows you to override the default behavior of determining whether a row is currently expanded.',
|
868
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/expanding#getisrowexpanded',
|
869
|
+
linkText: 'TanStack Table Expanding Docs',
|
870
|
+
required: false,
|
871
|
+
source: 'TanStack Table',
|
872
|
+
type: '(row: Row<TData>) => boolean',
|
873
|
+
},
|
874
|
+
{
|
875
|
+
tableOption: 'getPaginationRowModel',
|
876
|
+
defaultValue: '',
|
877
|
+
description: '',
|
878
|
+
link: '',
|
879
|
+
linkText: '',
|
880
|
+
required: false,
|
881
|
+
source: '',
|
882
|
+
type: '() => MRT_RowModel<TData>',
|
883
|
+
},
|
884
|
+
{
|
885
|
+
tableOption: 'getRowCanExpand',
|
886
|
+
defaultValue: '',
|
887
|
+
description:
|
888
|
+
'If provided, allows you to override the default behavior of determining whether a row can be expanded.',
|
889
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/expanding#getrowcanexpand',
|
890
|
+
linkText: 'TanStack Table Expanding Docs',
|
891
|
+
required: false,
|
892
|
+
source: 'TanStack Table',
|
893
|
+
type: '(row: Row<TData>) => boolean',
|
894
|
+
},
|
895
|
+
{
|
896
|
+
tableOption: 'getRowId',
|
897
|
+
defaultValue: '',
|
898
|
+
description: `This optional function is used to derive a unique ID for any given row. If not provided the rows index is used (nested rows join together with . using their grandparents' index eg. index.index.index). If you need to identify individual rows that are originating from any server-side operations, it's suggested you use this function to return an ID that makes sense regardless of network IO/ambiguity eg. a userId, taskId, database ID field, etc.`,
|
899
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#getrowid',
|
900
|
+
linkText: 'TanStack Table Core Table Docs',
|
901
|
+
required: false,
|
902
|
+
source: 'TanStack Table',
|
903
|
+
type: `(originalRow: TData, index: number, parent?: MRT_Row<TData>) => string`,
|
904
|
+
},
|
905
|
+
{
|
906
|
+
tableOption: 'getSortedRowModel',
|
907
|
+
defaultValue: '',
|
908
|
+
description:
|
909
|
+
'This function is used to retrieve the sorted row model. If using server-side sorting, this function is not required. To use client-side sorting, pass the exported getSortedRowModel() from your adapter to your table or implement your own.',
|
910
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/sorting#getsortedrowmodel',
|
911
|
+
linkText: 'TanStack Table Sorting Docs',
|
912
|
+
required: false,
|
913
|
+
source: 'TanStack Table',
|
914
|
+
type: '(table: Table<TData>) => () => RowModel<TData>',
|
915
|
+
},
|
916
|
+
{
|
917
|
+
tableOption: 'getSubRows',
|
918
|
+
defaultValue: '',
|
919
|
+
description:
|
920
|
+
'This optional function is used to access the sub rows for any given row. If you are using nested rows, you will need to use this function to return the sub rows object (or undefined) from the row.',
|
921
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#getsubrows',
|
922
|
+
linkText: 'TanStack Table Core Table Docs',
|
923
|
+
required: false,
|
924
|
+
source: 'TanStack Table',
|
925
|
+
type: `(originalRow: TData, index: number) => undefined | TData[]`,
|
926
|
+
},
|
927
|
+
{
|
928
|
+
tableOption: 'globalFilterFn',
|
929
|
+
defaultValue: '',
|
930
|
+
description: 'The filter function to use for global filtering.',
|
931
|
+
link: '',
|
932
|
+
linkText: '',
|
933
|
+
required: false,
|
934
|
+
source: 'MRT',
|
935
|
+
type: 'MRT_FilterOption',
|
936
|
+
},
|
937
|
+
{
|
938
|
+
tableOption: 'groupedColumnMode',
|
939
|
+
defaultValue: 'reorder',
|
940
|
+
description:
|
941
|
+
'Grouping columns are automatically reordered by default to the start of the columns list. If you would rather remove them or leave them as-is, set the appropriate mode here.',
|
942
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/grouping#groupedcolumnmode',
|
943
|
+
linkText: 'TanStack Table Grouping Docs',
|
944
|
+
required: false,
|
945
|
+
source: 'TanStack Table',
|
946
|
+
type: `false | 'reorder' | 'remove'`,
|
947
|
+
},
|
948
|
+
{
|
949
|
+
tableOption: 'icons',
|
950
|
+
defaultValue: '',
|
951
|
+
description: '',
|
952
|
+
link: '',
|
953
|
+
linkText: '',
|
954
|
+
required: false,
|
955
|
+
source: 'MRT',
|
956
|
+
type: 'Partial<MRT_Icons>;',
|
957
|
+
},
|
958
|
+
{
|
959
|
+
tableOption: 'initialState',
|
960
|
+
defaultValue: '',
|
961
|
+
description:
|
962
|
+
'Use this option to optionally pass initial state to the table. This state will be used when resetting various table states either automatically by the table (eg. options.autoResetPagination) or via functions like table.resetRowSelection(). Most reset function allow you optionally pass a flag to reset to a blank/default state instead of the initial state. Table state will not be reset when this object changes, which also means that the initial state object does not need to be stable.',
|
963
|
+
link: '/docs/guides/table-state-management#populate-initial-state',
|
964
|
+
linkText: 'Table State Management Guide',
|
965
|
+
required: false,
|
966
|
+
source: 'MRT',
|
967
|
+
type: `Partial<MRT_TableState<TData>>`,
|
968
|
+
},
|
969
|
+
{
|
970
|
+
tableOption: 'isMultiSortEvent',
|
971
|
+
defaultValue: '',
|
972
|
+
description:
|
973
|
+
'Pass a custom function that will be used to determine if a multi-sort event should be triggered. It is passed the event from the sort toggle handler and should return true if the event should trigger a multi-sort.',
|
974
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/sorting#ismultisortevent',
|
975
|
+
linkText: 'TanStack Table Sorting Docs',
|
976
|
+
required: false,
|
977
|
+
source: 'TanStack Table',
|
978
|
+
type: '(e: unknown) => boolean',
|
979
|
+
},
|
980
|
+
{
|
981
|
+
tableOption: 'layoutMode',
|
982
|
+
defaultValue: "'semantic' //(changes based on other enabled features)",
|
983
|
+
description: '',
|
984
|
+
link: '/docs/guides/',
|
985
|
+
linkText: 'TODO',
|
986
|
+
required: false,
|
987
|
+
source: 'MRT',
|
988
|
+
type: "'semantic' | 'grid' | 'grid-no-grow'",
|
989
|
+
},
|
990
|
+
{
|
991
|
+
tableOption: 'localization',
|
992
|
+
defaultValue: '',
|
993
|
+
description: '',
|
994
|
+
link: '/docs/guides/localization#localization-(i18n)-guide',
|
995
|
+
linkText: 'Localization (i18n) Guide',
|
996
|
+
required: false,
|
997
|
+
source: 'MRT',
|
998
|
+
type: 'MRT_Localization',
|
999
|
+
},
|
1000
|
+
{
|
1001
|
+
tableOption: 'manualExpanding',
|
1002
|
+
defaultValue: '',
|
1003
|
+
description:
|
1004
|
+
'Enables manual row expansion. If this is set to true, getExpandedRowModel will not be used to expand rows and you would be expected to perform the expansion in your own data model. This is useful if you are doing server-side expansion.',
|
1005
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/expanding#manualexpanding',
|
1006
|
+
linkText: 'TanStack Table Expanding Docs',
|
1007
|
+
required: false,
|
1008
|
+
source: 'TanStack Table',
|
1009
|
+
type: 'boolean',
|
1010
|
+
},
|
1011
|
+
{
|
1012
|
+
tableOption: 'manualFiltering',
|
1013
|
+
defaultValue: '',
|
1014
|
+
description:
|
1015
|
+
'Disables the getFilteredRowModel from being used to filter data. This may be useful if your table needs to dynamically support both client-side and server-side filtering.',
|
1016
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#manualfiltering',
|
1017
|
+
linkText: 'TanStack Table Filters Docs',
|
1018
|
+
required: false,
|
1019
|
+
source: 'TanStack Table',
|
1020
|
+
type: 'boolean',
|
1021
|
+
},
|
1022
|
+
{
|
1023
|
+
tableOption: 'manualGrouping',
|
1024
|
+
defaultValue: '',
|
1025
|
+
description:
|
1026
|
+
'Enables manual grouping. If this option is set to true, the table will not automatically group rows using getGroupedRowModel() and instead will expect you to manually group the rows before passing them to the table. This is useful if you are doing server-side grouping and aggregation.',
|
1027
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/grouping#manualgrouping',
|
1028
|
+
linkText: 'TanStack Table Grouping Docs',
|
1029
|
+
required: false,
|
1030
|
+
source: 'TanStack Table',
|
1031
|
+
type: 'boolean',
|
1032
|
+
},
|
1033
|
+
{
|
1034
|
+
tableOption: 'manualPagination',
|
1035
|
+
defaultValue: '',
|
1036
|
+
description:
|
1037
|
+
'Enables manual pagination. If this option is set to true, the table will not automatically paginate rows using getPaginationRowModel() and instead will expect you to manually paginate the rows before passing them to the table. This is useful if you are doing server-side pagination and aggregation.',
|
1038
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/pagination#manualpagination',
|
1039
|
+
linkText: 'TanStack Table Pagination Docs',
|
1040
|
+
required: false,
|
1041
|
+
source: 'TanStack Table',
|
1042
|
+
type: 'boolean',
|
1043
|
+
},
|
1044
|
+
{
|
1045
|
+
tableOption: 'manualSorting',
|
1046
|
+
defaultValue: '',
|
1047
|
+
description:
|
1048
|
+
'Enables manual sorting for the table. If this is true, you will be expected to sort your data before it is passed to the table. This is useful if you are doing server-side sorting.',
|
1049
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/sorting#manualsorting',
|
1050
|
+
linkText: 'TanStack Table Sorting Docs',
|
1051
|
+
required: false,
|
1052
|
+
source: 'TanStack Table',
|
1053
|
+
type: 'boolean',
|
1054
|
+
},
|
1055
|
+
{
|
1056
|
+
tableOption: 'maxLeafRowFilterDepth',
|
1057
|
+
defaultValue: '100',
|
1058
|
+
description:
|
1059
|
+
'Set a maximum number leaf row depth that will be filtered. Preserve child rows of filtered rows by setting this to "0"',
|
1060
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#maxleafrowfilterdepth',
|
1061
|
+
linkText: 'TanStack Table Filtering Docs',
|
1062
|
+
required: false,
|
1063
|
+
source: 'TanStack Table',
|
1064
|
+
type: 'number',
|
1065
|
+
},
|
1066
|
+
{
|
1067
|
+
tableOption: 'maxMultiSortColCount',
|
1068
|
+
defaultValue: '',
|
1069
|
+
description: 'Set a maximum number of columns that can be multi-sorted.',
|
1070
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/sorting#maxmultisortcolcount',
|
1071
|
+
linkText: 'TanStack Table Sorting Docs',
|
1072
|
+
required: false,
|
1073
|
+
source: 'TanStack Table',
|
1074
|
+
type: 'number',
|
1075
|
+
},
|
1076
|
+
{
|
1077
|
+
tableOption: 'memoMode',
|
1078
|
+
defaultValue: '',
|
1079
|
+
description: '',
|
1080
|
+
link: '/docs/guides/memoize-components',
|
1081
|
+
linkText: 'Memoize Components Guide',
|
1082
|
+
required: false,
|
1083
|
+
source: 'MRT',
|
1084
|
+
type: `'cells' | 'rows' | 'table-body'`,
|
1085
|
+
},
|
1086
|
+
{
|
1087
|
+
tableOption: 'mergeOptions',
|
1088
|
+
defaultValue: '',
|
1089
|
+
description:
|
1090
|
+
'This option is used to optionally implement the merging of table options. Some framework like solid-js use proxies to track reactivity and usage, so merging reactive objects needs to be handled carefully. This option inverts control of this process to the adapter.',
|
1091
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#mergeoptions',
|
1092
|
+
linkText: 'TanStack Table Core Docs',
|
1093
|
+
required: false,
|
1094
|
+
source: 'TanStack Table',
|
1095
|
+
type: '<T>(defaultOptions: T, options: Partial<T>) => T',
|
1096
|
+
},
|
1097
|
+
{
|
1098
|
+
tableOption: 'meta',
|
1099
|
+
defaultValue: '',
|
1100
|
+
description:
|
1101
|
+
'You can pass any object to options.meta and access it anywhere the table is available via table.options.meta This type is global to all tables.',
|
1102
|
+
link: 'https://tanstack.com/table/v8/docs/api/core/table#meta',
|
1103
|
+
linkText: 'TanStack Table Core Docs',
|
1104
|
+
required: false,
|
1105
|
+
source: 'TanStack Table',
|
1106
|
+
type: 'TableMeta ',
|
1107
|
+
},
|
1108
|
+
{
|
1109
|
+
tableOption: 'muiEditRowDialogProps',
|
1110
|
+
defaultValue: '',
|
1111
|
+
description: '',
|
1112
|
+
link: 'https://mui.com/material-ui/api/dialog/#props',
|
1113
|
+
linkText: 'Material UI Dialog Props',
|
1114
|
+
required: false,
|
1115
|
+
source: 'Material UI',
|
1116
|
+
type: 'IconButtonProps | ({ table }) => IconButtonProps',
|
1117
|
+
},
|
1118
|
+
{
|
1119
|
+
tableOption: 'muiExpandAllButtonProps',
|
1120
|
+
defaultValue: '',
|
1121
|
+
description: '',
|
1122
|
+
link: 'https://mui.com/material-ui/api/icon-button/#props',
|
1123
|
+
linkText: 'Material UI IconButton Props',
|
1124
|
+
required: false,
|
1125
|
+
source: 'Material UI',
|
1126
|
+
type: 'IconButtonProps | ({ table }) => IconButtonProps',
|
1127
|
+
},
|
1128
|
+
{
|
1129
|
+
tableOption: 'muiExpandButtonProps',
|
1130
|
+
defaultValue: '',
|
1131
|
+
description: '',
|
1132
|
+
link: 'https://mui.com/material-ui/api/icon-button/#props',
|
1133
|
+
linkText: 'Material UI IconButton Props',
|
1134
|
+
required: false,
|
1135
|
+
source: 'Material UI',
|
1136
|
+
type: 'IconButtonProps | ({ row, table }) => IconButtonProps',
|
1137
|
+
},
|
1138
|
+
{
|
1139
|
+
tableOption: 'muiLinearProgressProps',
|
1140
|
+
defaultValue: '',
|
1141
|
+
description: '',
|
1142
|
+
link: 'https://mui.com/material-ui/api/linear-progress/#props',
|
1143
|
+
linkText: 'Material UI LinearProgress Props',
|
1144
|
+
required: false,
|
1145
|
+
source: 'Material UI',
|
1146
|
+
type: 'LinearProgressProps | ({ isTopToolbar, table }) => LinearProgressProps',
|
1147
|
+
},
|
1148
|
+
{
|
1149
|
+
tableOption: 'muiCircularProgressProps',
|
1150
|
+
defaultValue: '',
|
1151
|
+
description: '',
|
1152
|
+
link: 'https://mui.com/material-ui/api/circular-progress/#props',
|
1153
|
+
linkText: 'Material UI CircularProgress Props',
|
1154
|
+
required: false,
|
1155
|
+
source: 'Material UI',
|
1156
|
+
type: 'CircularProgressProps | ({ table }) => CircularProgressProps',
|
1157
|
+
},
|
1158
|
+
{
|
1159
|
+
tableOption: 'muiSearchTextFieldProps',
|
1160
|
+
defaultValue: '',
|
1161
|
+
description: '',
|
1162
|
+
link: 'https://mui.com/material-ui/api/text-field/#props',
|
1163
|
+
linkText: 'Material UI TextField Props',
|
1164
|
+
required: false,
|
1165
|
+
source: 'Material UI',
|
1166
|
+
type: 'TextFieldProps | ({ table }) => TextFieldProps',
|
1167
|
+
},
|
1168
|
+
{
|
1169
|
+
tableOption: 'muiSelectAllCheckboxProps',
|
1170
|
+
defaultValue: '',
|
1171
|
+
description: '',
|
1172
|
+
link: 'https://mui.com/material-ui/api/checkbox/#props',
|
1173
|
+
linkText: 'Material UI Checkbox Props',
|
1174
|
+
required: false,
|
1175
|
+
source: 'Material UI',
|
1176
|
+
type: 'CheckboxProps | ({ table }) => CheckboxProps',
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
tableOption: 'muiSelectCheckboxProps',
|
1180
|
+
defaultValue: '',
|
1181
|
+
description: '',
|
1182
|
+
link: 'https://mui.com/material-ui/api/checkbox/#props',
|
1183
|
+
linkText: 'Material UI Checkbox Props',
|
1184
|
+
required: false,
|
1185
|
+
source: 'Material UI',
|
1186
|
+
type: 'CheckboxProps | ({ row, table }) => CheckboxProps',
|
1187
|
+
},
|
1188
|
+
{
|
1189
|
+
tableOption: 'muiCopyButtonProps',
|
1190
|
+
defaultValue: '',
|
1191
|
+
description: '',
|
1192
|
+
link: 'https://mui.com/material-ui/api/button/#props',
|
1193
|
+
linkText: 'Material UI Button Props',
|
1194
|
+
required: false,
|
1195
|
+
source: 'Material UI',
|
1196
|
+
type: 'ButtonProps | ({ cell, column, row, table }) => ButtonProps',
|
1197
|
+
},
|
1198
|
+
{
|
1199
|
+
tableOption: 'muiEditTextFieldProps',
|
1200
|
+
defaultValue: '',
|
1201
|
+
description: '',
|
1202
|
+
link: 'https://mui.com/material-ui/api/text-field/#props',
|
1203
|
+
linkText: 'Material UI TextField Props',
|
1204
|
+
required: false,
|
1205
|
+
source: 'Material UI',
|
1206
|
+
type: 'TextFieldProps | ({ cell, column, row, table }) => TextFieldProps',
|
1207
|
+
},
|
1208
|
+
{
|
1209
|
+
tableOption: 'muiTableBodyCellProps',
|
1210
|
+
defaultValue: '',
|
1211
|
+
description: '',
|
1212
|
+
link: 'https://mui.com/material-ui/api/table-cell/#props',
|
1213
|
+
linkText: 'Material UI TableCell Props',
|
1214
|
+
required: false,
|
1215
|
+
source: 'Material UI',
|
1216
|
+
type: 'TableCellProps | ({ cell, column, row, table }) => TableCellProps',
|
1217
|
+
},
|
1218
|
+
{
|
1219
|
+
tableOption: 'muiSkeletonProps',
|
1220
|
+
defaultValue: '',
|
1221
|
+
description: '',
|
1222
|
+
link: 'https://mui.com/material-ui/api/skeleton/#props',
|
1223
|
+
linkText: 'Material UI Skeleton Props',
|
1224
|
+
required: false,
|
1225
|
+
source: 'Material UI',
|
1226
|
+
type: 'SkeletonProps | ({ cell, column, row, table }) => SkeletonProps',
|
1227
|
+
},
|
1228
|
+
{
|
1229
|
+
tableOption: 'muiTableBodyProps',
|
1230
|
+
defaultValue: '',
|
1231
|
+
description: '',
|
1232
|
+
link: 'https://mui.com/material-ui/api/table-body/#props',
|
1233
|
+
linkText: 'Material UI TableBody Props',
|
1234
|
+
required: false,
|
1235
|
+
source: 'Material UI',
|
1236
|
+
type: 'TableBodyProps | ({ table }) => TableBodyProps',
|
1237
|
+
},
|
1238
|
+
{
|
1239
|
+
tableOption: 'muiRowDragHandleProps',
|
1240
|
+
defaultValue: '',
|
1241
|
+
description: '',
|
1242
|
+
link: 'https://mui.com/material-ui/api/icon-button/#props',
|
1243
|
+
linkText: 'Material UI IconButton Props',
|
1244
|
+
required: false,
|
1245
|
+
source: 'Material UI',
|
1246
|
+
type: 'IconButtonProps | ({ row, table }) => IconButtonProps',
|
1247
|
+
},
|
1248
|
+
{
|
1249
|
+
tableOption: 'muiTableBodyRowProps',
|
1250
|
+
defaultValue: '{ hover: true }',
|
1251
|
+
description: '',
|
1252
|
+
link: 'https://mui.com/material-ui/api/table-row/#props',
|
1253
|
+
linkText: 'Material UI TableRow Props',
|
1254
|
+
required: false,
|
1255
|
+
source: 'Material UI',
|
1256
|
+
type: 'TableRowProps | ({ isDetailPanel, row, table }) => TableRowProps',
|
1257
|
+
},
|
1258
|
+
{
|
1259
|
+
tableOption: 'muiTableContainerProps',
|
1260
|
+
defaultValue: '',
|
1261
|
+
description: '',
|
1262
|
+
link: 'https://mui.com/material-ui/api/table-container/#props',
|
1263
|
+
linkText: 'Material UI TableContainer Props',
|
1264
|
+
required: false,
|
1265
|
+
source: 'Material UI',
|
1266
|
+
type: 'TableContainerProps | ({ table }) => TableContainerProps',
|
1267
|
+
},
|
1268
|
+
{
|
1269
|
+
tableOption: 'muiDetailPanelProps',
|
1270
|
+
defaultValue: '',
|
1271
|
+
description: '',
|
1272
|
+
link: 'https://mui.com/material-ui/api/table-cell/#props',
|
1273
|
+
linkText: 'Material UI TableCell Props',
|
1274
|
+
required: false,
|
1275
|
+
source: 'Material UI',
|
1276
|
+
type: 'TableCellProps | ({ row, table }) => TableCellProps',
|
1277
|
+
},
|
1278
|
+
{
|
1279
|
+
tableOption: 'muiTableFooterCellProps',
|
1280
|
+
defaultValue: '',
|
1281
|
+
description: '',
|
1282
|
+
link: 'https://mui.com/material-ui/api/table-cell/#props',
|
1283
|
+
linkText: 'Material UI TableCell Props',
|
1284
|
+
required: false,
|
1285
|
+
source: 'Material UI',
|
1286
|
+
type: 'TableCellProps| ({table, column}) => TableCellProps',
|
1287
|
+
},
|
1288
|
+
{
|
1289
|
+
tableOption: 'muiTableFooterProps',
|
1290
|
+
defaultValue: '',
|
1291
|
+
description: '',
|
1292
|
+
link: 'https://mui.com/material-ui/api/table-footer/#props',
|
1293
|
+
linkText: 'Material UI TableFooter Props',
|
1294
|
+
required: false,
|
1295
|
+
source: 'Material UI',
|
1296
|
+
type: 'TableFooterProps | ({ table }) => TableFooterProps);',
|
1297
|
+
},
|
1298
|
+
{
|
1299
|
+
tableOption: 'muiTableFooterRowProps',
|
1300
|
+
defaultValue: '',
|
1301
|
+
description: '',
|
1302
|
+
link: 'https://mui.com/material-ui/api/table-row/#props',
|
1303
|
+
linkText: 'Material UI TableRow Props',
|
1304
|
+
required: false,
|
1305
|
+
source: 'Material UI',
|
1306
|
+
type: 'TableRowProps | ({table, footerGroup}) => TableRowProps',
|
1307
|
+
},
|
1308
|
+
{
|
1309
|
+
tableOption: 'muiColumnActionsButtonProps',
|
1310
|
+
defaultValue: '',
|
1311
|
+
description: '',
|
1312
|
+
link: 'https://mui.com/material-ui/api/icon-button/#props',
|
1313
|
+
linkText: 'Material UI IconButton Props',
|
1314
|
+
required: false,
|
1315
|
+
source: 'Material UI',
|
1316
|
+
type: 'IconButtonProps | (({table, column}) => IconButtonProps);',
|
1317
|
+
},
|
1318
|
+
{
|
1319
|
+
tableOption: 'muiColumnDragHandleProps',
|
1320
|
+
defaultValue: '',
|
1321
|
+
description: '',
|
1322
|
+
link: 'https://mui.com/material-ui/api/icon-button/#props',
|
1323
|
+
linkText: 'Material UI IconButton Props',
|
1324
|
+
required: false,
|
1325
|
+
source: 'Material UI',
|
1326
|
+
type: 'IconButtonProps | ({table, column}) => IconButtonProps',
|
1327
|
+
},
|
1328
|
+
{
|
1329
|
+
tableOption: 'muiFilterAutocompleteProps',
|
1330
|
+
defaultValue: '',
|
1331
|
+
description: '',
|
1332
|
+
link: 'https://mui.com/material-ui/api/autocomplete/#props',
|
1333
|
+
linkText: 'Material UI Autocomplete Props',
|
1334
|
+
source: 'Material UI',
|
1335
|
+
required: false,
|
1336
|
+
type: 'AutocompleteProps | ({ column, rangeFilterIndex, table }) => AutocompleteProps',
|
1337
|
+
},
|
1338
|
+
{
|
1339
|
+
tableOption: 'muiFilterCheckboxProps',
|
1340
|
+
defaultValue: '',
|
1341
|
+
description: '',
|
1342
|
+
link: 'https://mui.com/material-ui/api/checkbox/#props',
|
1343
|
+
linkText: 'Material UI Checkbox Props',
|
1344
|
+
required: false,
|
1345
|
+
source: 'Material UI',
|
1346
|
+
type: 'CheckboxProps | ({ column, table}) => CheckboxProps',
|
1347
|
+
},
|
1348
|
+
{
|
1349
|
+
tableOption: 'muiFilterDatePickerProps',
|
1350
|
+
defaultValue: '',
|
1351
|
+
description: '',
|
1352
|
+
link: 'https://mui.com/x/api/date-pickers/date-picker/',
|
1353
|
+
linkText: 'MUI X DatePicker Props',
|
1354
|
+
source: 'Material UI',
|
1355
|
+
required: false,
|
1356
|
+
type: 'DatePickerProps | ({ column, rangeFilterIndex, table }) => DatePickerProps',
|
1357
|
+
},
|
1358
|
+
{
|
1359
|
+
tableOption: 'muiFilterDateTimePickerProps',
|
1360
|
+
defaultValue: '',
|
1361
|
+
description: '',
|
1362
|
+
link: 'https://mui.com/x/api/date-pickers/date-time-picker/',
|
1363
|
+
linkText: 'MUI X DateTimePicker Props',
|
1364
|
+
source: 'Material UI',
|
1365
|
+
required: false,
|
1366
|
+
type: 'DateTimePickerProps | ({ column, rangeFilterIndex, table }) => DateTimePickerProps',
|
1367
|
+
},
|
1368
|
+
{
|
1369
|
+
tableOption: 'muiFilterTimePickerProps',
|
1370
|
+
defaultValue: '',
|
1371
|
+
description: '',
|
1372
|
+
link: 'https://mui.com/x/api/date-pickers/time-picker/',
|
1373
|
+
linkText: 'MUI X TimePicker Props',
|
1374
|
+
source: 'Material UI',
|
1375
|
+
required: false,
|
1376
|
+
type: 'TimePickerProps | ({ column, rangeFilterIndex, table }) => TimePickerProps',
|
1377
|
+
},
|
1378
|
+
{
|
1379
|
+
tableOption: 'muiFilterSliderProps',
|
1380
|
+
defaultValue: '',
|
1381
|
+
description: '',
|
1382
|
+
link: 'https://mui.com/material-ui/api/slider/#props',
|
1383
|
+
linkText: 'Material UI Slider Props',
|
1384
|
+
required: false,
|
1385
|
+
source: 'Material UI',
|
1386
|
+
type: 'SliderProps | ({ column, table}) => SliderProps',
|
1387
|
+
},
|
1388
|
+
{
|
1389
|
+
tableOption: 'muiFilterTextFieldProps',
|
1390
|
+
defaultValue: '',
|
1391
|
+
description: '',
|
1392
|
+
link: 'https://mui.com/material-ui/api/text-field/#props',
|
1393
|
+
linkText: 'Material UI TextField Props',
|
1394
|
+
required: false,
|
1395
|
+
source: 'Material UI',
|
1396
|
+
type: 'TextFieldProps | ({ table, column, rangeFilterIndex}) => TextFieldProps',
|
1397
|
+
},
|
1398
|
+
{
|
1399
|
+
tableOption: 'muiTableHeadCellProps',
|
1400
|
+
defaultValue: '',
|
1401
|
+
description: '',
|
1402
|
+
link: 'https://mui.com/material-ui/api/table-cell/#props',
|
1403
|
+
linkText: 'Material UI TableCell Props',
|
1404
|
+
required: false,
|
1405
|
+
source: 'Material UI',
|
1406
|
+
type: 'TableCellProps | ({ table, column}) => TableCellProps',
|
1407
|
+
},
|
1408
|
+
{
|
1409
|
+
tableOption: 'muiTableHeadProps',
|
1410
|
+
defaultValue: '',
|
1411
|
+
description: '',
|
1412
|
+
link: 'https://mui.com/material-ui/api/table-head/#props',
|
1413
|
+
linkText: 'Material UI TableHead Props',
|
1414
|
+
required: false,
|
1415
|
+
source: 'Material UI',
|
1416
|
+
type: 'TableHeadProps | ({ table }) => TableHeadProps',
|
1417
|
+
},
|
1418
|
+
{
|
1419
|
+
tableOption: 'muiTableHeadRowProps',
|
1420
|
+
defaultValue: '',
|
1421
|
+
description: '',
|
1422
|
+
link: 'https://mui.com/material-ui/api/table-row/#props',
|
1423
|
+
linkText: 'Material UI TableRow Props',
|
1424
|
+
required: false,
|
1425
|
+
source: 'Material UI',
|
1426
|
+
type: 'TableRowProps | ({ table, headerGroup}) => TableRowProps',
|
1427
|
+
},
|
1428
|
+
{
|
1429
|
+
tableOption: 'muiPaginationProps',
|
1430
|
+
defaultValue: '',
|
1431
|
+
description: '',
|
1432
|
+
link: 'https://mui.com/material-ui/api/pagination/#props',
|
1433
|
+
linkText: 'Material UI TablePagination Props',
|
1434
|
+
required: false,
|
1435
|
+
source: 'Material UI',
|
1436
|
+
type: 'Partial<PaginationProps> | ({ table }) => Partial<PaginationProps>',
|
1437
|
+
},
|
1438
|
+
{
|
1439
|
+
tableOption: 'muiTablePaperProps',
|
1440
|
+
defaultValue: '',
|
1441
|
+
description: '',
|
1442
|
+
link: 'https://mui.com/material-ui/api/paper/#props',
|
1443
|
+
linkText: 'Material UI Paper API Docs',
|
1444
|
+
required: false,
|
1445
|
+
source: 'Material UI',
|
1446
|
+
type: 'PaperProps | ({ table }} => PaperProps',
|
1447
|
+
},
|
1448
|
+
{
|
1449
|
+
tableOption: 'muiTableProps',
|
1450
|
+
defaultValue: '',
|
1451
|
+
description: '',
|
1452
|
+
link: 'https://mui.com/material-ui/api/table/',
|
1453
|
+
linkText: 'Material UI TableProps API Docs',
|
1454
|
+
required: false,
|
1455
|
+
source: 'Material UI',
|
1456
|
+
type: 'TableProps | ({ table }} => TableProps',
|
1457
|
+
},
|
1458
|
+
{
|
1459
|
+
tableOption: 'muiToolbarAlertBannerChipProps',
|
1460
|
+
defaultValue: '',
|
1461
|
+
description: '',
|
1462
|
+
link: 'https://mui.com/material-ui/api/chip/#props',
|
1463
|
+
linkText: 'Material UI Chip Props',
|
1464
|
+
required: false,
|
1465
|
+
source: 'Material UI',
|
1466
|
+
type: 'ChipProps| ({ table }} => ChipProps',
|
1467
|
+
},
|
1468
|
+
{
|
1469
|
+
tableOption: 'muiToolbarAlertBannerProps',
|
1470
|
+
defaultValue: '',
|
1471
|
+
description: '',
|
1472
|
+
link: 'https://mui.com/material-ui/api/alert/#props',
|
1473
|
+
linkText: 'Material UI Alert Props',
|
1474
|
+
required: false,
|
1475
|
+
source: 'Material UI',
|
1476
|
+
type: 'AlertProps | ({ table }) => AlertProps',
|
1477
|
+
},
|
1478
|
+
{
|
1479
|
+
tableOption: 'muiBottomToolbarProps',
|
1480
|
+
defaultValue: '',
|
1481
|
+
description: '',
|
1482
|
+
link: 'https://mui.com/material-ui/api/box/#props',
|
1483
|
+
linkText: 'Material UI Box Props',
|
1484
|
+
required: false,
|
1485
|
+
source: 'Material UI',
|
1486
|
+
type: 'BoxProps | ({ table }) => BoxProps',
|
1487
|
+
},
|
1488
|
+
{
|
1489
|
+
tableOption: 'muiTopToolbarProps',
|
1490
|
+
defaultValue: '',
|
1491
|
+
description: '',
|
1492
|
+
link: 'https://mui.com/material-ui/api/box/#props',
|
1493
|
+
linkText: 'Material UI Box Props',
|
1494
|
+
required: false,
|
1495
|
+
source: 'Material UI',
|
1496
|
+
type: 'BoxProps | ({ table }) => BoxProps',
|
1497
|
+
},
|
1498
|
+
{
|
1499
|
+
tableOption: 'onColumnFiltersChange',
|
1500
|
+
defaultValue: '',
|
1501
|
+
description:
|
1502
|
+
'If provided, this function will be called with an updaterFn when state.columnFilters changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table.',
|
1503
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#oncolumnfilterschange',
|
1504
|
+
linkText: 'TanStack Table Filter Docs',
|
1505
|
+
required: false,
|
1506
|
+
source: 'TanStack Table',
|
1507
|
+
type: 'OnChangeFn<ColumnFiltersState>',
|
1508
|
+
},
|
1509
|
+
{
|
1510
|
+
tableOption: 'onColumnOrderChange',
|
1511
|
+
defaultValue: '',
|
1512
|
+
description:
|
1513
|
+
'If provided, this function will be called with an updaterFn when state.columnOrder changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table.',
|
1514
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/column-ordering#oncolumnorderchange',
|
1515
|
+
linkText: 'TanStack Table Column Ordering Docs',
|
1516
|
+
required: false,
|
1517
|
+
source: 'TanStack Table',
|
1518
|
+
type: 'OnChangeFn<ColumnOrderState>',
|
1519
|
+
},
|
1520
|
+
{
|
1521
|
+
tableOption: 'onColumnPinningChange',
|
1522
|
+
defaultValue: '',
|
1523
|
+
description:
|
1524
|
+
'If provided, this function will be called with an updaterFn when state.columnPinning changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table.',
|
1525
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/column-pinning#oncolumnpinningchange',
|
1526
|
+
linkText: 'TanStack Table Column Pinning Docs',
|
1527
|
+
required: false,
|
1528
|
+
source: 'TanStack Table',
|
1529
|
+
type: 'OnChangeFn<ColumnPinningState>',
|
1530
|
+
},
|
1531
|
+
{
|
1532
|
+
tableOption: 'onColumnSizingChange',
|
1533
|
+
defaultValue: '',
|
1534
|
+
description:
|
1535
|
+
'This optional function will be called when the columnSizing state changes. If you provide this function, you will be responsible for maintaining its state yourself. You can pass this state back to the table via the state.columnSizing table option.',
|
1536
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/column-sizing#oncolumnsizingchange',
|
1537
|
+
linkText: 'TanStack Table Column Sizing Docs',
|
1538
|
+
required: false,
|
1539
|
+
source: 'TanStack Table',
|
1540
|
+
type: 'OnChangeFn<ColumnSizingState>',
|
1541
|
+
},
|
1542
|
+
{
|
1543
|
+
tableOption: 'onColumnSizingInfoChange',
|
1544
|
+
defaultValue: '',
|
1545
|
+
description:
|
1546
|
+
'This optional function will be called when the columnSizingInfo state changes. If you provide this function, you will be responsible for maintaining its state yourself. You can pass this state back to the table via the state.columnSizingInfo table option.',
|
1547
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/column-sizing#oncolumnsizinginfochange',
|
1548
|
+
linkText: 'TanStack Table Column Sizing Docs',
|
1549
|
+
required: false,
|
1550
|
+
source: 'TanStack Table',
|
1551
|
+
type: 'OnChangeFn<ColumnSizingInfoState>',
|
1552
|
+
},
|
1553
|
+
{
|
1554
|
+
tableOption: 'onColumnVisibilityChange',
|
1555
|
+
defaultValue: '',
|
1556
|
+
description:
|
1557
|
+
'If provided, this function will be called with an updaterFn when state.columnVisibility changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table.',
|
1558
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/column-visibility#oncolumnvisibilitychange',
|
1559
|
+
linkText: 'TanStack Table Column Visibility Docs',
|
1560
|
+
required: false,
|
1561
|
+
source: 'TanStack Table',
|
1562
|
+
type: 'OnChangeFn<ColumnVisibilityState>',
|
1563
|
+
},
|
1564
|
+
{
|
1565
|
+
tableOption: 'onDraggingColumnChange',
|
1566
|
+
defaultValue: '',
|
1567
|
+
description: '',
|
1568
|
+
link: '',
|
1569
|
+
linkText: '',
|
1570
|
+
required: false,
|
1571
|
+
source: 'MRT',
|
1572
|
+
type: 'OnChangeFn<MRT_Column<TData> | null>',
|
1573
|
+
},
|
1574
|
+
{
|
1575
|
+
tableOption: 'onDraggingRowChange',
|
1576
|
+
defaultValue: '',
|
1577
|
+
description: '',
|
1578
|
+
link: '',
|
1579
|
+
linkText: '',
|
1580
|
+
required: false,
|
1581
|
+
source: '',
|
1582
|
+
type: 'OnChangeFn<MRT_Row<TData> | null>',
|
1583
|
+
},
|
1584
|
+
{
|
1585
|
+
tableOption: 'onEditingCellChange',
|
1586
|
+
defaultValue: '',
|
1587
|
+
description: '',
|
1588
|
+
link: '',
|
1589
|
+
linkText: '',
|
1590
|
+
required: false,
|
1591
|
+
source: 'MRT',
|
1592
|
+
type: 'OnChangeFn<MRT_Cell<TData> | null>',
|
1593
|
+
},
|
1594
|
+
{
|
1595
|
+
tableOption: 'onCreatingRowChange',
|
1596
|
+
defaultValue: '',
|
1597
|
+
description: '',
|
1598
|
+
link: '',
|
1599
|
+
linkText: '',
|
1600
|
+
required: false,
|
1601
|
+
source: 'MRT',
|
1602
|
+
type: 'OnChangeFn<MRT_Row<TData> | null>',
|
1603
|
+
},
|
1604
|
+
{
|
1605
|
+
tableOption: 'onEditingRowChange',
|
1606
|
+
defaultValue: '',
|
1607
|
+
description: '',
|
1608
|
+
link: '',
|
1609
|
+
linkText: '',
|
1610
|
+
required: false,
|
1611
|
+
source: 'MRT',
|
1612
|
+
type: 'OnChangeFn<MRT_Row<TData> | null>',
|
1613
|
+
},
|
1614
|
+
{
|
1615
|
+
tableOption: 'onColumnFilterFnsChange',
|
1616
|
+
defaultValue: '',
|
1617
|
+
description: '',
|
1618
|
+
link: '',
|
1619
|
+
linkText: '',
|
1620
|
+
required: false,
|
1621
|
+
source: 'MRT',
|
1622
|
+
type: 'OnChangeFn<{ [key: string]: MRT_FilterOption }>',
|
1623
|
+
},
|
1624
|
+
{
|
1625
|
+
tableOption: 'onGlobalFilterFnChange',
|
1626
|
+
defaultValue: '',
|
1627
|
+
description:
|
1628
|
+
'If provided, this function will be called with an updaterFn when state.globalFilter changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table.',
|
1629
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#onglobalfilterchange',
|
1630
|
+
linkText: 'TanStack Table Filters Docs',
|
1631
|
+
required: false,
|
1632
|
+
source: 'TanStack Table',
|
1633
|
+
type: 'OnChangeFn<GlobalFilterState>',
|
1634
|
+
},
|
1635
|
+
{
|
1636
|
+
tableOption: 'onHoveredColumnChange',
|
1637
|
+
defaultValue: '',
|
1638
|
+
description: '',
|
1639
|
+
link: '',
|
1640
|
+
linkText: '',
|
1641
|
+
required: false,
|
1642
|
+
source: 'MRT',
|
1643
|
+
type: 'OnChangeFn<MRT_Column<TData> | null>',
|
1644
|
+
},
|
1645
|
+
{
|
1646
|
+
tableOption: 'onHoveredRowChange',
|
1647
|
+
defaultValue: '',
|
1648
|
+
description: '',
|
1649
|
+
link: '',
|
1650
|
+
linkText: '',
|
1651
|
+
required: false,
|
1652
|
+
source: 'MRT',
|
1653
|
+
type: 'OnChangeFn<MRT_Row<TData> | null>',
|
1654
|
+
},
|
1655
|
+
{
|
1656
|
+
tableOption: 'onExpandedChange',
|
1657
|
+
defaultValue: '',
|
1658
|
+
description:
|
1659
|
+
'This function is called when the expanded table state changes. If a function is provided, you will be responsible for managing this state on your own. To pass the managed state back to the table, use the tableOptions.state.expanded option.',
|
1660
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/expanding#onexpandedchange',
|
1661
|
+
linkText: 'TanStack Table Expanding Docs',
|
1662
|
+
required: false,
|
1663
|
+
source: 'TanStack Table',
|
1664
|
+
type: 'OnChangeFn<ExpandedState>',
|
1665
|
+
},
|
1666
|
+
{
|
1667
|
+
tableOption: 'onGlobalFilterChange',
|
1668
|
+
defaultValue: '',
|
1669
|
+
description:
|
1670
|
+
'If provided, this function will be called with an updaterFn when state.globalFilter changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table.',
|
1671
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/filters#onglobalfilterchange',
|
1672
|
+
linkText: 'TanStack Table Filters Docs',
|
1673
|
+
required: false,
|
1674
|
+
source: 'TanStack Table',
|
1675
|
+
type: 'OnChangeFn<GlobalFilterState>',
|
1676
|
+
},
|
1677
|
+
{
|
1678
|
+
tableOption: 'onGroupingChange',
|
1679
|
+
defaultValue: '',
|
1680
|
+
description:
|
1681
|
+
'If this function is provided, it will be called when the grouping state changes and you will be expected to manage the state yourself. You can pass the managed state back to the table via the tableOptions.state.grouping option.',
|
1682
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/grouping#ongroupingchange',
|
1683
|
+
linkText: 'TanStack Table Grouping Docs',
|
1684
|
+
required: false,
|
1685
|
+
source: 'TanStack Table',
|
1686
|
+
type: 'OnChangeFn<GroupingState>',
|
1687
|
+
},
|
1688
|
+
{
|
1689
|
+
tableOption: 'onDensityChange',
|
1690
|
+
defaultValue: '',
|
1691
|
+
description: '',
|
1692
|
+
link: '/docs/guides/density-toggle',
|
1693
|
+
linkText: 'MRT Density Toggle Docs',
|
1694
|
+
required: false,
|
1695
|
+
source: 'MRT',
|
1696
|
+
type: 'OnChangeFn<MRT_DensityState>',
|
1697
|
+
},
|
1698
|
+
{
|
1699
|
+
tableOption: 'onIsFullScreenChange',
|
1700
|
+
defaultValue: '',
|
1701
|
+
description: '',
|
1702
|
+
link: '/docs/guides/full-screen-toggle',
|
1703
|
+
linkText: 'MRT Full Screen Toggle Docs',
|
1704
|
+
required: false,
|
1705
|
+
source: 'MRT',
|
1706
|
+
type: 'OnChangeFn<boolean>',
|
1707
|
+
},
|
1708
|
+
{
|
1709
|
+
tableOption: 'onEditingRowSave',
|
1710
|
+
defaultValue: '',
|
1711
|
+
description: '',
|
1712
|
+
link: '/docs/guides/editing',
|
1713
|
+
linkText: 'MRT Editing Docs',
|
1714
|
+
required: false,
|
1715
|
+
source: 'MRT',
|
1716
|
+
type: '({ exitEditingMode, row, table, values}) => Promise<void> | void',
|
1717
|
+
},
|
1718
|
+
{
|
1719
|
+
tableOption: 'onCreatingRowSave',
|
1720
|
+
defaultValue: '',
|
1721
|
+
description: '',
|
1722
|
+
link: '/docs/guides/editing',
|
1723
|
+
linkText: 'MRT Editing Docs',
|
1724
|
+
required: false,
|
1725
|
+
source: 'MRT',
|
1726
|
+
type: '({ exitEditingMode, row, table, values}) => Promise<void> | void',
|
1727
|
+
},
|
1728
|
+
{
|
1729
|
+
tableOption: 'onEditingRowCancel',
|
1730
|
+
defaultValue: '',
|
1731
|
+
description: '',
|
1732
|
+
link: '/docs/guides/editing#add-validation-to-editing-components',
|
1733
|
+
linkText: 'MRT Editing Docs',
|
1734
|
+
required: false,
|
1735
|
+
source: 'MRT',
|
1736
|
+
type: '({ row, table }) => void',
|
1737
|
+
},
|
1738
|
+
{
|
1739
|
+
tableOption: 'onCreatingRowCancel',
|
1740
|
+
defaultValue: '',
|
1741
|
+
description: '',
|
1742
|
+
link: '/docs/guides/editing#add-validation-to-editing-components',
|
1743
|
+
linkText: 'MRT Editing Docs',
|
1744
|
+
required: false,
|
1745
|
+
source: 'MRT',
|
1746
|
+
type: '({ row, table }) => void',
|
1747
|
+
},
|
1748
|
+
{
|
1749
|
+
tableOption: 'onPaginationChange',
|
1750
|
+
defaultValue: '',
|
1751
|
+
description:
|
1752
|
+
'If this function is provided, it will be called when the pagination state changes and you will be expected to manage the state yourself. You can pass the managed state back to the table via the tableOptions.state.pagination option.',
|
1753
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/pagination#onpaginationchange',
|
1754
|
+
linkText: 'TanStack Table Pagination Docs',
|
1755
|
+
required: false,
|
1756
|
+
source: 'TanStack Table',
|
1757
|
+
type: 'OnChangeFn<PaginationState>',
|
1758
|
+
},
|
1759
|
+
{
|
1760
|
+
tableOption: 'onRowPinningChange',
|
1761
|
+
defaultValue: '',
|
1762
|
+
description:
|
1763
|
+
'If provided, this function will be called with an updaterFn when state.rowPinning changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table.',
|
1764
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/pinning#onrowpinningchange',
|
1765
|
+
linkText: 'TanStack Table Pinning Docs',
|
1766
|
+
required: false,
|
1767
|
+
source: 'TanStack Table',
|
1768
|
+
type: 'OnChangeFn<RowSelectionState>',
|
1769
|
+
},
|
1770
|
+
{
|
1771
|
+
tableOption: 'onRowSelectionChange',
|
1772
|
+
defaultValue: '',
|
1773
|
+
description:
|
1774
|
+
'If provided, this function will be called with an updaterFn when state.rowSelection changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table.',
|
1775
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/row-selection#onrowselectionchange',
|
1776
|
+
linkText: 'TanStack Table Row Selection Docs',
|
1777
|
+
required: false,
|
1778
|
+
source: 'TanStack Table',
|
1779
|
+
type: 'OnChangeFn<RowSelectionState>',
|
1780
|
+
},
|
1781
|
+
{
|
1782
|
+
tableOption: 'onShowAlertBannerChange',
|
1783
|
+
defaultValue: '',
|
1784
|
+
description: '',
|
1785
|
+
link: '',
|
1786
|
+
linkText: '',
|
1787
|
+
required: false,
|
1788
|
+
source: 'MRT',
|
1789
|
+
type: 'OnChangeFn<boolean>',
|
1790
|
+
},
|
1791
|
+
{
|
1792
|
+
tableOption: 'onShowColumnFiltersChange',
|
1793
|
+
defaultValue: '',
|
1794
|
+
description: '',
|
1795
|
+
link: '',
|
1796
|
+
linkText: '',
|
1797
|
+
required: false,
|
1798
|
+
source: 'MRT',
|
1799
|
+
type: 'OnChangeFn<boolean>',
|
1800
|
+
},
|
1801
|
+
{
|
1802
|
+
tableOption: 'onShowGlobalFilterChange',
|
1803
|
+
defaultValue: '',
|
1804
|
+
description: '',
|
1805
|
+
link: '',
|
1806
|
+
linkText: '',
|
1807
|
+
required: false,
|
1808
|
+
source: 'MRT',
|
1809
|
+
type: 'OnChangeFn<boolean>',
|
1810
|
+
},
|
1811
|
+
{
|
1812
|
+
tableOption: 'onShowToolbarDropZoneChange',
|
1813
|
+
defaultValue: '',
|
1814
|
+
description: '',
|
1815
|
+
link: '',
|
1816
|
+
linkText: '',
|
1817
|
+
required: false,
|
1818
|
+
source: 'MRT',
|
1819
|
+
type: 'OnChangeFn<boolean>',
|
1820
|
+
},
|
1821
|
+
{
|
1822
|
+
tableOption: 'onSortingChange',
|
1823
|
+
defaultValue: '',
|
1824
|
+
description:
|
1825
|
+
'If provided, this function will be called with an updaterFn when state.sorting changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table.',
|
1826
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/sorting#onsortingchange',
|
1827
|
+
linkText: 'TanStack Table Sorting Docs',
|
1828
|
+
required: false,
|
1829
|
+
source: 'TanStack Table',
|
1830
|
+
type: 'OnChangeFn<SortingState>',
|
1831
|
+
},
|
1832
|
+
{
|
1833
|
+
tableOption: 'pageCount',
|
1834
|
+
defaultValue: '',
|
1835
|
+
description:
|
1836
|
+
'When manually controlling pagination, you should supply a total pageCount value to the table if you know it. If you do not know how many pages there are, you can set this to -1.',
|
1837
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/pagination#pagecount',
|
1838
|
+
linkText: 'TanStack Table Pagination Docs',
|
1839
|
+
required: false,
|
1840
|
+
source: 'TanStack Table',
|
1841
|
+
type: 'number',
|
1842
|
+
},
|
1843
|
+
{
|
1844
|
+
tableOption: 'paginateExpandedRows',
|
1845
|
+
defaultValue: '',
|
1846
|
+
description:
|
1847
|
+
'If true expanded rows will be paginated along with the rest of the table (which means expanded rows may span multiple pages). If false expanded rows will not be considered for pagination (which means expanded rows will always render on their parents page. This also means more rows will be rendered than the set page size)',
|
1848
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/expanding#paginateexpandedrows',
|
1849
|
+
linkText: 'TanStack Table Expanding Docs',
|
1850
|
+
required: false,
|
1851
|
+
source: 'TanStack Table',
|
1852
|
+
type: 'boolean',
|
1853
|
+
},
|
1854
|
+
{
|
1855
|
+
tableOption: 'positionActionsColumn',
|
1856
|
+
defaultValue: '',
|
1857
|
+
description: '',
|
1858
|
+
link: '',
|
1859
|
+
linkText: '',
|
1860
|
+
required: false,
|
1861
|
+
source: 'MRT',
|
1862
|
+
type: "'first' | 'last'",
|
1863
|
+
},
|
1864
|
+
{
|
1865
|
+
tableOption: 'positionCreatingRow',
|
1866
|
+
defaultValue: "'top'",
|
1867
|
+
description:
|
1868
|
+
'Where to render the new blank inserted row when in creating mode. Passing in a number will render the row before the row at that index.',
|
1869
|
+
link: '',
|
1870
|
+
linkText: '',
|
1871
|
+
required: false,
|
1872
|
+
source: 'MRT',
|
1873
|
+
type: "'top' | 'bottom' | number",
|
1874
|
+
},
|
1875
|
+
{
|
1876
|
+
tableOption: 'positionExpandColumn',
|
1877
|
+
defaultValue: "'first'",
|
1878
|
+
description: '',
|
1879
|
+
link: '',
|
1880
|
+
linkText: '',
|
1881
|
+
required: false,
|
1882
|
+
source: 'MRT',
|
1883
|
+
type: "'first' | 'last'",
|
1884
|
+
},
|
1885
|
+
{
|
1886
|
+
tableOption: 'positionGlobalFilter',
|
1887
|
+
defaultValue: "'right'",
|
1888
|
+
description: '',
|
1889
|
+
link: '',
|
1890
|
+
linkText: '',
|
1891
|
+
required: false,
|
1892
|
+
source: 'MRT',
|
1893
|
+
type: "'left' | 'right'",
|
1894
|
+
},
|
1895
|
+
{
|
1896
|
+
tableOption: 'positionPagination',
|
1897
|
+
defaultValue: "'bottom'",
|
1898
|
+
description: '',
|
1899
|
+
link: '',
|
1900
|
+
linkText: '',
|
1901
|
+
required: false,
|
1902
|
+
source: 'MRT',
|
1903
|
+
type: "'bottom' | 'top' | 'both'",
|
1904
|
+
},
|
1905
|
+
{
|
1906
|
+
tableOption: 'positionToolbarAlertBanner',
|
1907
|
+
defaultValue: "'top'",
|
1908
|
+
description: '',
|
1909
|
+
link: '',
|
1910
|
+
linkText: '',
|
1911
|
+
required: false,
|
1912
|
+
source: 'MRT',
|
1913
|
+
type: "'bottom' | 'top' | 'none'",
|
1914
|
+
},
|
1915
|
+
{
|
1916
|
+
tableOption: 'positionToolbarDropZone',
|
1917
|
+
defaultValue: "'top'",
|
1918
|
+
description: '',
|
1919
|
+
link: '',
|
1920
|
+
linkText: '',
|
1921
|
+
required: false,
|
1922
|
+
source: 'MRT',
|
1923
|
+
type: "'bottom' | 'top' | 'both' | 'none'",
|
1924
|
+
},
|
1925
|
+
{
|
1926
|
+
tableOption: 'renderBottomToolbar',
|
1927
|
+
defaultValue: '',
|
1928
|
+
description: '',
|
1929
|
+
link: '',
|
1930
|
+
linkText: '',
|
1931
|
+
required: false,
|
1932
|
+
source: '',
|
1933
|
+
type: 'ReactNode | ({ table }) => ReactNode',
|
1934
|
+
},
|
1935
|
+
{
|
1936
|
+
tableOption: 'renderCaption',
|
1937
|
+
defaultValue: '',
|
1938
|
+
description: '',
|
1939
|
+
link: '',
|
1940
|
+
linkText: '',
|
1941
|
+
required: false,
|
1942
|
+
source: '',
|
1943
|
+
type: 'ReactNode | ({ table }) => ReactNode',
|
1944
|
+
},
|
1945
|
+
{
|
1946
|
+
tableOption: 'renderCellActionMenuItems',
|
1947
|
+
defaultValue: '',
|
1948
|
+
description: '',
|
1949
|
+
link: '',
|
1950
|
+
linkText: '',
|
1951
|
+
required: false,
|
1952
|
+
source: '',
|
1953
|
+
type: '{ cell, closeMenu, column, internalMenuItems, row, staticColumnIndex, staticRowIndex, table }) => ReactNode[]',
|
1954
|
+
},
|
1955
|
+
{
|
1956
|
+
tableOption: 'renderColumnActionsMenuItems',
|
1957
|
+
defaultValue: '',
|
1958
|
+
description: '',
|
1959
|
+
link: '',
|
1960
|
+
linkText: '',
|
1961
|
+
required: false,
|
1962
|
+
source: '',
|
1963
|
+
type: '({ closeMenu, column, internalColumnMenuItems, table }) => ReactNode[]',
|
1964
|
+
},
|
1965
|
+
{
|
1966
|
+
tableOption: 'renderColumnFilterModeMenuItems',
|
1967
|
+
defaultValue: '',
|
1968
|
+
description: '',
|
1969
|
+
link: '',
|
1970
|
+
linkText: '',
|
1971
|
+
required: false,
|
1972
|
+
source: '',
|
1973
|
+
type: '({ column, internalFilterOptions, onSelectFilterMode, table }) => ReactNode[]',
|
1974
|
+
},
|
1975
|
+
{
|
1976
|
+
tableOption: 'renderDetailPanel',
|
1977
|
+
defaultValue: '',
|
1978
|
+
description: '',
|
1979
|
+
link: '',
|
1980
|
+
linkText: '',
|
1981
|
+
required: false,
|
1982
|
+
source: '',
|
1983
|
+
type: '({ row, table }) => ReactNode',
|
1984
|
+
},
|
1985
|
+
{
|
1986
|
+
tableOption: 'renderGlobalFilterModeMenuItems',
|
1987
|
+
defaultValue: '',
|
1988
|
+
description: '',
|
1989
|
+
link: '',
|
1990
|
+
linkText: '',
|
1991
|
+
required: false,
|
1992
|
+
source: '',
|
1993
|
+
type: '({ internalFilterOptions, onSelectFilterMode, table }) => ReactNode[]',
|
1994
|
+
},
|
1995
|
+
{
|
1996
|
+
tableOption: 'renderEmptyRowsFallback',
|
1997
|
+
defaultValue: '',
|
1998
|
+
description: '',
|
1999
|
+
link: '',
|
2000
|
+
linkText: '',
|
2001
|
+
required: false,
|
2002
|
+
source: '',
|
2003
|
+
type: '({ table }) => ReactNode',
|
2004
|
+
},
|
2005
|
+
{
|
2006
|
+
tableOption: 'renderEditRowDialogContent',
|
2007
|
+
defaultValue: '',
|
2008
|
+
description: '',
|
2009
|
+
link: '',
|
2010
|
+
linkText: '',
|
2011
|
+
required: false,
|
2012
|
+
source: '',
|
2013
|
+
type: '({ internalEditComponents, row, table }) => ReactNode',
|
2014
|
+
},
|
2015
|
+
{
|
2016
|
+
tableOption: 'renderCreateRowDialogContent',
|
2017
|
+
defaultValue: '',
|
2018
|
+
description: '',
|
2019
|
+
link: '',
|
2020
|
+
linkText: '',
|
2021
|
+
required: false,
|
2022
|
+
source: '',
|
2023
|
+
type: '({ internalEditComponents, row, table }) => ReactNode',
|
2024
|
+
},
|
2025
|
+
{
|
2026
|
+
tableOption: 'renderRowActionMenuItems',
|
2027
|
+
defaultValue: '',
|
2028
|
+
description: '',
|
2029
|
+
link: '',
|
2030
|
+
linkText: '',
|
2031
|
+
required: false,
|
2032
|
+
source: '',
|
2033
|
+
type: '({ closeMenu, row, table }) => ReactNode[]',
|
2034
|
+
},
|
2035
|
+
{
|
2036
|
+
tableOption: 'renderRowActions',
|
2037
|
+
defaultValue: '',
|
2038
|
+
description: '',
|
2039
|
+
link: '',
|
2040
|
+
linkText: '',
|
2041
|
+
required: false,
|
2042
|
+
source: '',
|
2043
|
+
type: '({ cell, row, table }) => ReactNode',
|
2044
|
+
},
|
2045
|
+
{
|
2046
|
+
tableOption: 'renderBottomToolbarCustomActions',
|
2047
|
+
defaultValue: '',
|
2048
|
+
description: '',
|
2049
|
+
link: '',
|
2050
|
+
linkText: '',
|
2051
|
+
required: false,
|
2052
|
+
source: '',
|
2053
|
+
type: '({ table }) => ReactNode',
|
2054
|
+
},
|
2055
|
+
{
|
2056
|
+
tableOption: 'renderToolbarAlertBannerContent',
|
2057
|
+
defaultValue: '',
|
2058
|
+
description: '',
|
2059
|
+
link: '',
|
2060
|
+
linkText: '',
|
2061
|
+
required: false,
|
2062
|
+
source: '',
|
2063
|
+
type: '({ table, groupedAlert, selectedAlert }) => ReactNode',
|
2064
|
+
},
|
2065
|
+
{
|
2066
|
+
tableOption: 'renderTopToolbar',
|
2067
|
+
defaultValue: '',
|
2068
|
+
description: '',
|
2069
|
+
link: '',
|
2070
|
+
linkText: '',
|
2071
|
+
required: false,
|
2072
|
+
source: '',
|
2073
|
+
type: 'ReactNode | ({ table }) => ReactNode',
|
2074
|
+
},
|
2075
|
+
{
|
2076
|
+
tableOption: 'renderTopToolbarCustomActions',
|
2077
|
+
defaultValue: '',
|
2078
|
+
description: '',
|
2079
|
+
link: '',
|
2080
|
+
linkText: '',
|
2081
|
+
required: false,
|
2082
|
+
source: '',
|
2083
|
+
type: '({ table }) => ReactNode',
|
2084
|
+
},
|
2085
|
+
{
|
2086
|
+
tableOption: 'renderToolbarInternalActions',
|
2087
|
+
defaultValue: '',
|
2088
|
+
description: '',
|
2089
|
+
link: '',
|
2090
|
+
linkText: '',
|
2091
|
+
required: false,
|
2092
|
+
source: '',
|
2093
|
+
type: '({ table}) => ReactNode',
|
2094
|
+
},
|
2095
|
+
{
|
2096
|
+
tableOption: 'rowCount',
|
2097
|
+
defaultValue: '',
|
2098
|
+
description: '',
|
2099
|
+
link: '',
|
2100
|
+
linkText: '',
|
2101
|
+
required: false,
|
2102
|
+
source: '',
|
2103
|
+
type: 'number',
|
2104
|
+
},
|
2105
|
+
{
|
2106
|
+
tableOption: 'rowNumberDisplayMode',
|
2107
|
+
defaultValue: "'original'",
|
2108
|
+
description: '',
|
2109
|
+
link: '',
|
2110
|
+
linkText: '',
|
2111
|
+
required: false,
|
2112
|
+
source: '',
|
2113
|
+
type: "'original' | 'static'",
|
2114
|
+
},
|
2115
|
+
{
|
2116
|
+
tableOption: 'selectAllMode',
|
2117
|
+
defaultValue: "'page'",
|
2118
|
+
description: '',
|
2119
|
+
link: '',
|
2120
|
+
linkText: '',
|
2121
|
+
required: false,
|
2122
|
+
source: '',
|
2123
|
+
type: `'all' | 'page'`,
|
2124
|
+
},
|
2125
|
+
{
|
2126
|
+
tableOption: 'sortDescFirst',
|
2127
|
+
defaultValue: '',
|
2128
|
+
description:
|
2129
|
+
'Set to true for sorting toggles on this column to start in the descending direction.',
|
2130
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/sorting#sortdescfirst',
|
2131
|
+
linkText: 'TanStack Table Sorting Docs',
|
2132
|
+
required: false,
|
2133
|
+
source: 'TanStack Table',
|
2134
|
+
type: 'boolean',
|
2135
|
+
},
|
2136
|
+
{
|
2137
|
+
tableOption: 'sortingFns',
|
2138
|
+
defaultValue: '',
|
2139
|
+
description:
|
2140
|
+
"This option allows you to define custom sorting functions that can be referenced in a column's sortingFn option by their key. Example:",
|
2141
|
+
link: 'https://tanstack.com/table/v8/docs/api/features/sorting#sortingfns',
|
2142
|
+
linkText: 'TanStack Table Sorting Docs',
|
2143
|
+
required: false,
|
2144
|
+
source: 'TanStack Table',
|
2145
|
+
type: 'Record<string, SortingFn>',
|
2146
|
+
},
|
2147
|
+
{
|
2148
|
+
tableOption: 'state',
|
2149
|
+
defaultValue: '',
|
2150
|
+
description: '',
|
2151
|
+
link: '/docs/guides/table-state-management#manage-individual-states-as-needed',
|
2152
|
+
linkText: 'Table State Management Guide',
|
2153
|
+
required: false,
|
2154
|
+
source: 'MRT',
|
2155
|
+
type: 'Partial<MRT_TableState<TData>>',
|
2156
|
+
},
|
2157
|
+
{
|
2158
|
+
tableOption: 'rowVirtualizerOptions',
|
2159
|
+
defaultValue: '',
|
2160
|
+
description: '',
|
2161
|
+
link: '',
|
2162
|
+
linkText: '',
|
2163
|
+
required: false,
|
2164
|
+
source: 'TanStack Table',
|
2165
|
+
type: 'Partial<VirtualizerOptions<HTMLDivElement, HTMLTableRowElement>>',
|
2166
|
+
},
|
2167
|
+
{
|
2168
|
+
tableOption: 'rowVirtualizerInstanceRef',
|
2169
|
+
defaultValue: '',
|
2170
|
+
description: '',
|
2171
|
+
link: '/docs/guides/virtualization',
|
2172
|
+
linkText: '',
|
2173
|
+
required: false,
|
2174
|
+
source: 'MRT',
|
2175
|
+
type: 'MutableRefObject<Virtualizer | null>',
|
2176
|
+
},
|
2177
|
+
];
|