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