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