material-react-table-narender 1.0.0

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