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,2647 @@
1
+ {
2
+ "name": "material-react-table-example-infinite-scrolling",
3
+ "version": "0.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "material-react-table-example-infinite-scrolling",
9
+ "version": "0.0.0",
10
+ "dependencies": {
11
+ "@emotion/react": "^11.14.0",
12
+ "@emotion/styled": "^11.14.0",
13
+ "@mui/icons-material": "^6.2.0",
14
+ "@mui/material": "^6.2.0",
15
+ "@tanstack/react-query": "^5.62.7",
16
+ "material-react-table": "^3.0.3",
17
+ "react": "^19.0.0",
18
+ "react-dom": "^19.0.0"
19
+ },
20
+ "devDependencies": {
21
+ "@types/react": "^19.0.1",
22
+ "@types/react-dom": "^19.0.2",
23
+ "@vitejs/plugin-react": "^4.3.4",
24
+ "typescript": "^5.7.2",
25
+ "vite": "^6.0.3"
26
+ }
27
+ },
28
+ "node_modules/@ampproject/remapping": {
29
+ "version": "2.3.0",
30
+ "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
31
+ "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
32
+ "dev": true,
33
+ "license": "Apache-2.0",
34
+ "dependencies": {
35
+ "@jridgewell/gen-mapping": "^0.3.5",
36
+ "@jridgewell/trace-mapping": "^0.3.24"
37
+ },
38
+ "engines": {
39
+ "node": ">=6.0.0"
40
+ }
41
+ },
42
+ "node_modules/@babel/code-frame": {
43
+ "version": "7.26.2",
44
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
45
+ "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
46
+ "license": "MIT",
47
+ "dependencies": {
48
+ "@babel/helper-validator-identifier": "^7.25.9",
49
+ "js-tokens": "^4.0.0",
50
+ "picocolors": "^1.0.0"
51
+ },
52
+ "engines": {
53
+ "node": ">=6.9.0"
54
+ }
55
+ },
56
+ "node_modules/@babel/compat-data": {
57
+ "version": "7.26.3",
58
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz",
59
+ "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==",
60
+ "dev": true,
61
+ "license": "MIT",
62
+ "engines": {
63
+ "node": ">=6.9.0"
64
+ }
65
+ },
66
+ "node_modules/@babel/core": {
67
+ "version": "7.26.0",
68
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz",
69
+ "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==",
70
+ "dev": true,
71
+ "license": "MIT",
72
+ "dependencies": {
73
+ "@ampproject/remapping": "^2.2.0",
74
+ "@babel/code-frame": "^7.26.0",
75
+ "@babel/generator": "^7.26.0",
76
+ "@babel/helper-compilation-targets": "^7.25.9",
77
+ "@babel/helper-module-transforms": "^7.26.0",
78
+ "@babel/helpers": "^7.26.0",
79
+ "@babel/parser": "^7.26.0",
80
+ "@babel/template": "^7.25.9",
81
+ "@babel/traverse": "^7.25.9",
82
+ "@babel/types": "^7.26.0",
83
+ "convert-source-map": "^2.0.0",
84
+ "debug": "^4.1.0",
85
+ "gensync": "^1.0.0-beta.2",
86
+ "json5": "^2.2.3",
87
+ "semver": "^6.3.1"
88
+ },
89
+ "engines": {
90
+ "node": ">=6.9.0"
91
+ },
92
+ "funding": {
93
+ "type": "opencollective",
94
+ "url": "https://opencollective.com/babel"
95
+ }
96
+ },
97
+ "node_modules/@babel/core/node_modules/convert-source-map": {
98
+ "version": "2.0.0",
99
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
100
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
101
+ "dev": true,
102
+ "license": "MIT"
103
+ },
104
+ "node_modules/@babel/generator": {
105
+ "version": "7.26.3",
106
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz",
107
+ "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==",
108
+ "license": "MIT",
109
+ "dependencies": {
110
+ "@babel/parser": "^7.26.3",
111
+ "@babel/types": "^7.26.3",
112
+ "@jridgewell/gen-mapping": "^0.3.5",
113
+ "@jridgewell/trace-mapping": "^0.3.25",
114
+ "jsesc": "^3.0.2"
115
+ },
116
+ "engines": {
117
+ "node": ">=6.9.0"
118
+ }
119
+ },
120
+ "node_modules/@babel/helper-compilation-targets": {
121
+ "version": "7.25.9",
122
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz",
123
+ "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==",
124
+ "dev": true,
125
+ "license": "MIT",
126
+ "dependencies": {
127
+ "@babel/compat-data": "^7.25.9",
128
+ "@babel/helper-validator-option": "^7.25.9",
129
+ "browserslist": "^4.24.0",
130
+ "lru-cache": "^5.1.1",
131
+ "semver": "^6.3.1"
132
+ },
133
+ "engines": {
134
+ "node": ">=6.9.0"
135
+ }
136
+ },
137
+ "node_modules/@babel/helper-module-imports": {
138
+ "version": "7.25.9",
139
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
140
+ "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
141
+ "license": "MIT",
142
+ "dependencies": {
143
+ "@babel/traverse": "^7.25.9",
144
+ "@babel/types": "^7.25.9"
145
+ },
146
+ "engines": {
147
+ "node": ">=6.9.0"
148
+ }
149
+ },
150
+ "node_modules/@babel/helper-module-transforms": {
151
+ "version": "7.26.0",
152
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
153
+ "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
154
+ "dev": true,
155
+ "license": "MIT",
156
+ "dependencies": {
157
+ "@babel/helper-module-imports": "^7.25.9",
158
+ "@babel/helper-validator-identifier": "^7.25.9",
159
+ "@babel/traverse": "^7.25.9"
160
+ },
161
+ "engines": {
162
+ "node": ">=6.9.0"
163
+ },
164
+ "peerDependencies": {
165
+ "@babel/core": "^7.0.0"
166
+ }
167
+ },
168
+ "node_modules/@babel/helper-plugin-utils": {
169
+ "version": "7.25.9",
170
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz",
171
+ "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==",
172
+ "dev": true,
173
+ "license": "MIT",
174
+ "engines": {
175
+ "node": ">=6.9.0"
176
+ }
177
+ },
178
+ "node_modules/@babel/helper-string-parser": {
179
+ "version": "7.25.9",
180
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
181
+ "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
182
+ "license": "MIT",
183
+ "engines": {
184
+ "node": ">=6.9.0"
185
+ }
186
+ },
187
+ "node_modules/@babel/helper-validator-identifier": {
188
+ "version": "7.25.9",
189
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
190
+ "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
191
+ "license": "MIT",
192
+ "engines": {
193
+ "node": ">=6.9.0"
194
+ }
195
+ },
196
+ "node_modules/@babel/helper-validator-option": {
197
+ "version": "7.25.9",
198
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
199
+ "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
200
+ "dev": true,
201
+ "license": "MIT",
202
+ "engines": {
203
+ "node": ">=6.9.0"
204
+ }
205
+ },
206
+ "node_modules/@babel/helpers": {
207
+ "version": "7.26.0",
208
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz",
209
+ "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==",
210
+ "dev": true,
211
+ "license": "MIT",
212
+ "dependencies": {
213
+ "@babel/template": "^7.25.9",
214
+ "@babel/types": "^7.26.0"
215
+ },
216
+ "engines": {
217
+ "node": ">=6.9.0"
218
+ }
219
+ },
220
+ "node_modules/@babel/parser": {
221
+ "version": "7.26.3",
222
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz",
223
+ "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
224
+ "license": "MIT",
225
+ "dependencies": {
226
+ "@babel/types": "^7.26.3"
227
+ },
228
+ "bin": {
229
+ "parser": "bin/babel-parser.js"
230
+ },
231
+ "engines": {
232
+ "node": ">=6.0.0"
233
+ }
234
+ },
235
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
236
+ "version": "7.25.9",
237
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz",
238
+ "integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==",
239
+ "dev": true,
240
+ "license": "MIT",
241
+ "dependencies": {
242
+ "@babel/helper-plugin-utils": "^7.25.9"
243
+ },
244
+ "engines": {
245
+ "node": ">=6.9.0"
246
+ },
247
+ "peerDependencies": {
248
+ "@babel/core": "^7.0.0-0"
249
+ }
250
+ },
251
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
252
+ "version": "7.25.9",
253
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz",
254
+ "integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==",
255
+ "dev": true,
256
+ "license": "MIT",
257
+ "dependencies": {
258
+ "@babel/helper-plugin-utils": "^7.25.9"
259
+ },
260
+ "engines": {
261
+ "node": ">=6.9.0"
262
+ },
263
+ "peerDependencies": {
264
+ "@babel/core": "^7.0.0-0"
265
+ }
266
+ },
267
+ "node_modules/@babel/runtime": {
268
+ "version": "7.26.0",
269
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
270
+ "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
271
+ "license": "MIT",
272
+ "dependencies": {
273
+ "regenerator-runtime": "^0.14.0"
274
+ },
275
+ "engines": {
276
+ "node": ">=6.9.0"
277
+ }
278
+ },
279
+ "node_modules/@babel/template": {
280
+ "version": "7.25.9",
281
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz",
282
+ "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
283
+ "license": "MIT",
284
+ "dependencies": {
285
+ "@babel/code-frame": "^7.25.9",
286
+ "@babel/parser": "^7.25.9",
287
+ "@babel/types": "^7.25.9"
288
+ },
289
+ "engines": {
290
+ "node": ">=6.9.0"
291
+ }
292
+ },
293
+ "node_modules/@babel/traverse": {
294
+ "version": "7.26.4",
295
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz",
296
+ "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==",
297
+ "license": "MIT",
298
+ "dependencies": {
299
+ "@babel/code-frame": "^7.26.2",
300
+ "@babel/generator": "^7.26.3",
301
+ "@babel/parser": "^7.26.3",
302
+ "@babel/template": "^7.25.9",
303
+ "@babel/types": "^7.26.3",
304
+ "debug": "^4.3.1",
305
+ "globals": "^11.1.0"
306
+ },
307
+ "engines": {
308
+ "node": ">=6.9.0"
309
+ }
310
+ },
311
+ "node_modules/@babel/types": {
312
+ "version": "7.26.3",
313
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz",
314
+ "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
315
+ "license": "MIT",
316
+ "dependencies": {
317
+ "@babel/helper-string-parser": "^7.25.9",
318
+ "@babel/helper-validator-identifier": "^7.25.9"
319
+ },
320
+ "engines": {
321
+ "node": ">=6.9.0"
322
+ }
323
+ },
324
+ "node_modules/@emotion/babel-plugin": {
325
+ "version": "11.13.5",
326
+ "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz",
327
+ "integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==",
328
+ "license": "MIT",
329
+ "dependencies": {
330
+ "@babel/helper-module-imports": "^7.16.7",
331
+ "@babel/runtime": "^7.18.3",
332
+ "@emotion/hash": "^0.9.2",
333
+ "@emotion/memoize": "^0.9.0",
334
+ "@emotion/serialize": "^1.3.3",
335
+ "babel-plugin-macros": "^3.1.0",
336
+ "convert-source-map": "^1.5.0",
337
+ "escape-string-regexp": "^4.0.0",
338
+ "find-root": "^1.1.0",
339
+ "source-map": "^0.5.7",
340
+ "stylis": "4.2.0"
341
+ }
342
+ },
343
+ "node_modules/@emotion/cache": {
344
+ "version": "11.14.0",
345
+ "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz",
346
+ "integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==",
347
+ "license": "MIT",
348
+ "dependencies": {
349
+ "@emotion/memoize": "^0.9.0",
350
+ "@emotion/sheet": "^1.4.0",
351
+ "@emotion/utils": "^1.4.2",
352
+ "@emotion/weak-memoize": "^0.4.0",
353
+ "stylis": "4.2.0"
354
+ }
355
+ },
356
+ "node_modules/@emotion/hash": {
357
+ "version": "0.9.2",
358
+ "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
359
+ "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==",
360
+ "license": "MIT"
361
+ },
362
+ "node_modules/@emotion/is-prop-valid": {
363
+ "version": "1.3.0",
364
+ "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.0.tgz",
365
+ "integrity": "sha512-SHetuSLvJDzuNbOdtPVbq6yMMMlLoW5Q94uDqJZqy50gcmAjxFkVqmzqSGEFq9gT2iMuIeKV1PXVWmvUhuZLlQ==",
366
+ "dependencies": {
367
+ "@emotion/memoize": "^0.9.0"
368
+ }
369
+ },
370
+ "node_modules/@emotion/memoize": {
371
+ "version": "0.9.0",
372
+ "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz",
373
+ "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ=="
374
+ },
375
+ "node_modules/@emotion/react": {
376
+ "version": "11.14.0",
377
+ "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
378
+ "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
379
+ "license": "MIT",
380
+ "dependencies": {
381
+ "@babel/runtime": "^7.18.3",
382
+ "@emotion/babel-plugin": "^11.13.5",
383
+ "@emotion/cache": "^11.14.0",
384
+ "@emotion/serialize": "^1.3.3",
385
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
386
+ "@emotion/utils": "^1.4.2",
387
+ "@emotion/weak-memoize": "^0.4.0",
388
+ "hoist-non-react-statics": "^3.3.1"
389
+ },
390
+ "peerDependencies": {
391
+ "react": ">=16.8.0"
392
+ },
393
+ "peerDependenciesMeta": {
394
+ "@types/react": {
395
+ "optional": true
396
+ }
397
+ }
398
+ },
399
+ "node_modules/@emotion/serialize": {
400
+ "version": "1.3.3",
401
+ "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz",
402
+ "integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==",
403
+ "license": "MIT",
404
+ "dependencies": {
405
+ "@emotion/hash": "^0.9.2",
406
+ "@emotion/memoize": "^0.9.0",
407
+ "@emotion/unitless": "^0.10.0",
408
+ "@emotion/utils": "^1.4.2",
409
+ "csstype": "^3.0.2"
410
+ }
411
+ },
412
+ "node_modules/@emotion/sheet": {
413
+ "version": "1.4.0",
414
+ "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz",
415
+ "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg=="
416
+ },
417
+ "node_modules/@emotion/styled": {
418
+ "version": "11.14.0",
419
+ "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.0.tgz",
420
+ "integrity": "sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA==",
421
+ "license": "MIT",
422
+ "dependencies": {
423
+ "@babel/runtime": "^7.18.3",
424
+ "@emotion/babel-plugin": "^11.13.5",
425
+ "@emotion/is-prop-valid": "^1.3.0",
426
+ "@emotion/serialize": "^1.3.3",
427
+ "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
428
+ "@emotion/utils": "^1.4.2"
429
+ },
430
+ "peerDependencies": {
431
+ "@emotion/react": "^11.0.0-rc.0",
432
+ "react": ">=16.8.0"
433
+ },
434
+ "peerDependenciesMeta": {
435
+ "@types/react": {
436
+ "optional": true
437
+ }
438
+ }
439
+ },
440
+ "node_modules/@emotion/unitless": {
441
+ "version": "0.10.0",
442
+ "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz",
443
+ "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==",
444
+ "license": "MIT"
445
+ },
446
+ "node_modules/@emotion/use-insertion-effect-with-fallbacks": {
447
+ "version": "1.2.0",
448
+ "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz",
449
+ "integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==",
450
+ "license": "MIT",
451
+ "peerDependencies": {
452
+ "react": ">=16.8.0"
453
+ }
454
+ },
455
+ "node_modules/@emotion/utils": {
456
+ "version": "1.4.2",
457
+ "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz",
458
+ "integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==",
459
+ "license": "MIT"
460
+ },
461
+ "node_modules/@emotion/weak-memoize": {
462
+ "version": "0.4.0",
463
+ "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz",
464
+ "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg=="
465
+ },
466
+ "node_modules/@esbuild/aix-ppc64": {
467
+ "version": "0.24.0",
468
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.0.tgz",
469
+ "integrity": "sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==",
470
+ "cpu": [
471
+ "ppc64"
472
+ ],
473
+ "dev": true,
474
+ "license": "MIT",
475
+ "optional": true,
476
+ "os": [
477
+ "aix"
478
+ ],
479
+ "engines": {
480
+ "node": ">=18"
481
+ }
482
+ },
483
+ "node_modules/@esbuild/android-arm": {
484
+ "version": "0.24.0",
485
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.0.tgz",
486
+ "integrity": "sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==",
487
+ "cpu": [
488
+ "arm"
489
+ ],
490
+ "dev": true,
491
+ "license": "MIT",
492
+ "optional": true,
493
+ "os": [
494
+ "android"
495
+ ],
496
+ "engines": {
497
+ "node": ">=18"
498
+ }
499
+ },
500
+ "node_modules/@esbuild/android-arm64": {
501
+ "version": "0.24.0",
502
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.0.tgz",
503
+ "integrity": "sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==",
504
+ "cpu": [
505
+ "arm64"
506
+ ],
507
+ "dev": true,
508
+ "license": "MIT",
509
+ "optional": true,
510
+ "os": [
511
+ "android"
512
+ ],
513
+ "engines": {
514
+ "node": ">=18"
515
+ }
516
+ },
517
+ "node_modules/@esbuild/android-x64": {
518
+ "version": "0.24.0",
519
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.0.tgz",
520
+ "integrity": "sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==",
521
+ "cpu": [
522
+ "x64"
523
+ ],
524
+ "dev": true,
525
+ "license": "MIT",
526
+ "optional": true,
527
+ "os": [
528
+ "android"
529
+ ],
530
+ "engines": {
531
+ "node": ">=18"
532
+ }
533
+ },
534
+ "node_modules/@esbuild/darwin-arm64": {
535
+ "version": "0.24.0",
536
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.0.tgz",
537
+ "integrity": "sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==",
538
+ "cpu": [
539
+ "arm64"
540
+ ],
541
+ "dev": true,
542
+ "license": "MIT",
543
+ "optional": true,
544
+ "os": [
545
+ "darwin"
546
+ ],
547
+ "engines": {
548
+ "node": ">=18"
549
+ }
550
+ },
551
+ "node_modules/@esbuild/darwin-x64": {
552
+ "version": "0.24.0",
553
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.0.tgz",
554
+ "integrity": "sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==",
555
+ "cpu": [
556
+ "x64"
557
+ ],
558
+ "dev": true,
559
+ "license": "MIT",
560
+ "optional": true,
561
+ "os": [
562
+ "darwin"
563
+ ],
564
+ "engines": {
565
+ "node": ">=18"
566
+ }
567
+ },
568
+ "node_modules/@esbuild/freebsd-arm64": {
569
+ "version": "0.24.0",
570
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.0.tgz",
571
+ "integrity": "sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==",
572
+ "cpu": [
573
+ "arm64"
574
+ ],
575
+ "dev": true,
576
+ "license": "MIT",
577
+ "optional": true,
578
+ "os": [
579
+ "freebsd"
580
+ ],
581
+ "engines": {
582
+ "node": ">=18"
583
+ }
584
+ },
585
+ "node_modules/@esbuild/freebsd-x64": {
586
+ "version": "0.24.0",
587
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.0.tgz",
588
+ "integrity": "sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==",
589
+ "cpu": [
590
+ "x64"
591
+ ],
592
+ "dev": true,
593
+ "license": "MIT",
594
+ "optional": true,
595
+ "os": [
596
+ "freebsd"
597
+ ],
598
+ "engines": {
599
+ "node": ">=18"
600
+ }
601
+ },
602
+ "node_modules/@esbuild/linux-arm": {
603
+ "version": "0.24.0",
604
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.0.tgz",
605
+ "integrity": "sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==",
606
+ "cpu": [
607
+ "arm"
608
+ ],
609
+ "dev": true,
610
+ "license": "MIT",
611
+ "optional": true,
612
+ "os": [
613
+ "linux"
614
+ ],
615
+ "engines": {
616
+ "node": ">=18"
617
+ }
618
+ },
619
+ "node_modules/@esbuild/linux-arm64": {
620
+ "version": "0.24.0",
621
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.0.tgz",
622
+ "integrity": "sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==",
623
+ "cpu": [
624
+ "arm64"
625
+ ],
626
+ "dev": true,
627
+ "license": "MIT",
628
+ "optional": true,
629
+ "os": [
630
+ "linux"
631
+ ],
632
+ "engines": {
633
+ "node": ">=18"
634
+ }
635
+ },
636
+ "node_modules/@esbuild/linux-ia32": {
637
+ "version": "0.24.0",
638
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.0.tgz",
639
+ "integrity": "sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==",
640
+ "cpu": [
641
+ "ia32"
642
+ ],
643
+ "dev": true,
644
+ "license": "MIT",
645
+ "optional": true,
646
+ "os": [
647
+ "linux"
648
+ ],
649
+ "engines": {
650
+ "node": ">=18"
651
+ }
652
+ },
653
+ "node_modules/@esbuild/linux-loong64": {
654
+ "version": "0.24.0",
655
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.0.tgz",
656
+ "integrity": "sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==",
657
+ "cpu": [
658
+ "loong64"
659
+ ],
660
+ "dev": true,
661
+ "license": "MIT",
662
+ "optional": true,
663
+ "os": [
664
+ "linux"
665
+ ],
666
+ "engines": {
667
+ "node": ">=18"
668
+ }
669
+ },
670
+ "node_modules/@esbuild/linux-mips64el": {
671
+ "version": "0.24.0",
672
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.0.tgz",
673
+ "integrity": "sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==",
674
+ "cpu": [
675
+ "mips64el"
676
+ ],
677
+ "dev": true,
678
+ "license": "MIT",
679
+ "optional": true,
680
+ "os": [
681
+ "linux"
682
+ ],
683
+ "engines": {
684
+ "node": ">=18"
685
+ }
686
+ },
687
+ "node_modules/@esbuild/linux-ppc64": {
688
+ "version": "0.24.0",
689
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.0.tgz",
690
+ "integrity": "sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==",
691
+ "cpu": [
692
+ "ppc64"
693
+ ],
694
+ "dev": true,
695
+ "license": "MIT",
696
+ "optional": true,
697
+ "os": [
698
+ "linux"
699
+ ],
700
+ "engines": {
701
+ "node": ">=18"
702
+ }
703
+ },
704
+ "node_modules/@esbuild/linux-riscv64": {
705
+ "version": "0.24.0",
706
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.0.tgz",
707
+ "integrity": "sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==",
708
+ "cpu": [
709
+ "riscv64"
710
+ ],
711
+ "dev": true,
712
+ "license": "MIT",
713
+ "optional": true,
714
+ "os": [
715
+ "linux"
716
+ ],
717
+ "engines": {
718
+ "node": ">=18"
719
+ }
720
+ },
721
+ "node_modules/@esbuild/linux-s390x": {
722
+ "version": "0.24.0",
723
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.0.tgz",
724
+ "integrity": "sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==",
725
+ "cpu": [
726
+ "s390x"
727
+ ],
728
+ "dev": true,
729
+ "license": "MIT",
730
+ "optional": true,
731
+ "os": [
732
+ "linux"
733
+ ],
734
+ "engines": {
735
+ "node": ">=18"
736
+ }
737
+ },
738
+ "node_modules/@esbuild/linux-x64": {
739
+ "version": "0.24.0",
740
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.0.tgz",
741
+ "integrity": "sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==",
742
+ "cpu": [
743
+ "x64"
744
+ ],
745
+ "dev": true,
746
+ "license": "MIT",
747
+ "optional": true,
748
+ "os": [
749
+ "linux"
750
+ ],
751
+ "engines": {
752
+ "node": ">=18"
753
+ }
754
+ },
755
+ "node_modules/@esbuild/netbsd-x64": {
756
+ "version": "0.24.0",
757
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.0.tgz",
758
+ "integrity": "sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==",
759
+ "cpu": [
760
+ "x64"
761
+ ],
762
+ "dev": true,
763
+ "license": "MIT",
764
+ "optional": true,
765
+ "os": [
766
+ "netbsd"
767
+ ],
768
+ "engines": {
769
+ "node": ">=18"
770
+ }
771
+ },
772
+ "node_modules/@esbuild/openbsd-arm64": {
773
+ "version": "0.24.0",
774
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.0.tgz",
775
+ "integrity": "sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==",
776
+ "cpu": [
777
+ "arm64"
778
+ ],
779
+ "dev": true,
780
+ "license": "MIT",
781
+ "optional": true,
782
+ "os": [
783
+ "openbsd"
784
+ ],
785
+ "engines": {
786
+ "node": ">=18"
787
+ }
788
+ },
789
+ "node_modules/@esbuild/openbsd-x64": {
790
+ "version": "0.24.0",
791
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.0.tgz",
792
+ "integrity": "sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==",
793
+ "cpu": [
794
+ "x64"
795
+ ],
796
+ "dev": true,
797
+ "license": "MIT",
798
+ "optional": true,
799
+ "os": [
800
+ "openbsd"
801
+ ],
802
+ "engines": {
803
+ "node": ">=18"
804
+ }
805
+ },
806
+ "node_modules/@esbuild/sunos-x64": {
807
+ "version": "0.24.0",
808
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.0.tgz",
809
+ "integrity": "sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==",
810
+ "cpu": [
811
+ "x64"
812
+ ],
813
+ "dev": true,
814
+ "license": "MIT",
815
+ "optional": true,
816
+ "os": [
817
+ "sunos"
818
+ ],
819
+ "engines": {
820
+ "node": ">=18"
821
+ }
822
+ },
823
+ "node_modules/@esbuild/win32-arm64": {
824
+ "version": "0.24.0",
825
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.0.tgz",
826
+ "integrity": "sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==",
827
+ "cpu": [
828
+ "arm64"
829
+ ],
830
+ "dev": true,
831
+ "license": "MIT",
832
+ "optional": true,
833
+ "os": [
834
+ "win32"
835
+ ],
836
+ "engines": {
837
+ "node": ">=18"
838
+ }
839
+ },
840
+ "node_modules/@esbuild/win32-ia32": {
841
+ "version": "0.24.0",
842
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.0.tgz",
843
+ "integrity": "sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==",
844
+ "cpu": [
845
+ "ia32"
846
+ ],
847
+ "dev": true,
848
+ "license": "MIT",
849
+ "optional": true,
850
+ "os": [
851
+ "win32"
852
+ ],
853
+ "engines": {
854
+ "node": ">=18"
855
+ }
856
+ },
857
+ "node_modules/@esbuild/win32-x64": {
858
+ "version": "0.24.0",
859
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.0.tgz",
860
+ "integrity": "sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==",
861
+ "cpu": [
862
+ "x64"
863
+ ],
864
+ "dev": true,
865
+ "license": "MIT",
866
+ "optional": true,
867
+ "os": [
868
+ "win32"
869
+ ],
870
+ "engines": {
871
+ "node": ">=18"
872
+ }
873
+ },
874
+ "node_modules/@jridgewell/gen-mapping": {
875
+ "version": "0.3.8",
876
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
877
+ "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
878
+ "license": "MIT",
879
+ "dependencies": {
880
+ "@jridgewell/set-array": "^1.2.1",
881
+ "@jridgewell/sourcemap-codec": "^1.4.10",
882
+ "@jridgewell/trace-mapping": "^0.3.24"
883
+ },
884
+ "engines": {
885
+ "node": ">=6.0.0"
886
+ }
887
+ },
888
+ "node_modules/@jridgewell/resolve-uri": {
889
+ "version": "3.1.2",
890
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
891
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
892
+ "license": "MIT",
893
+ "engines": {
894
+ "node": ">=6.0.0"
895
+ }
896
+ },
897
+ "node_modules/@jridgewell/set-array": {
898
+ "version": "1.2.1",
899
+ "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
900
+ "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
901
+ "license": "MIT",
902
+ "engines": {
903
+ "node": ">=6.0.0"
904
+ }
905
+ },
906
+ "node_modules/@jridgewell/sourcemap-codec": {
907
+ "version": "1.5.0",
908
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
909
+ "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
910
+ "license": "MIT"
911
+ },
912
+ "node_modules/@jridgewell/trace-mapping": {
913
+ "version": "0.3.25",
914
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
915
+ "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
916
+ "license": "MIT",
917
+ "dependencies": {
918
+ "@jridgewell/resolve-uri": "^3.1.0",
919
+ "@jridgewell/sourcemap-codec": "^1.4.14"
920
+ }
921
+ },
922
+ "node_modules/@mui/core-downloads-tracker": {
923
+ "version": "6.2.0",
924
+ "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-6.2.0.tgz",
925
+ "integrity": "sha512-Nn5PSkUqbDrvezpiiiYZiAbX4SFEiy3CbikUL6pWOXEUsq+L1j50OOyyUIHpaX2Hr+5V5UxTh+fPeC4nsGNhdw==",
926
+ "license": "MIT",
927
+ "funding": {
928
+ "type": "opencollective",
929
+ "url": "https://opencollective.com/mui-org"
930
+ }
931
+ },
932
+ "node_modules/@mui/icons-material": {
933
+ "version": "6.2.0",
934
+ "resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-6.2.0.tgz",
935
+ "integrity": "sha512-WR1EEhGOSvxAsoTSzWZBlrWFjul8wziDrII4rC3PvMBHhBYBqEc2n/0aamfFbwkH5EiYb96aqc6kYY6tB310Sw==",
936
+ "license": "MIT",
937
+ "dependencies": {
938
+ "@babel/runtime": "^7.26.0"
939
+ },
940
+ "engines": {
941
+ "node": ">=14.0.0"
942
+ },
943
+ "funding": {
944
+ "type": "opencollective",
945
+ "url": "https://opencollective.com/mui-org"
946
+ },
947
+ "peerDependencies": {
948
+ "@mui/material": "^6.2.0",
949
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
950
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
951
+ },
952
+ "peerDependenciesMeta": {
953
+ "@types/react": {
954
+ "optional": true
955
+ }
956
+ }
957
+ },
958
+ "node_modules/@mui/material": {
959
+ "version": "6.2.0",
960
+ "resolved": "https://registry.npmjs.org/@mui/material/-/material-6.2.0.tgz",
961
+ "integrity": "sha512-7FXXUPIyYzP02a7GvqwJ7ocmdP+FkvLvmy/uxG1TDmTlsr8nEClQp75uxiVznJqAY/jJy4d+Rj/fNWNxwidrYQ==",
962
+ "license": "MIT",
963
+ "dependencies": {
964
+ "@babel/runtime": "^7.26.0",
965
+ "@mui/core-downloads-tracker": "^6.2.0",
966
+ "@mui/system": "^6.2.0",
967
+ "@mui/types": "^7.2.19",
968
+ "@mui/utils": "^6.2.0",
969
+ "@popperjs/core": "^2.11.8",
970
+ "@types/react-transition-group": "^4.4.11",
971
+ "clsx": "^2.1.1",
972
+ "csstype": "^3.1.3",
973
+ "prop-types": "^15.8.1",
974
+ "react-is": "^19.0.0",
975
+ "react-transition-group": "^4.4.5"
976
+ },
977
+ "engines": {
978
+ "node": ">=14.0.0"
979
+ },
980
+ "funding": {
981
+ "type": "opencollective",
982
+ "url": "https://opencollective.com/mui-org"
983
+ },
984
+ "peerDependencies": {
985
+ "@emotion/react": "^11.5.0",
986
+ "@emotion/styled": "^11.3.0",
987
+ "@mui/material-pigment-css": "^6.2.0",
988
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
989
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0",
990
+ "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
991
+ },
992
+ "peerDependenciesMeta": {
993
+ "@emotion/react": {
994
+ "optional": true
995
+ },
996
+ "@emotion/styled": {
997
+ "optional": true
998
+ },
999
+ "@mui/material-pigment-css": {
1000
+ "optional": true
1001
+ },
1002
+ "@types/react": {
1003
+ "optional": true
1004
+ }
1005
+ }
1006
+ },
1007
+ "node_modules/@mui/material/node_modules/react-is": {
1008
+ "version": "19.0.0",
1009
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.0.0.tgz",
1010
+ "integrity": "sha512-H91OHcwjZsbq3ClIDHMzBShc1rotbfACdWENsmEf0IFvZ3FgGPtdHMcsv45bQ1hAbgdfiA8SnxTKfDS+x/8m2g==",
1011
+ "license": "MIT"
1012
+ },
1013
+ "node_modules/@mui/private-theming": {
1014
+ "version": "6.2.0",
1015
+ "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-6.2.0.tgz",
1016
+ "integrity": "sha512-lYd2MrVddhentF1d/cMXKnwlDjr/shbO3A2eGq22PCYUoZaqtAGZMc0U86KnJ/Sh5YzNYePqTOaaowAN8Qea8A==",
1017
+ "license": "MIT",
1018
+ "dependencies": {
1019
+ "@babel/runtime": "^7.26.0",
1020
+ "@mui/utils": "^6.2.0",
1021
+ "prop-types": "^15.8.1"
1022
+ },
1023
+ "engines": {
1024
+ "node": ">=14.0.0"
1025
+ },
1026
+ "funding": {
1027
+ "type": "opencollective",
1028
+ "url": "https://opencollective.com/mui-org"
1029
+ },
1030
+ "peerDependencies": {
1031
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
1032
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1033
+ },
1034
+ "peerDependenciesMeta": {
1035
+ "@types/react": {
1036
+ "optional": true
1037
+ }
1038
+ }
1039
+ },
1040
+ "node_modules/@mui/styled-engine": {
1041
+ "version": "6.2.0",
1042
+ "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-6.2.0.tgz",
1043
+ "integrity": "sha512-rV4YCu6kcCjMnHFXU/tQcL6XfYVfFVR8n3ZVNGnk2rpXnt/ctOPJsF+eUQuhkHciueLVKpI06+umr1FxWWhVmQ==",
1044
+ "license": "MIT",
1045
+ "dependencies": {
1046
+ "@babel/runtime": "^7.26.0",
1047
+ "@emotion/cache": "^11.13.5",
1048
+ "@emotion/serialize": "^1.3.3",
1049
+ "@emotion/sheet": "^1.4.0",
1050
+ "csstype": "^3.1.3",
1051
+ "prop-types": "^15.8.1"
1052
+ },
1053
+ "engines": {
1054
+ "node": ">=14.0.0"
1055
+ },
1056
+ "funding": {
1057
+ "type": "opencollective",
1058
+ "url": "https://opencollective.com/mui-org"
1059
+ },
1060
+ "peerDependencies": {
1061
+ "@emotion/react": "^11.4.1",
1062
+ "@emotion/styled": "^11.3.0",
1063
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1064
+ },
1065
+ "peerDependenciesMeta": {
1066
+ "@emotion/react": {
1067
+ "optional": true
1068
+ },
1069
+ "@emotion/styled": {
1070
+ "optional": true
1071
+ }
1072
+ }
1073
+ },
1074
+ "node_modules/@mui/system": {
1075
+ "version": "6.2.0",
1076
+ "resolved": "https://registry.npmjs.org/@mui/system/-/system-6.2.0.tgz",
1077
+ "integrity": "sha512-DCeqev9Cd4f4pm3O1lqSGW/DIHHBG6ZpqMX9iIAvN4asYv+pPWv2/lKov9kWk5XThhxFnGSv93SRNE1kNRRg5Q==",
1078
+ "license": "MIT",
1079
+ "dependencies": {
1080
+ "@babel/runtime": "^7.26.0",
1081
+ "@mui/private-theming": "^6.2.0",
1082
+ "@mui/styled-engine": "^6.2.0",
1083
+ "@mui/types": "^7.2.19",
1084
+ "@mui/utils": "^6.2.0",
1085
+ "clsx": "^2.1.1",
1086
+ "csstype": "^3.1.3",
1087
+ "prop-types": "^15.8.1"
1088
+ },
1089
+ "engines": {
1090
+ "node": ">=14.0.0"
1091
+ },
1092
+ "funding": {
1093
+ "type": "opencollective",
1094
+ "url": "https://opencollective.com/mui-org"
1095
+ },
1096
+ "peerDependencies": {
1097
+ "@emotion/react": "^11.5.0",
1098
+ "@emotion/styled": "^11.3.0",
1099
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
1100
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1101
+ },
1102
+ "peerDependenciesMeta": {
1103
+ "@emotion/react": {
1104
+ "optional": true
1105
+ },
1106
+ "@emotion/styled": {
1107
+ "optional": true
1108
+ },
1109
+ "@types/react": {
1110
+ "optional": true
1111
+ }
1112
+ }
1113
+ },
1114
+ "node_modules/@mui/types": {
1115
+ "version": "7.2.19",
1116
+ "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.19.tgz",
1117
+ "integrity": "sha512-6XpZEM/Q3epK9RN8ENoXuygnqUQxE+siN/6rGRi2iwJPgBUR25mphYQ9ZI87plGh58YoZ5pp40bFvKYOCDJ3tA==",
1118
+ "license": "MIT",
1119
+ "peerDependencies": {
1120
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1121
+ },
1122
+ "peerDependenciesMeta": {
1123
+ "@types/react": {
1124
+ "optional": true
1125
+ }
1126
+ }
1127
+ },
1128
+ "node_modules/@mui/utils": {
1129
+ "version": "6.2.0",
1130
+ "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-6.2.0.tgz",
1131
+ "integrity": "sha512-77CaFJi+OIi2SjbPwCis8z5DXvE0dfx9hBz5FguZHt1VYFlWEPCWTHcMsQCahSErnfik5ebLsYK8+D+nsjGVfw==",
1132
+ "license": "MIT",
1133
+ "dependencies": {
1134
+ "@babel/runtime": "^7.26.0",
1135
+ "@mui/types": "^7.2.19",
1136
+ "@types/prop-types": "^15.7.14",
1137
+ "clsx": "^2.1.1",
1138
+ "prop-types": "^15.8.1",
1139
+ "react-is": "^19.0.0"
1140
+ },
1141
+ "engines": {
1142
+ "node": ">=14.0.0"
1143
+ },
1144
+ "funding": {
1145
+ "type": "opencollective",
1146
+ "url": "https://opencollective.com/mui-org"
1147
+ },
1148
+ "peerDependencies": {
1149
+ "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
1150
+ "react": "^17.0.0 || ^18.0.0 || ^19.0.0"
1151
+ },
1152
+ "peerDependenciesMeta": {
1153
+ "@types/react": {
1154
+ "optional": true
1155
+ }
1156
+ }
1157
+ },
1158
+ "node_modules/@mui/utils/node_modules/react-is": {
1159
+ "version": "19.0.0",
1160
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.0.0.tgz",
1161
+ "integrity": "sha512-H91OHcwjZsbq3ClIDHMzBShc1rotbfACdWENsmEf0IFvZ3FgGPtdHMcsv45bQ1hAbgdfiA8SnxTKfDS+x/8m2g==",
1162
+ "license": "MIT"
1163
+ },
1164
+ "node_modules/@mui/x-date-pickers": {
1165
+ "version": "7.15.0",
1166
+ "resolved": "https://registry.npmjs.org/@mui/x-date-pickers/-/x-date-pickers-7.15.0.tgz",
1167
+ "integrity": "sha512-YQEQICNxUEFYp/I/yP58cqihA8yhXaXSNZ1/N0JANu2IlCwoJ4Jzi+S0s4RN7RghpiDyoSMFijROBC5HfpTjiw==",
1168
+ "peer": true,
1169
+ "dependencies": {
1170
+ "@babel/runtime": "^7.25.4",
1171
+ "@mui/utils": "^5.16.6",
1172
+ "@types/react-transition-group": "^4.4.11",
1173
+ "clsx": "^2.1.1",
1174
+ "prop-types": "^15.8.1",
1175
+ "react-transition-group": "^4.4.5"
1176
+ },
1177
+ "engines": {
1178
+ "node": ">=14.0.0"
1179
+ },
1180
+ "funding": {
1181
+ "type": "opencollective",
1182
+ "url": "https://opencollective.com/mui-org"
1183
+ },
1184
+ "peerDependencies": {
1185
+ "@emotion/react": "^11.9.0",
1186
+ "@emotion/styled": "^11.8.1",
1187
+ "@mui/material": "^5.15.14 || ^6.0.0",
1188
+ "@mui/system": "^5.15.14 || ^6.0.0",
1189
+ "date-fns": "^2.25.0 || ^3.2.0",
1190
+ "date-fns-jalali": "^2.13.0-0 || ^3.2.0-0",
1191
+ "dayjs": "^1.10.7",
1192
+ "luxon": "^3.0.2",
1193
+ "moment": "^2.29.4",
1194
+ "moment-hijri": "^2.1.2",
1195
+ "moment-jalaali": "^0.7.4 || ^0.8.0 || ^0.9.0 || ^0.10.0",
1196
+ "react": "^17.0.0 || ^18.0.0",
1197
+ "react-dom": "^17.0.0 || ^18.0.0"
1198
+ },
1199
+ "peerDependenciesMeta": {
1200
+ "@emotion/react": {
1201
+ "optional": true
1202
+ },
1203
+ "@emotion/styled": {
1204
+ "optional": true
1205
+ },
1206
+ "date-fns": {
1207
+ "optional": true
1208
+ },
1209
+ "date-fns-jalali": {
1210
+ "optional": true
1211
+ },
1212
+ "dayjs": {
1213
+ "optional": true
1214
+ },
1215
+ "luxon": {
1216
+ "optional": true
1217
+ },
1218
+ "moment": {
1219
+ "optional": true
1220
+ },
1221
+ "moment-hijri": {
1222
+ "optional": true
1223
+ },
1224
+ "moment-jalaali": {
1225
+ "optional": true
1226
+ }
1227
+ }
1228
+ },
1229
+ "node_modules/@mui/x-date-pickers/node_modules/@mui/utils": {
1230
+ "version": "5.16.6",
1231
+ "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.16.6.tgz",
1232
+ "integrity": "sha512-tWiQqlhxAt3KENNiSRL+DIn9H5xNVK6Jjf70x3PnfQPz1MPBdh7yyIcAyVBT9xiw7hP3SomRhPR7hzBMBCjqEA==",
1233
+ "peer": true,
1234
+ "dependencies": {
1235
+ "@babel/runtime": "^7.23.9",
1236
+ "@mui/types": "^7.2.15",
1237
+ "@types/prop-types": "^15.7.12",
1238
+ "clsx": "^2.1.1",
1239
+ "prop-types": "^15.8.1",
1240
+ "react-is": "^18.3.1"
1241
+ },
1242
+ "engines": {
1243
+ "node": ">=12.0.0"
1244
+ },
1245
+ "funding": {
1246
+ "type": "opencollective",
1247
+ "url": "https://opencollective.com/mui-org"
1248
+ },
1249
+ "peerDependencies": {
1250
+ "@types/react": "^17.0.0 || ^18.0.0",
1251
+ "react": "^17.0.0 || ^18.0.0"
1252
+ },
1253
+ "peerDependenciesMeta": {
1254
+ "@types/react": {
1255
+ "optional": true
1256
+ }
1257
+ }
1258
+ },
1259
+ "node_modules/@mui/x-date-pickers/node_modules/@types/react": {
1260
+ "version": "18.3.16",
1261
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.16.tgz",
1262
+ "integrity": "sha512-oh8AMIC4Y2ciKufU8hnKgs+ufgbA/dhPTACaZPM86AbwX9QwnFtSoPWEeRUj8fge+v6kFt78BXcDhAU1SrrAsw==",
1263
+ "license": "MIT",
1264
+ "optional": true,
1265
+ "peer": true,
1266
+ "dependencies": {
1267
+ "@types/prop-types": "*",
1268
+ "csstype": "^3.0.2"
1269
+ }
1270
+ },
1271
+ "node_modules/@popperjs/core": {
1272
+ "version": "2.11.8",
1273
+ "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
1274
+ "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
1275
+ "funding": {
1276
+ "type": "opencollective",
1277
+ "url": "https://opencollective.com/popperjs"
1278
+ }
1279
+ },
1280
+ "node_modules/@rollup/rollup-android-arm-eabi": {
1281
+ "version": "4.28.1",
1282
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.1.tgz",
1283
+ "integrity": "sha512-2aZp8AES04KI2dy3Ss6/MDjXbwBzj+i0GqKtWXgw2/Ma6E4jJvujryO6gJAghIRVz7Vwr9Gtl/8na3nDUKpraQ==",
1284
+ "cpu": [
1285
+ "arm"
1286
+ ],
1287
+ "dev": true,
1288
+ "license": "MIT",
1289
+ "optional": true,
1290
+ "os": [
1291
+ "android"
1292
+ ]
1293
+ },
1294
+ "node_modules/@rollup/rollup-android-arm64": {
1295
+ "version": "4.28.1",
1296
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.1.tgz",
1297
+ "integrity": "sha512-EbkK285O+1YMrg57xVA+Dp0tDBRB93/BZKph9XhMjezf6F4TpYjaUSuPt5J0fZXlSag0LmZAsTmdGGqPp4pQFA==",
1298
+ "cpu": [
1299
+ "arm64"
1300
+ ],
1301
+ "dev": true,
1302
+ "license": "MIT",
1303
+ "optional": true,
1304
+ "os": [
1305
+ "android"
1306
+ ]
1307
+ },
1308
+ "node_modules/@rollup/rollup-darwin-arm64": {
1309
+ "version": "4.28.1",
1310
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.1.tgz",
1311
+ "integrity": "sha512-prduvrMKU6NzMq6nxzQw445zXgaDBbMQvmKSJaxpaZ5R1QDM8w+eGxo6Y/jhT/cLoCvnZI42oEqf9KQNYz1fqQ==",
1312
+ "cpu": [
1313
+ "arm64"
1314
+ ],
1315
+ "dev": true,
1316
+ "license": "MIT",
1317
+ "optional": true,
1318
+ "os": [
1319
+ "darwin"
1320
+ ]
1321
+ },
1322
+ "node_modules/@rollup/rollup-darwin-x64": {
1323
+ "version": "4.28.1",
1324
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.1.tgz",
1325
+ "integrity": "sha512-WsvbOunsUk0wccO/TV4o7IKgloJ942hVFK1CLatwv6TJspcCZb9umQkPdvB7FihmdxgaKR5JyxDjWpCOp4uZlQ==",
1326
+ "cpu": [
1327
+ "x64"
1328
+ ],
1329
+ "dev": true,
1330
+ "license": "MIT",
1331
+ "optional": true,
1332
+ "os": [
1333
+ "darwin"
1334
+ ]
1335
+ },
1336
+ "node_modules/@rollup/rollup-freebsd-arm64": {
1337
+ "version": "4.28.1",
1338
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.1.tgz",
1339
+ "integrity": "sha512-HTDPdY1caUcU4qK23FeeGxCdJF64cKkqajU0iBnTVxS8F7H/7BewvYoG+va1KPSL63kQ1PGNyiwKOfReavzvNA==",
1340
+ "cpu": [
1341
+ "arm64"
1342
+ ],
1343
+ "dev": true,
1344
+ "license": "MIT",
1345
+ "optional": true,
1346
+ "os": [
1347
+ "freebsd"
1348
+ ]
1349
+ },
1350
+ "node_modules/@rollup/rollup-freebsd-x64": {
1351
+ "version": "4.28.1",
1352
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.1.tgz",
1353
+ "integrity": "sha512-m/uYasxkUevcFTeRSM9TeLyPe2QDuqtjkeoTpP9SW0XxUWfcYrGDMkO/m2tTw+4NMAF9P2fU3Mw4ahNvo7QmsQ==",
1354
+ "cpu": [
1355
+ "x64"
1356
+ ],
1357
+ "dev": true,
1358
+ "license": "MIT",
1359
+ "optional": true,
1360
+ "os": [
1361
+ "freebsd"
1362
+ ]
1363
+ },
1364
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
1365
+ "version": "4.28.1",
1366
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.1.tgz",
1367
+ "integrity": "sha512-QAg11ZIt6mcmzpNE6JZBpKfJaKkqTm1A9+y9O+frdZJEuhQxiugM05gnCWiANHj4RmbgeVJpTdmKRmH/a+0QbA==",
1368
+ "cpu": [
1369
+ "arm"
1370
+ ],
1371
+ "dev": true,
1372
+ "license": "MIT",
1373
+ "optional": true,
1374
+ "os": [
1375
+ "linux"
1376
+ ]
1377
+ },
1378
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
1379
+ "version": "4.28.1",
1380
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.1.tgz",
1381
+ "integrity": "sha512-dRP9PEBfolq1dmMcFqbEPSd9VlRuVWEGSmbxVEfiq2cs2jlZAl0YNxFzAQS2OrQmsLBLAATDMb3Z6MFv5vOcXg==",
1382
+ "cpu": [
1383
+ "arm"
1384
+ ],
1385
+ "dev": true,
1386
+ "license": "MIT",
1387
+ "optional": true,
1388
+ "os": [
1389
+ "linux"
1390
+ ]
1391
+ },
1392
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
1393
+ "version": "4.28.1",
1394
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.1.tgz",
1395
+ "integrity": "sha512-uGr8khxO+CKT4XU8ZUH1TTEUtlktK6Kgtv0+6bIFSeiSlnGJHG1tSFSjm41uQ9sAO/5ULx9mWOz70jYLyv1QkA==",
1396
+ "cpu": [
1397
+ "arm64"
1398
+ ],
1399
+ "dev": true,
1400
+ "license": "MIT",
1401
+ "optional": true,
1402
+ "os": [
1403
+ "linux"
1404
+ ]
1405
+ },
1406
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
1407
+ "version": "4.28.1",
1408
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.1.tgz",
1409
+ "integrity": "sha512-QF54q8MYGAqMLrX2t7tNpi01nvq5RI59UBNx+3+37zoKX5KViPo/gk2QLhsuqok05sSCRluj0D00LzCwBikb0A==",
1410
+ "cpu": [
1411
+ "arm64"
1412
+ ],
1413
+ "dev": true,
1414
+ "license": "MIT",
1415
+ "optional": true,
1416
+ "os": [
1417
+ "linux"
1418
+ ]
1419
+ },
1420
+ "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
1421
+ "version": "4.28.1",
1422
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.28.1.tgz",
1423
+ "integrity": "sha512-vPul4uodvWvLhRco2w0GcyZcdyBfpfDRgNKU+p35AWEbJ/HPs1tOUrkSueVbBS0RQHAf/A+nNtDpvw95PeVKOA==",
1424
+ "cpu": [
1425
+ "loong64"
1426
+ ],
1427
+ "dev": true,
1428
+ "license": "MIT",
1429
+ "optional": true,
1430
+ "os": [
1431
+ "linux"
1432
+ ]
1433
+ },
1434
+ "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
1435
+ "version": "4.28.1",
1436
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.1.tgz",
1437
+ "integrity": "sha512-pTnTdBuC2+pt1Rmm2SV7JWRqzhYpEILML4PKODqLz+C7Ou2apEV52h19CR7es+u04KlqplggmN9sqZlekg3R1A==",
1438
+ "cpu": [
1439
+ "ppc64"
1440
+ ],
1441
+ "dev": true,
1442
+ "license": "MIT",
1443
+ "optional": true,
1444
+ "os": [
1445
+ "linux"
1446
+ ]
1447
+ },
1448
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1449
+ "version": "4.28.1",
1450
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.1.tgz",
1451
+ "integrity": "sha512-vWXy1Nfg7TPBSuAncfInmAI/WZDd5vOklyLJDdIRKABcZWojNDY0NJwruY2AcnCLnRJKSaBgf/GiJfauu8cQZA==",
1452
+ "cpu": [
1453
+ "riscv64"
1454
+ ],
1455
+ "dev": true,
1456
+ "license": "MIT",
1457
+ "optional": true,
1458
+ "os": [
1459
+ "linux"
1460
+ ]
1461
+ },
1462
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
1463
+ "version": "4.28.1",
1464
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.1.tgz",
1465
+ "integrity": "sha512-/yqC2Y53oZjb0yz8PVuGOQQNOTwxcizudunl/tFs1aLvObTclTwZ0JhXF2XcPT/zuaymemCDSuuUPXJJyqeDOg==",
1466
+ "cpu": [
1467
+ "s390x"
1468
+ ],
1469
+ "dev": true,
1470
+ "license": "MIT",
1471
+ "optional": true,
1472
+ "os": [
1473
+ "linux"
1474
+ ]
1475
+ },
1476
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
1477
+ "version": "4.28.1",
1478
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.1.tgz",
1479
+ "integrity": "sha512-fzgeABz7rrAlKYB0y2kSEiURrI0691CSL0+KXwKwhxvj92VULEDQLpBYLHpF49MSiPG4sq5CK3qHMnb9tlCjBw==",
1480
+ "cpu": [
1481
+ "x64"
1482
+ ],
1483
+ "dev": true,
1484
+ "license": "MIT",
1485
+ "optional": true,
1486
+ "os": [
1487
+ "linux"
1488
+ ]
1489
+ },
1490
+ "node_modules/@rollup/rollup-linux-x64-musl": {
1491
+ "version": "4.28.1",
1492
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.1.tgz",
1493
+ "integrity": "sha512-xQTDVzSGiMlSshpJCtudbWyRfLaNiVPXt1WgdWTwWz9n0U12cI2ZVtWe/Jgwyv/6wjL7b66uu61Vg0POWVfz4g==",
1494
+ "cpu": [
1495
+ "x64"
1496
+ ],
1497
+ "dev": true,
1498
+ "license": "MIT",
1499
+ "optional": true,
1500
+ "os": [
1501
+ "linux"
1502
+ ]
1503
+ },
1504
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1505
+ "version": "4.28.1",
1506
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.1.tgz",
1507
+ "integrity": "sha512-wSXmDRVupJstFP7elGMgv+2HqXelQhuNf+IS4V+nUpNVi/GUiBgDmfwD0UGN3pcAnWsgKG3I52wMOBnk1VHr/A==",
1508
+ "cpu": [
1509
+ "arm64"
1510
+ ],
1511
+ "dev": true,
1512
+ "license": "MIT",
1513
+ "optional": true,
1514
+ "os": [
1515
+ "win32"
1516
+ ]
1517
+ },
1518
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
1519
+ "version": "4.28.1",
1520
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.1.tgz",
1521
+ "integrity": "sha512-ZkyTJ/9vkgrE/Rk9vhMXhf8l9D+eAhbAVbsGsXKy2ohmJaWg0LPQLnIxRdRp/bKyr8tXuPlXhIoGlEB5XpJnGA==",
1522
+ "cpu": [
1523
+ "ia32"
1524
+ ],
1525
+ "dev": true,
1526
+ "license": "MIT",
1527
+ "optional": true,
1528
+ "os": [
1529
+ "win32"
1530
+ ]
1531
+ },
1532
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1533
+ "version": "4.28.1",
1534
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.1.tgz",
1535
+ "integrity": "sha512-ZvK2jBafvttJjoIdKm/Q/Bh7IJ1Ose9IBOwpOXcOvW3ikGTQGmKDgxTC6oCAzW6PynbkKP8+um1du81XJHZ0JA==",
1536
+ "cpu": [
1537
+ "x64"
1538
+ ],
1539
+ "dev": true,
1540
+ "license": "MIT",
1541
+ "optional": true,
1542
+ "os": [
1543
+ "win32"
1544
+ ]
1545
+ },
1546
+ "node_modules/@tanstack/match-sorter-utils": {
1547
+ "version": "8.19.4",
1548
+ "resolved": "https://registry.npmjs.org/@tanstack/match-sorter-utils/-/match-sorter-utils-8.19.4.tgz",
1549
+ "integrity": "sha512-Wo1iKt2b9OT7d+YGhvEPD3DXvPv2etTusIMhMUoG7fbhmxcXCtIjJDEygy91Y2JFlwGyjqiBPRozme7UD8hoqg==",
1550
+ "dependencies": {
1551
+ "remove-accents": "0.5.0"
1552
+ },
1553
+ "engines": {
1554
+ "node": ">=12"
1555
+ },
1556
+ "funding": {
1557
+ "type": "github",
1558
+ "url": "https://github.com/sponsors/tannerlinsley"
1559
+ }
1560
+ },
1561
+ "node_modules/@tanstack/query-core": {
1562
+ "version": "5.62.7",
1563
+ "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.62.7.tgz",
1564
+ "integrity": "sha512-fgpfmwatsrUal6V+8EC2cxZIQVl9xvL7qYa03gsdsCy985UTUlS4N+/3hCzwR0PclYDqisca2AqR1BVgJGpUDA==",
1565
+ "license": "MIT",
1566
+ "funding": {
1567
+ "type": "github",
1568
+ "url": "https://github.com/sponsors/tannerlinsley"
1569
+ }
1570
+ },
1571
+ "node_modules/@tanstack/react-query": {
1572
+ "version": "5.62.7",
1573
+ "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.62.7.tgz",
1574
+ "integrity": "sha512-+xCtP4UAFDTlRTYyEjLx0sRtWyr5GIk7TZjZwBu4YaNahi3Rt2oMyRqfpfVrtwsqY2sayP4iXVCwmC+ZqqFmuw==",
1575
+ "license": "MIT",
1576
+ "dependencies": {
1577
+ "@tanstack/query-core": "5.62.7"
1578
+ },
1579
+ "funding": {
1580
+ "type": "github",
1581
+ "url": "https://github.com/sponsors/tannerlinsley"
1582
+ },
1583
+ "peerDependencies": {
1584
+ "react": "^18 || ^19"
1585
+ }
1586
+ },
1587
+ "node_modules/@tanstack/react-table": {
1588
+ "version": "8.20.5",
1589
+ "resolved": "https://registry.npmjs.org/@tanstack/react-table/-/react-table-8.20.5.tgz",
1590
+ "integrity": "sha512-WEHopKw3znbUZ61s9i0+i9g8drmDo6asTWbrQh8Us63DAk/M0FkmIqERew6P71HI75ksZ2Pxyuf4vvKh9rAkiA==",
1591
+ "license": "MIT",
1592
+ "dependencies": {
1593
+ "@tanstack/table-core": "8.20.5"
1594
+ },
1595
+ "engines": {
1596
+ "node": ">=12"
1597
+ },
1598
+ "funding": {
1599
+ "type": "github",
1600
+ "url": "https://github.com/sponsors/tannerlinsley"
1601
+ },
1602
+ "peerDependencies": {
1603
+ "react": ">=16.8",
1604
+ "react-dom": ">=16.8"
1605
+ }
1606
+ },
1607
+ "node_modules/@tanstack/table-core": {
1608
+ "version": "8.20.5",
1609
+ "resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.20.5.tgz",
1610
+ "integrity": "sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==",
1611
+ "license": "MIT",
1612
+ "engines": {
1613
+ "node": ">=12"
1614
+ },
1615
+ "funding": {
1616
+ "type": "github",
1617
+ "url": "https://github.com/sponsors/tannerlinsley"
1618
+ }
1619
+ },
1620
+ "node_modules/@tanstack/virtual-core": {
1621
+ "version": "3.10.9",
1622
+ "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.10.9.tgz",
1623
+ "integrity": "sha512-kBknKOKzmeR7lN+vSadaKWXaLS0SZZG+oqpQ/k80Q6g9REn6zRHS/ZYdrIzHnpHgy/eWs00SujveUN/GJT2qTw==",
1624
+ "license": "MIT",
1625
+ "funding": {
1626
+ "type": "github",
1627
+ "url": "https://github.com/sponsors/tannerlinsley"
1628
+ }
1629
+ },
1630
+ "node_modules/@types/babel__core": {
1631
+ "version": "7.20.5",
1632
+ "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
1633
+ "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
1634
+ "dev": true,
1635
+ "dependencies": {
1636
+ "@babel/parser": "^7.20.7",
1637
+ "@babel/types": "^7.20.7",
1638
+ "@types/babel__generator": "*",
1639
+ "@types/babel__template": "*",
1640
+ "@types/babel__traverse": "*"
1641
+ }
1642
+ },
1643
+ "node_modules/@types/babel__generator": {
1644
+ "version": "7.6.7",
1645
+ "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz",
1646
+ "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==",
1647
+ "dev": true,
1648
+ "dependencies": {
1649
+ "@babel/types": "^7.0.0"
1650
+ }
1651
+ },
1652
+ "node_modules/@types/babel__template": {
1653
+ "version": "7.4.4",
1654
+ "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
1655
+ "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
1656
+ "dev": true,
1657
+ "dependencies": {
1658
+ "@babel/parser": "^7.1.0",
1659
+ "@babel/types": "^7.0.0"
1660
+ }
1661
+ },
1662
+ "node_modules/@types/babel__traverse": {
1663
+ "version": "7.20.4",
1664
+ "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz",
1665
+ "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==",
1666
+ "dev": true,
1667
+ "dependencies": {
1668
+ "@babel/types": "^7.20.7"
1669
+ }
1670
+ },
1671
+ "node_modules/@types/estree": {
1672
+ "version": "1.0.6",
1673
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
1674
+ "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
1675
+ "dev": true,
1676
+ "license": "MIT"
1677
+ },
1678
+ "node_modules/@types/parse-json": {
1679
+ "version": "4.0.2",
1680
+ "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
1681
+ "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
1682
+ "license": "MIT"
1683
+ },
1684
+ "node_modules/@types/prop-types": {
1685
+ "version": "15.7.14",
1686
+ "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz",
1687
+ "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==",
1688
+ "license": "MIT"
1689
+ },
1690
+ "node_modules/@types/react": {
1691
+ "version": "19.0.1",
1692
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.1.tgz",
1693
+ "integrity": "sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==",
1694
+ "license": "MIT",
1695
+ "dependencies": {
1696
+ "csstype": "^3.0.2"
1697
+ }
1698
+ },
1699
+ "node_modules/@types/react-dom": {
1700
+ "version": "19.0.2",
1701
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.0.2.tgz",
1702
+ "integrity": "sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==",
1703
+ "dev": true,
1704
+ "license": "MIT",
1705
+ "peerDependencies": {
1706
+ "@types/react": "^19.0.0"
1707
+ }
1708
+ },
1709
+ "node_modules/@types/react-transition-group": {
1710
+ "version": "4.4.11",
1711
+ "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.11.tgz",
1712
+ "integrity": "sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==",
1713
+ "dependencies": {
1714
+ "@types/react": "*"
1715
+ }
1716
+ },
1717
+ "node_modules/@vitejs/plugin-react": {
1718
+ "version": "4.3.4",
1719
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz",
1720
+ "integrity": "sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==",
1721
+ "dev": true,
1722
+ "license": "MIT",
1723
+ "dependencies": {
1724
+ "@babel/core": "^7.26.0",
1725
+ "@babel/plugin-transform-react-jsx-self": "^7.25.9",
1726
+ "@babel/plugin-transform-react-jsx-source": "^7.25.9",
1727
+ "@types/babel__core": "^7.20.5",
1728
+ "react-refresh": "^0.14.2"
1729
+ },
1730
+ "engines": {
1731
+ "node": "^14.18.0 || >=16.0.0"
1732
+ },
1733
+ "peerDependencies": {
1734
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0"
1735
+ }
1736
+ },
1737
+ "node_modules/babel-plugin-macros": {
1738
+ "version": "3.1.0",
1739
+ "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
1740
+ "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
1741
+ "license": "MIT",
1742
+ "dependencies": {
1743
+ "@babel/runtime": "^7.12.5",
1744
+ "cosmiconfig": "^7.0.0",
1745
+ "resolve": "^1.19.0"
1746
+ },
1747
+ "engines": {
1748
+ "node": ">=10",
1749
+ "npm": ">=6"
1750
+ }
1751
+ },
1752
+ "node_modules/browserslist": {
1753
+ "version": "4.24.2",
1754
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz",
1755
+ "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==",
1756
+ "dev": true,
1757
+ "funding": [
1758
+ {
1759
+ "type": "opencollective",
1760
+ "url": "https://opencollective.com/browserslist"
1761
+ },
1762
+ {
1763
+ "type": "tidelift",
1764
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1765
+ },
1766
+ {
1767
+ "type": "github",
1768
+ "url": "https://github.com/sponsors/ai"
1769
+ }
1770
+ ],
1771
+ "license": "MIT",
1772
+ "dependencies": {
1773
+ "caniuse-lite": "^1.0.30001669",
1774
+ "electron-to-chromium": "^1.5.41",
1775
+ "node-releases": "^2.0.18",
1776
+ "update-browserslist-db": "^1.1.1"
1777
+ },
1778
+ "bin": {
1779
+ "browserslist": "cli.js"
1780
+ },
1781
+ "engines": {
1782
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1783
+ }
1784
+ },
1785
+ "node_modules/callsites": {
1786
+ "version": "3.1.0",
1787
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1788
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1789
+ "license": "MIT",
1790
+ "engines": {
1791
+ "node": ">=6"
1792
+ }
1793
+ },
1794
+ "node_modules/caniuse-lite": {
1795
+ "version": "1.0.30001688",
1796
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001688.tgz",
1797
+ "integrity": "sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==",
1798
+ "dev": true,
1799
+ "funding": [
1800
+ {
1801
+ "type": "opencollective",
1802
+ "url": "https://opencollective.com/browserslist"
1803
+ },
1804
+ {
1805
+ "type": "tidelift",
1806
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1807
+ },
1808
+ {
1809
+ "type": "github",
1810
+ "url": "https://github.com/sponsors/ai"
1811
+ }
1812
+ ],
1813
+ "license": "CC-BY-4.0"
1814
+ },
1815
+ "node_modules/clsx": {
1816
+ "version": "2.1.1",
1817
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
1818
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
1819
+ "engines": {
1820
+ "node": ">=6"
1821
+ }
1822
+ },
1823
+ "node_modules/convert-source-map": {
1824
+ "version": "1.9.0",
1825
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
1826
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
1827
+ "license": "MIT"
1828
+ },
1829
+ "node_modules/cosmiconfig": {
1830
+ "version": "7.1.0",
1831
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
1832
+ "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
1833
+ "license": "MIT",
1834
+ "dependencies": {
1835
+ "@types/parse-json": "^4.0.0",
1836
+ "import-fresh": "^3.2.1",
1837
+ "parse-json": "^5.0.0",
1838
+ "path-type": "^4.0.0",
1839
+ "yaml": "^1.10.0"
1840
+ },
1841
+ "engines": {
1842
+ "node": ">=10"
1843
+ }
1844
+ },
1845
+ "node_modules/cosmiconfig/node_modules/yaml": {
1846
+ "version": "1.10.2",
1847
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
1848
+ "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
1849
+ "license": "ISC",
1850
+ "engines": {
1851
+ "node": ">= 6"
1852
+ }
1853
+ },
1854
+ "node_modules/csstype": {
1855
+ "version": "3.1.3",
1856
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
1857
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw=="
1858
+ },
1859
+ "node_modules/debug": {
1860
+ "version": "4.4.0",
1861
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
1862
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
1863
+ "license": "MIT",
1864
+ "dependencies": {
1865
+ "ms": "^2.1.3"
1866
+ },
1867
+ "engines": {
1868
+ "node": ">=6.0"
1869
+ },
1870
+ "peerDependenciesMeta": {
1871
+ "supports-color": {
1872
+ "optional": true
1873
+ }
1874
+ }
1875
+ },
1876
+ "node_modules/dom-helpers": {
1877
+ "version": "5.2.1",
1878
+ "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
1879
+ "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
1880
+ "license": "MIT",
1881
+ "dependencies": {
1882
+ "@babel/runtime": "^7.8.7",
1883
+ "csstype": "^3.0.2"
1884
+ }
1885
+ },
1886
+ "node_modules/electron-to-chromium": {
1887
+ "version": "1.5.73",
1888
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.73.tgz",
1889
+ "integrity": "sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==",
1890
+ "dev": true,
1891
+ "license": "ISC"
1892
+ },
1893
+ "node_modules/error-ex": {
1894
+ "version": "1.3.2",
1895
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
1896
+ "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
1897
+ "license": "MIT",
1898
+ "dependencies": {
1899
+ "is-arrayish": "^0.2.1"
1900
+ }
1901
+ },
1902
+ "node_modules/esbuild": {
1903
+ "version": "0.24.0",
1904
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.0.tgz",
1905
+ "integrity": "sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==",
1906
+ "dev": true,
1907
+ "hasInstallScript": true,
1908
+ "license": "MIT",
1909
+ "bin": {
1910
+ "esbuild": "bin/esbuild"
1911
+ },
1912
+ "engines": {
1913
+ "node": ">=18"
1914
+ },
1915
+ "optionalDependencies": {
1916
+ "@esbuild/aix-ppc64": "0.24.0",
1917
+ "@esbuild/android-arm": "0.24.0",
1918
+ "@esbuild/android-arm64": "0.24.0",
1919
+ "@esbuild/android-x64": "0.24.0",
1920
+ "@esbuild/darwin-arm64": "0.24.0",
1921
+ "@esbuild/darwin-x64": "0.24.0",
1922
+ "@esbuild/freebsd-arm64": "0.24.0",
1923
+ "@esbuild/freebsd-x64": "0.24.0",
1924
+ "@esbuild/linux-arm": "0.24.0",
1925
+ "@esbuild/linux-arm64": "0.24.0",
1926
+ "@esbuild/linux-ia32": "0.24.0",
1927
+ "@esbuild/linux-loong64": "0.24.0",
1928
+ "@esbuild/linux-mips64el": "0.24.0",
1929
+ "@esbuild/linux-ppc64": "0.24.0",
1930
+ "@esbuild/linux-riscv64": "0.24.0",
1931
+ "@esbuild/linux-s390x": "0.24.0",
1932
+ "@esbuild/linux-x64": "0.24.0",
1933
+ "@esbuild/netbsd-x64": "0.24.0",
1934
+ "@esbuild/openbsd-arm64": "0.24.0",
1935
+ "@esbuild/openbsd-x64": "0.24.0",
1936
+ "@esbuild/sunos-x64": "0.24.0",
1937
+ "@esbuild/win32-arm64": "0.24.0",
1938
+ "@esbuild/win32-ia32": "0.24.0",
1939
+ "@esbuild/win32-x64": "0.24.0"
1940
+ }
1941
+ },
1942
+ "node_modules/escalade": {
1943
+ "version": "3.2.0",
1944
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
1945
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
1946
+ "dev": true,
1947
+ "license": "MIT",
1948
+ "engines": {
1949
+ "node": ">=6"
1950
+ }
1951
+ },
1952
+ "node_modules/escape-string-regexp": {
1953
+ "version": "4.0.0",
1954
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1955
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1956
+ "license": "MIT",
1957
+ "engines": {
1958
+ "node": ">=10"
1959
+ },
1960
+ "funding": {
1961
+ "url": "https://github.com/sponsors/sindresorhus"
1962
+ }
1963
+ },
1964
+ "node_modules/find-root": {
1965
+ "version": "1.1.0",
1966
+ "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
1967
+ "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==",
1968
+ "license": "MIT"
1969
+ },
1970
+ "node_modules/fsevents": {
1971
+ "version": "2.3.3",
1972
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1973
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1974
+ "dev": true,
1975
+ "hasInstallScript": true,
1976
+ "license": "MIT",
1977
+ "optional": true,
1978
+ "os": [
1979
+ "darwin"
1980
+ ],
1981
+ "engines": {
1982
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1983
+ }
1984
+ },
1985
+ "node_modules/function-bind": {
1986
+ "version": "1.1.2",
1987
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
1988
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
1989
+ "license": "MIT",
1990
+ "funding": {
1991
+ "url": "https://github.com/sponsors/ljharb"
1992
+ }
1993
+ },
1994
+ "node_modules/gensync": {
1995
+ "version": "1.0.0-beta.2",
1996
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
1997
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
1998
+ "dev": true,
1999
+ "license": "MIT",
2000
+ "engines": {
2001
+ "node": ">=6.9.0"
2002
+ }
2003
+ },
2004
+ "node_modules/globals": {
2005
+ "version": "11.12.0",
2006
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
2007
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
2008
+ "license": "MIT",
2009
+ "engines": {
2010
+ "node": ">=4"
2011
+ }
2012
+ },
2013
+ "node_modules/hasown": {
2014
+ "version": "2.0.2",
2015
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
2016
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
2017
+ "license": "MIT",
2018
+ "dependencies": {
2019
+ "function-bind": "^1.1.2"
2020
+ },
2021
+ "engines": {
2022
+ "node": ">= 0.4"
2023
+ }
2024
+ },
2025
+ "node_modules/highlight-words": {
2026
+ "version": "2.0.0",
2027
+ "resolved": "https://registry.npmjs.org/highlight-words/-/highlight-words-2.0.0.tgz",
2028
+ "integrity": "sha512-If5n+IhSBRXTScE7wl16VPmd+44Vy7kof24EdqhjsZsDuHikpv1OCagVcJFpB4fS4UPUniedlWqrjIO8vWOsIQ==",
2029
+ "license": "MIT",
2030
+ "engines": {
2031
+ "node": ">= 20",
2032
+ "npm": ">= 9"
2033
+ }
2034
+ },
2035
+ "node_modules/hoist-non-react-statics": {
2036
+ "version": "3.3.2",
2037
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
2038
+ "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
2039
+ "dependencies": {
2040
+ "react-is": "^16.7.0"
2041
+ }
2042
+ },
2043
+ "node_modules/hoist-non-react-statics/node_modules/react-is": {
2044
+ "version": "16.13.1",
2045
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
2046
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
2047
+ },
2048
+ "node_modules/import-fresh": {
2049
+ "version": "3.3.0",
2050
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
2051
+ "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
2052
+ "license": "MIT",
2053
+ "dependencies": {
2054
+ "parent-module": "^1.0.0",
2055
+ "resolve-from": "^4.0.0"
2056
+ },
2057
+ "engines": {
2058
+ "node": ">=6"
2059
+ },
2060
+ "funding": {
2061
+ "url": "https://github.com/sponsors/sindresorhus"
2062
+ }
2063
+ },
2064
+ "node_modules/is-arrayish": {
2065
+ "version": "0.2.1",
2066
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
2067
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
2068
+ "license": "MIT"
2069
+ },
2070
+ "node_modules/is-core-module": {
2071
+ "version": "2.15.1",
2072
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz",
2073
+ "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==",
2074
+ "license": "MIT",
2075
+ "dependencies": {
2076
+ "hasown": "^2.0.2"
2077
+ },
2078
+ "engines": {
2079
+ "node": ">= 0.4"
2080
+ },
2081
+ "funding": {
2082
+ "url": "https://github.com/sponsors/ljharb"
2083
+ }
2084
+ },
2085
+ "node_modules/js-tokens": {
2086
+ "version": "4.0.0",
2087
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2088
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
2089
+ },
2090
+ "node_modules/jsesc": {
2091
+ "version": "3.1.0",
2092
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
2093
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
2094
+ "license": "MIT",
2095
+ "bin": {
2096
+ "jsesc": "bin/jsesc"
2097
+ },
2098
+ "engines": {
2099
+ "node": ">=6"
2100
+ }
2101
+ },
2102
+ "node_modules/json-parse-even-better-errors": {
2103
+ "version": "2.3.1",
2104
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
2105
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
2106
+ "license": "MIT"
2107
+ },
2108
+ "node_modules/json5": {
2109
+ "version": "2.2.3",
2110
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
2111
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
2112
+ "dev": true,
2113
+ "license": "MIT",
2114
+ "bin": {
2115
+ "json5": "lib/cli.js"
2116
+ },
2117
+ "engines": {
2118
+ "node": ">=6"
2119
+ }
2120
+ },
2121
+ "node_modules/lines-and-columns": {
2122
+ "version": "1.2.4",
2123
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
2124
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
2125
+ "license": "MIT"
2126
+ },
2127
+ "node_modules/loose-envify": {
2128
+ "version": "1.4.0",
2129
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
2130
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
2131
+ "dependencies": {
2132
+ "js-tokens": "^3.0.0 || ^4.0.0"
2133
+ },
2134
+ "bin": {
2135
+ "loose-envify": "cli.js"
2136
+ }
2137
+ },
2138
+ "node_modules/lru-cache": {
2139
+ "version": "5.1.1",
2140
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
2141
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
2142
+ "dev": true,
2143
+ "license": "ISC",
2144
+ "dependencies": {
2145
+ "yallist": "^3.0.2"
2146
+ }
2147
+ },
2148
+ "node_modules/material-react-table": {
2149
+ "version": "3.0.3",
2150
+ "resolved": "https://registry.npmjs.org/material-react-table/-/material-react-table-3.0.3.tgz",
2151
+ "integrity": "sha512-XeMRM6DiZgkbm2luuuAmz6ULWM4HDGOT9JgwcQWAAYCgUnbRoV3HjfnC8AgAoK/Oa91+tfYQzQLcDabiZaxWqw==",
2152
+ "license": "MIT",
2153
+ "dependencies": {
2154
+ "@tanstack/match-sorter-utils": "8.19.4",
2155
+ "@tanstack/react-table": "8.20.5",
2156
+ "@tanstack/react-virtual": "3.10.9",
2157
+ "highlight-words": "2.0.0"
2158
+ },
2159
+ "engines": {
2160
+ "node": ">=16"
2161
+ },
2162
+ "funding": {
2163
+ "type": "github",
2164
+ "url": "https://github.com/sponsors/kevinvandy"
2165
+ },
2166
+ "peerDependencies": {
2167
+ "@emotion/react": ">=11.13",
2168
+ "@emotion/styled": ">=11.13",
2169
+ "@mui/icons-material": ">=6",
2170
+ "@mui/material": ">=6",
2171
+ "@mui/x-date-pickers": ">=7.15",
2172
+ "react": ">=18.0",
2173
+ "react-dom": ">=18.0"
2174
+ }
2175
+ },
2176
+ "node_modules/material-react-table/node_modules/@tanstack/react-virtual": {
2177
+ "version": "3.10.9",
2178
+ "resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.10.9.tgz",
2179
+ "integrity": "sha512-OXO2uBjFqA4Ibr2O3y0YMnkrRWGVNqcvHQXmGvMu6IK8chZl3PrDxFXdGZ2iZkSrKh3/qUYoFqYe+Rx23RoU0g==",
2180
+ "license": "MIT",
2181
+ "dependencies": {
2182
+ "@tanstack/virtual-core": "3.10.9"
2183
+ },
2184
+ "funding": {
2185
+ "type": "github",
2186
+ "url": "https://github.com/sponsors/tannerlinsley"
2187
+ },
2188
+ "peerDependencies": {
2189
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
2190
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
2191
+ }
2192
+ },
2193
+ "node_modules/ms": {
2194
+ "version": "2.1.3",
2195
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
2196
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
2197
+ "license": "MIT"
2198
+ },
2199
+ "node_modules/nanoid": {
2200
+ "version": "3.3.8",
2201
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
2202
+ "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
2203
+ "dev": true,
2204
+ "funding": [
2205
+ {
2206
+ "type": "github",
2207
+ "url": "https://github.com/sponsors/ai"
2208
+ }
2209
+ ],
2210
+ "license": "MIT",
2211
+ "bin": {
2212
+ "nanoid": "bin/nanoid.cjs"
2213
+ },
2214
+ "engines": {
2215
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2216
+ }
2217
+ },
2218
+ "node_modules/node-releases": {
2219
+ "version": "2.0.19",
2220
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
2221
+ "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
2222
+ "dev": true,
2223
+ "license": "MIT"
2224
+ },
2225
+ "node_modules/object-assign": {
2226
+ "version": "4.1.1",
2227
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
2228
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
2229
+ "engines": {
2230
+ "node": ">=0.10.0"
2231
+ }
2232
+ },
2233
+ "node_modules/parent-module": {
2234
+ "version": "1.0.1",
2235
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
2236
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
2237
+ "license": "MIT",
2238
+ "dependencies": {
2239
+ "callsites": "^3.0.0"
2240
+ },
2241
+ "engines": {
2242
+ "node": ">=6"
2243
+ }
2244
+ },
2245
+ "node_modules/parse-json": {
2246
+ "version": "5.2.0",
2247
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
2248
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
2249
+ "license": "MIT",
2250
+ "dependencies": {
2251
+ "@babel/code-frame": "^7.0.0",
2252
+ "error-ex": "^1.3.1",
2253
+ "json-parse-even-better-errors": "^2.3.0",
2254
+ "lines-and-columns": "^1.1.6"
2255
+ },
2256
+ "engines": {
2257
+ "node": ">=8"
2258
+ },
2259
+ "funding": {
2260
+ "url": "https://github.com/sponsors/sindresorhus"
2261
+ }
2262
+ },
2263
+ "node_modules/path-parse": {
2264
+ "version": "1.0.7",
2265
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
2266
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
2267
+ "license": "MIT"
2268
+ },
2269
+ "node_modules/path-type": {
2270
+ "version": "4.0.0",
2271
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
2272
+ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
2273
+ "license": "MIT",
2274
+ "engines": {
2275
+ "node": ">=8"
2276
+ }
2277
+ },
2278
+ "node_modules/picocolors": {
2279
+ "version": "1.1.1",
2280
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
2281
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
2282
+ "license": "ISC"
2283
+ },
2284
+ "node_modules/postcss": {
2285
+ "version": "8.4.49",
2286
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz",
2287
+ "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==",
2288
+ "dev": true,
2289
+ "funding": [
2290
+ {
2291
+ "type": "opencollective",
2292
+ "url": "https://opencollective.com/postcss/"
2293
+ },
2294
+ {
2295
+ "type": "tidelift",
2296
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2297
+ },
2298
+ {
2299
+ "type": "github",
2300
+ "url": "https://github.com/sponsors/ai"
2301
+ }
2302
+ ],
2303
+ "license": "MIT",
2304
+ "dependencies": {
2305
+ "nanoid": "^3.3.7",
2306
+ "picocolors": "^1.1.1",
2307
+ "source-map-js": "^1.2.1"
2308
+ },
2309
+ "engines": {
2310
+ "node": "^10 || ^12 || >=14"
2311
+ }
2312
+ },
2313
+ "node_modules/prop-types": {
2314
+ "version": "15.8.1",
2315
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
2316
+ "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
2317
+ "dependencies": {
2318
+ "loose-envify": "^1.4.0",
2319
+ "object-assign": "^4.1.1",
2320
+ "react-is": "^16.13.1"
2321
+ }
2322
+ },
2323
+ "node_modules/prop-types/node_modules/react-is": {
2324
+ "version": "16.13.1",
2325
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
2326
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
2327
+ },
2328
+ "node_modules/react": {
2329
+ "version": "19.0.0",
2330
+ "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz",
2331
+ "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==",
2332
+ "license": "MIT",
2333
+ "engines": {
2334
+ "node": ">=0.10.0"
2335
+ }
2336
+ },
2337
+ "node_modules/react-dom": {
2338
+ "version": "19.0.0",
2339
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz",
2340
+ "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==",
2341
+ "license": "MIT",
2342
+ "dependencies": {
2343
+ "scheduler": "^0.25.0"
2344
+ },
2345
+ "peerDependencies": {
2346
+ "react": "^19.0.0"
2347
+ }
2348
+ },
2349
+ "node_modules/react-is": {
2350
+ "version": "18.3.1",
2351
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
2352
+ "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
2353
+ "peer": true
2354
+ },
2355
+ "node_modules/react-refresh": {
2356
+ "version": "0.14.2",
2357
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz",
2358
+ "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==",
2359
+ "dev": true,
2360
+ "engines": {
2361
+ "node": ">=0.10.0"
2362
+ }
2363
+ },
2364
+ "node_modules/react-transition-group": {
2365
+ "version": "4.4.5",
2366
+ "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
2367
+ "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
2368
+ "license": "BSD-3-Clause",
2369
+ "dependencies": {
2370
+ "@babel/runtime": "^7.5.5",
2371
+ "dom-helpers": "^5.0.1",
2372
+ "loose-envify": "^1.4.0",
2373
+ "prop-types": "^15.6.2"
2374
+ },
2375
+ "peerDependencies": {
2376
+ "react": ">=16.6.0",
2377
+ "react-dom": ">=16.6.0"
2378
+ }
2379
+ },
2380
+ "node_modules/regenerator-runtime": {
2381
+ "version": "0.14.0",
2382
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz",
2383
+ "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="
2384
+ },
2385
+ "node_modules/remove-accents": {
2386
+ "version": "0.5.0",
2387
+ "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.5.0.tgz",
2388
+ "integrity": "sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A=="
2389
+ },
2390
+ "node_modules/resolve": {
2391
+ "version": "1.22.8",
2392
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
2393
+ "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==",
2394
+ "license": "MIT",
2395
+ "dependencies": {
2396
+ "is-core-module": "^2.13.0",
2397
+ "path-parse": "^1.0.7",
2398
+ "supports-preserve-symlinks-flag": "^1.0.0"
2399
+ },
2400
+ "bin": {
2401
+ "resolve": "bin/resolve"
2402
+ },
2403
+ "funding": {
2404
+ "url": "https://github.com/sponsors/ljharb"
2405
+ }
2406
+ },
2407
+ "node_modules/resolve-from": {
2408
+ "version": "4.0.0",
2409
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
2410
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
2411
+ "license": "MIT",
2412
+ "engines": {
2413
+ "node": ">=4"
2414
+ }
2415
+ },
2416
+ "node_modules/rollup": {
2417
+ "version": "4.28.1",
2418
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.1.tgz",
2419
+ "integrity": "sha512-61fXYl/qNVinKmGSTHAZ6Yy8I3YIJC/r2m9feHo6SwVAVcLT5MPwOUFe7EuURA/4m0NR8lXG4BBXuo/IZEsjMg==",
2420
+ "dev": true,
2421
+ "license": "MIT",
2422
+ "dependencies": {
2423
+ "@types/estree": "1.0.6"
2424
+ },
2425
+ "bin": {
2426
+ "rollup": "dist/bin/rollup"
2427
+ },
2428
+ "engines": {
2429
+ "node": ">=18.0.0",
2430
+ "npm": ">=8.0.0"
2431
+ },
2432
+ "optionalDependencies": {
2433
+ "@rollup/rollup-android-arm-eabi": "4.28.1",
2434
+ "@rollup/rollup-android-arm64": "4.28.1",
2435
+ "@rollup/rollup-darwin-arm64": "4.28.1",
2436
+ "@rollup/rollup-darwin-x64": "4.28.1",
2437
+ "@rollup/rollup-freebsd-arm64": "4.28.1",
2438
+ "@rollup/rollup-freebsd-x64": "4.28.1",
2439
+ "@rollup/rollup-linux-arm-gnueabihf": "4.28.1",
2440
+ "@rollup/rollup-linux-arm-musleabihf": "4.28.1",
2441
+ "@rollup/rollup-linux-arm64-gnu": "4.28.1",
2442
+ "@rollup/rollup-linux-arm64-musl": "4.28.1",
2443
+ "@rollup/rollup-linux-loongarch64-gnu": "4.28.1",
2444
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.28.1",
2445
+ "@rollup/rollup-linux-riscv64-gnu": "4.28.1",
2446
+ "@rollup/rollup-linux-s390x-gnu": "4.28.1",
2447
+ "@rollup/rollup-linux-x64-gnu": "4.28.1",
2448
+ "@rollup/rollup-linux-x64-musl": "4.28.1",
2449
+ "@rollup/rollup-win32-arm64-msvc": "4.28.1",
2450
+ "@rollup/rollup-win32-ia32-msvc": "4.28.1",
2451
+ "@rollup/rollup-win32-x64-msvc": "4.28.1",
2452
+ "fsevents": "~2.3.2"
2453
+ }
2454
+ },
2455
+ "node_modules/scheduler": {
2456
+ "version": "0.25.0",
2457
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz",
2458
+ "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==",
2459
+ "license": "MIT"
2460
+ },
2461
+ "node_modules/semver": {
2462
+ "version": "6.3.1",
2463
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
2464
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
2465
+ "dev": true,
2466
+ "license": "ISC",
2467
+ "bin": {
2468
+ "semver": "bin/semver.js"
2469
+ }
2470
+ },
2471
+ "node_modules/source-map": {
2472
+ "version": "0.5.7",
2473
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
2474
+ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
2475
+ "license": "BSD-3-Clause",
2476
+ "engines": {
2477
+ "node": ">=0.10.0"
2478
+ }
2479
+ },
2480
+ "node_modules/source-map-js": {
2481
+ "version": "1.2.1",
2482
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
2483
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
2484
+ "dev": true,
2485
+ "license": "BSD-3-Clause",
2486
+ "engines": {
2487
+ "node": ">=0.10.0"
2488
+ }
2489
+ },
2490
+ "node_modules/stylis": {
2491
+ "version": "4.2.0",
2492
+ "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz",
2493
+ "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw=="
2494
+ },
2495
+ "node_modules/supports-preserve-symlinks-flag": {
2496
+ "version": "1.0.0",
2497
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
2498
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
2499
+ "license": "MIT",
2500
+ "engines": {
2501
+ "node": ">= 0.4"
2502
+ },
2503
+ "funding": {
2504
+ "url": "https://github.com/sponsors/ljharb"
2505
+ }
2506
+ },
2507
+ "node_modules/typescript": {
2508
+ "version": "5.7.2",
2509
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz",
2510
+ "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==",
2511
+ "dev": true,
2512
+ "license": "Apache-2.0",
2513
+ "bin": {
2514
+ "tsc": "bin/tsc",
2515
+ "tsserver": "bin/tsserver"
2516
+ },
2517
+ "engines": {
2518
+ "node": ">=14.17"
2519
+ }
2520
+ },
2521
+ "node_modules/update-browserslist-db": {
2522
+ "version": "1.1.1",
2523
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz",
2524
+ "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==",
2525
+ "dev": true,
2526
+ "funding": [
2527
+ {
2528
+ "type": "opencollective",
2529
+ "url": "https://opencollective.com/browserslist"
2530
+ },
2531
+ {
2532
+ "type": "tidelift",
2533
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
2534
+ },
2535
+ {
2536
+ "type": "github",
2537
+ "url": "https://github.com/sponsors/ai"
2538
+ }
2539
+ ],
2540
+ "license": "MIT",
2541
+ "dependencies": {
2542
+ "escalade": "^3.2.0",
2543
+ "picocolors": "^1.1.0"
2544
+ },
2545
+ "bin": {
2546
+ "update-browserslist-db": "cli.js"
2547
+ },
2548
+ "peerDependencies": {
2549
+ "browserslist": ">= 4.21.0"
2550
+ }
2551
+ },
2552
+ "node_modules/vite": {
2553
+ "version": "6.0.3",
2554
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.3.tgz",
2555
+ "integrity": "sha512-Cmuo5P0ENTN6HxLSo6IHsjCLn/81Vgrp81oaiFFMRa8gGDj5xEjIcEpf2ZymZtZR8oU0P2JX5WuUp/rlXcHkAw==",
2556
+ "dev": true,
2557
+ "license": "MIT",
2558
+ "dependencies": {
2559
+ "esbuild": "^0.24.0",
2560
+ "postcss": "^8.4.49",
2561
+ "rollup": "^4.23.0"
2562
+ },
2563
+ "bin": {
2564
+ "vite": "bin/vite.js"
2565
+ },
2566
+ "engines": {
2567
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
2568
+ },
2569
+ "funding": {
2570
+ "url": "https://github.com/vitejs/vite?sponsor=1"
2571
+ },
2572
+ "optionalDependencies": {
2573
+ "fsevents": "~2.3.3"
2574
+ },
2575
+ "peerDependencies": {
2576
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
2577
+ "jiti": ">=1.21.0",
2578
+ "less": "*",
2579
+ "lightningcss": "^1.21.0",
2580
+ "sass": "*",
2581
+ "sass-embedded": "*",
2582
+ "stylus": "*",
2583
+ "sugarss": "*",
2584
+ "terser": "^5.16.0",
2585
+ "tsx": "^4.8.1",
2586
+ "yaml": "^2.4.2"
2587
+ },
2588
+ "peerDependenciesMeta": {
2589
+ "@types/node": {
2590
+ "optional": true
2591
+ },
2592
+ "jiti": {
2593
+ "optional": true
2594
+ },
2595
+ "less": {
2596
+ "optional": true
2597
+ },
2598
+ "lightningcss": {
2599
+ "optional": true
2600
+ },
2601
+ "sass": {
2602
+ "optional": true
2603
+ },
2604
+ "sass-embedded": {
2605
+ "optional": true
2606
+ },
2607
+ "stylus": {
2608
+ "optional": true
2609
+ },
2610
+ "sugarss": {
2611
+ "optional": true
2612
+ },
2613
+ "terser": {
2614
+ "optional": true
2615
+ },
2616
+ "tsx": {
2617
+ "optional": true
2618
+ },
2619
+ "yaml": {
2620
+ "optional": true
2621
+ }
2622
+ }
2623
+ },
2624
+ "node_modules/yallist": {
2625
+ "version": "3.1.1",
2626
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
2627
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
2628
+ "dev": true,
2629
+ "license": "ISC"
2630
+ },
2631
+ "node_modules/yaml": {
2632
+ "version": "2.6.1",
2633
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.1.tgz",
2634
+ "integrity": "sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==",
2635
+ "dev": true,
2636
+ "license": "ISC",
2637
+ "optional": true,
2638
+ "peer": true,
2639
+ "bin": {
2640
+ "yaml": "bin.mjs"
2641
+ },
2642
+ "engines": {
2643
+ "node": ">= 14"
2644
+ }
2645
+ }
2646
+ }
2647
+ }