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,2390 @@
1
+ import { type NextApiRequest, type NextApiResponse } from 'next';
2
+
3
+ export default async function handler(
4
+ req: NextApiRequest,
5
+ res: NextApiResponse,
6
+ ) {
7
+ if (process.env.NODE_ENV === 'development') {
8
+ await new Promise((resolve) => setTimeout(resolve, 500));
9
+ }
10
+ const { phoneNumber } = req.query;
11
+ const data = fullData.find(
12
+ (item) =>
13
+ item.phoneNumber
14
+ .replaceAll('-', '')
15
+ .replaceAll('.', '')
16
+ .replaceAll('(', '')
17
+ .replaceAll(')', '') === phoneNumber,
18
+ );
19
+ res.status(200).json(data);
20
+ }
21
+
22
+ const fullData = [
23
+ {
24
+ firstName: 'Hermann',
25
+ lastName: 'Gusikowski',
26
+ address: '6099 Douglas Creek',
27
+ state: 'Georgia',
28
+ phoneNumber: '421.698.9405',
29
+ lastLogin: '2023-08-16T03:21:08.244Z',
30
+ favoriteMusic: 'Blues',
31
+ favoriteSong: 'Tom Dooley',
32
+ quote:
33
+ 'If we transmit the application, we can get to the PNG driver through the auxiliary SMS port!',
34
+ },
35
+ {
36
+ firstName: 'Milford',
37
+ lastName: 'Torp',
38
+ address: '410 Vicenta Radial',
39
+ state: 'Alabama',
40
+ phoneNumber: '805-728-7771 x75361',
41
+ lastLogin: '2023-05-15T02:45:50.684Z',
42
+ favoriteMusic: 'Funk',
43
+ favoriteSong: 'Another Brick in the Wall (part 2)',
44
+ quote:
45
+ 'The AGP hard drive is down, generate the online port so we can generate the TCP program!',
46
+ },
47
+ {
48
+ firstName: 'Alda',
49
+ lastName: 'Koss',
50
+ address: '1604 Bernardo Flats',
51
+ state: 'Louisiana',
52
+ phoneNumber: '860.628.3618',
53
+ lastLogin: '2022-02-26T03:23:25.877Z',
54
+ favoriteMusic: 'Metal',
55
+ favoriteSong: 'Doo Wop (That Thing)',
56
+ quote:
57
+ "overriding the bandwidth won't do anything, we need to input the back-end JBOD system!",
58
+ },
59
+ {
60
+ firstName: 'Eulah',
61
+ lastName: 'Lockman',
62
+ address: "7072 D'Amore Shoal",
63
+ state: 'Tennessee',
64
+ phoneNumber: '1-394-293-7730 x512',
65
+ lastLogin: '2019-03-31T17:53:49.187Z',
66
+ favoriteMusic: 'Country',
67
+ favoriteSong: 'Over There',
68
+ quote:
69
+ 'Use the bluetooth SQL sensor, then you can program the mobile interface!',
70
+ },
71
+ {
72
+ firstName: 'Justen',
73
+ lastName: 'Hilpert',
74
+ address: '386 Murray Walks',
75
+ state: 'North Carolina',
76
+ phoneNumber: '507.430.8224 x561',
77
+ lastLogin: '2023-10-02T19:50:58.197Z',
78
+ favoriteMusic: 'Classical',
79
+ favoriteSong: 'Maniac',
80
+ quote:
81
+ 'Use the auxiliary PNG matrix, then you can calculate the neural transmitter!',
82
+ },
83
+ {
84
+ firstName: 'Vergie',
85
+ lastName: 'Beatty',
86
+ address: '6864 Mann Haven',
87
+ state: 'Maryland',
88
+ phoneNumber: '1-538-794-7917',
89
+ lastLogin: '2023-06-14T00:27:49.332Z',
90
+ favoriteMusic: 'Country',
91
+ favoriteSong: 'You Sexy Thing',
92
+ quote:
93
+ "bypassing the card won't do anything, we need to hack the 1080p ASCII panel!",
94
+ },
95
+ {
96
+ firstName: 'Hosea',
97
+ lastName: 'Herzog',
98
+ address: '95688 Ada Walk',
99
+ state: 'Alabama',
100
+ phoneNumber: '1-330-864-0222 x01172',
101
+ lastLogin: '2022-08-31T20:33:28.574Z',
102
+ favoriteMusic: 'Soul',
103
+ favoriteSong: 'Dance to the Music',
104
+ quote:
105
+ "I'll synthesize the cross-platform ADP card, that should sensor the USB firewall!",
106
+ },
107
+ {
108
+ firstName: 'Dillan',
109
+ lastName: 'Effertz',
110
+ address: '94317 Hahn Causeway',
111
+ state: 'New York',
112
+ phoneNumber: '660-433-6667',
113
+ lastLogin: '2020-12-02T02:03:50.082Z',
114
+ favoriteMusic: 'Funk',
115
+ favoriteSong: "Lookin' Out My Back Door",
116
+ quote:
117
+ "indexing the microchip won't do anything, we need to copy the digital GB driver!",
118
+ },
119
+ {
120
+ firstName: 'Ambrose',
121
+ lastName: 'Considine',
122
+ address: '365 Fatima Cape',
123
+ state: 'Washington',
124
+ phoneNumber: '(628) 694-0650',
125
+ lastLogin: '2022-11-29T11:26:09.395Z',
126
+ favoriteMusic: 'Soul',
127
+ favoriteSong: "I Love Rock 'n' Roll",
128
+ quote: "You can't navigate the card without indexing the haptic HEX array!",
129
+ },
130
+ {
131
+ firstName: 'Domenick',
132
+ lastName: 'Runte',
133
+ address: '07821 Boyle Mountain',
134
+ state: 'New York',
135
+ phoneNumber: '444-660-8840',
136
+ lastLogin: '2021-06-23T02:44:17.754Z',
137
+ favoriteMusic: 'Reggae',
138
+ favoriteSong: 'The Letter',
139
+ quote:
140
+ 'The UDP program is down, navigate the open-source pixel so we can calculate the SMTP panel!',
141
+ },
142
+ {
143
+ firstName: 'Izaiah',
144
+ lastName: 'Renner',
145
+ address: '286 Kuphal Circles',
146
+ state: 'Wyoming',
147
+ phoneNumber: '(350) 379-3779 x15509',
148
+ lastLogin: '2020-08-23T00:06:00.466Z',
149
+ favoriteMusic: 'Non Music',
150
+ favoriteSong: 'Like a Rolling Stone',
151
+ quote:
152
+ 'Try to reboot the DNS circuit, maybe it will back up the cross-platform pixel!',
153
+ },
154
+ {
155
+ firstName: 'Ricardo',
156
+ lastName: 'Ziemann',
157
+ address: '66351 Ethan Light',
158
+ state: 'Minnesota',
159
+ phoneNumber: '(939) 926-9074',
160
+ lastLogin: '2021-08-01T09:45:40.069Z',
161
+ favoriteMusic: 'Latin',
162
+ favoriteSong: "Papa's Got a Brand New Bag",
163
+ quote:
164
+ 'If we connect the application, we can get to the USB array through the digital HTTP microchip!',
165
+ },
166
+ {
167
+ firstName: 'Clement',
168
+ lastName: 'Cronin',
169
+ address: '60065 Chris Knoll',
170
+ state: 'Nebraska',
171
+ phoneNumber: '(981) 319-5150 x92726',
172
+ lastLogin: '2022-04-05T21:20:30.512Z',
173
+ favoriteMusic: 'Rap',
174
+ favoriteSong: 'Need You Tonight',
175
+ quote:
176
+ 'If we bypass the bus, we can get to the UTF8 driver through the open-source GB bus!',
177
+ },
178
+ {
179
+ firstName: 'Bobby',
180
+ lastName: 'Schuster',
181
+ address: '555 Mann Trace',
182
+ state: 'Arizona',
183
+ phoneNumber: '432-605-5021',
184
+ lastLogin: '2020-07-23T16:01:04.026Z',
185
+ favoriteMusic: 'Rock',
186
+ favoriteSong: 'Frenesi',
187
+ quote:
188
+ 'Use the bluetooth HEX driver, then you can hack the redundant array!',
189
+ },
190
+ {
191
+ firstName: 'Alfreda',
192
+ lastName: 'Sporer',
193
+ address: '068 Nader Mountain',
194
+ state: 'New Hampshire',
195
+ phoneNumber: '940-724-6142',
196
+ lastLogin: '2021-02-03T14:18:32.112Z',
197
+ favoriteMusic: 'Metal',
198
+ favoriteSong: 'Need You Now',
199
+ quote:
200
+ "bypassing the protocol won't do anything, we need to copy the virtual IB port!",
201
+ },
202
+ {
203
+ firstName: 'Gussie',
204
+ lastName: 'Walter',
205
+ address: '58461 Pat Grove',
206
+ state: 'Alabama',
207
+ phoneNumber: '520-922-7671',
208
+ lastLogin: '2022-02-28T16:51:11.235Z',
209
+ favoriteMusic: 'Reggae',
210
+ favoriteSong: "Pistol Packin' Mama",
211
+ quote:
212
+ 'The SDD alarm is down, bypass the digital interface so we can copy the JSON card!',
213
+ },
214
+ {
215
+ firstName: 'Javier',
216
+ lastName: 'Douglas',
217
+ address: '162 Pacocha Ranch',
218
+ state: 'New York',
219
+ phoneNumber: '(370) 993-8299',
220
+ lastLogin: '2021-07-24T02:38:50.640Z',
221
+ favoriteMusic: 'World',
222
+ favoriteSong: 'What Goes Around Comes Around',
223
+ quote:
224
+ "You can't generate the system without bypassing the primary XSS firewall!",
225
+ },
226
+ {
227
+ firstName: 'Sydney',
228
+ lastName: 'Armstrong',
229
+ address: '725 Stracke Landing',
230
+ state: 'Mississippi',
231
+ phoneNumber: '910.942.8141',
232
+ lastLogin: '2019-09-18T01:17:49.184Z',
233
+ favoriteMusic: 'Country',
234
+ favoriteSong: 'Weak',
235
+ quote:
236
+ 'If we index the sensor, we can get to the AGP capacitor through the online VGA capacitor!',
237
+ },
238
+ {
239
+ firstName: 'Justine',
240
+ lastName: 'Langworth',
241
+ address: '772 Casimer Shoal',
242
+ state: 'South Dakota',
243
+ phoneNumber: '(350) 810-1145',
244
+ lastLogin: '2020-08-03T16:43:41.496Z',
245
+ favoriteMusic: 'Rock',
246
+ favoriteSong: 'Mood Indigo',
247
+ quote:
248
+ 'Try to calculate the TCP monitor, maybe it will transmit the auxiliary card!',
249
+ },
250
+ {
251
+ firstName: 'Anabel',
252
+ lastName: 'Leannon',
253
+ address: '51230 Dewayne Camp',
254
+ state: 'Kansas',
255
+ phoneNumber: '1-888-752-3953',
256
+ lastLogin: '2020-06-11T11:33:12.595Z',
257
+ favoriteMusic: 'Country',
258
+ favoriteSong: 'We Are Family',
259
+ quote:
260
+ "I'll quantify the online DRAM protocol, that should panel the GB capacitor!",
261
+ },
262
+ {
263
+ firstName: 'Ally',
264
+ lastName: 'Goodwin',
265
+ address: '707 Howe Mountains',
266
+ state: 'West Virginia',
267
+ phoneNumber: '1-786-215-5832 x4409',
268
+ lastLogin: '2020-09-03T17:43:12.049Z',
269
+ favoriteMusic: 'Metal',
270
+ favoriteSong: 'You Make Me Feel Brand New',
271
+ quote:
272
+ 'Try to quantify the CSS interface, maybe it will synthesize the wireless capacitor!',
273
+ },
274
+ {
275
+ firstName: 'Tianna',
276
+ lastName: 'Lang',
277
+ address: '200 Labadie Vista',
278
+ state: 'Montana',
279
+ phoneNumber: '697-639-3479 x6460',
280
+ lastLogin: '2020-05-22T10:32:45.323Z',
281
+ favoriteMusic: 'Rock',
282
+ favoriteSong: 'Sweet Georgia Brown',
283
+ quote:
284
+ 'Use the digital SQL port, then you can transmit the virtual microchip!',
285
+ },
286
+ {
287
+ firstName: 'Noemi',
288
+ lastName: 'Marquardt',
289
+ address: '8239 Paucek Prairie',
290
+ state: 'North Carolina',
291
+ phoneNumber: '1-677-610-6588',
292
+ lastLogin: '2021-01-24T03:05:56.525Z',
293
+ favoriteMusic: 'Pop',
294
+ favoriteSong: "You're So Vain",
295
+ quote: 'We need to synthesize the open-source FTP circuit!',
296
+ },
297
+ {
298
+ firstName: 'Leonardo',
299
+ lastName: 'Sawayn',
300
+ address: '12643 Howell Locks',
301
+ state: 'Missouri',
302
+ phoneNumber: '283-273-3920 x41098',
303
+ lastLogin: '2024-01-07T23:27:43.979Z',
304
+ favoriteMusic: 'Rock',
305
+ favoriteSong: 'Layla',
306
+ quote:
307
+ "overriding the bandwidth won't do anything, we need to back up the bluetooth HTTP pixel!",
308
+ },
309
+ {
310
+ firstName: 'Melany',
311
+ lastName: 'Corkery',
312
+ address: '333 Upton Manor',
313
+ state: 'Arkansas',
314
+ phoneNumber: '(826) 688-1496 x638',
315
+ lastLogin: '2019-12-25T23:24:07.344Z',
316
+ favoriteMusic: 'Jazz',
317
+ favoriteSong: "Papa's Got a Brand New Bag",
318
+ quote:
319
+ "You can't reboot the array without quantifying the redundant AI feed!",
320
+ },
321
+ {
322
+ firstName: 'Terence',
323
+ lastName: 'McLaughlin',
324
+ address: '3742 Araceli Estate',
325
+ state: 'Arkansas',
326
+ phoneNumber: '(212) 956-0631',
327
+ lastLogin: '2022-02-02T00:15:28.863Z',
328
+ favoriteMusic: 'Reggae',
329
+ favoriteSong: 'Keep On Loving You',
330
+ quote:
331
+ "compressing the hard drive won't do anything, we need to navigate the primary HTTP card!",
332
+ },
333
+ {
334
+ firstName: 'Jaime',
335
+ lastName: 'Block',
336
+ address: '4862 Estelle Hill',
337
+ state: 'Georgia',
338
+ phoneNumber: '897-843-3047 x0425',
339
+ lastLogin: '2019-08-26T10:44:40.364Z',
340
+ favoriteMusic: 'Soul',
341
+ favoriteSong: "Jessie's Girl",
342
+ quote: 'We need to copy the online COM pixel!',
343
+ },
344
+ {
345
+ firstName: 'Bernita',
346
+ lastName: 'Hagenes',
347
+ address: '53797 Hirthe Hills',
348
+ state: 'Pennsylvania',
349
+ phoneNumber: '814.285.1779 x462',
350
+ lastLogin: '2021-05-10T03:42:34.504Z',
351
+ favoriteMusic: 'Latin',
352
+ favoriteSong: 'Give Me Everything',
353
+ quote:
354
+ 'If we hack the hard drive, we can get to the RSS array through the back-end CSS alarm!',
355
+ },
356
+ {
357
+ firstName: 'Friedrich',
358
+ lastName: 'Bergstrom',
359
+ address: '90573 Kihn Parkway',
360
+ state: 'Louisiana',
361
+ phoneNumber: '1-869-704-2983',
362
+ lastLogin: '2020-01-07T12:18:19.912Z',
363
+ favoriteMusic: 'Pop',
364
+ favoriteSong: 'If (They Made Me a King)',
365
+ quote:
366
+ "programming the port won't do anything, we need to calculate the open-source ASCII card!",
367
+ },
368
+ {
369
+ firstName: 'Sarina',
370
+ lastName: 'Gislason',
371
+ address: '00854 Doyle Road',
372
+ state: 'Idaho',
373
+ phoneNumber: '(683) 305-5712',
374
+ lastLogin: '2022-08-23T10:17:52.549Z',
375
+ favoriteMusic: 'Jazz',
376
+ favoriteSong: 'Paperback Writer',
377
+ quote:
378
+ 'Try to quantify the GB capacitor, maybe it will calculate the 1080p matrix!',
379
+ },
380
+ {
381
+ firstName: 'Florian',
382
+ lastName: 'Marks',
383
+ address: '46979 Padberg Divide',
384
+ state: 'Mississippi',
385
+ phoneNumber: '(463) 238-4575 x226',
386
+ lastLogin: '2020-11-25T16:12:32.048Z',
387
+ favoriteMusic: 'Rock',
388
+ favoriteSong: 'Paper Planes',
389
+ quote:
390
+ 'The ASCII matrix is down, connect the multi-byte array so we can parse the XML pixel!',
391
+ },
392
+ {
393
+ firstName: 'Clare',
394
+ lastName: 'Carter',
395
+ address: '979 Berge Isle',
396
+ state: 'New Mexico',
397
+ phoneNumber: '895-659-5983',
398
+ lastLogin: '2019-04-25T19:26:45.034Z',
399
+ favoriteMusic: 'Blues',
400
+ favoriteSong: 'Hungry Heart',
401
+ quote:
402
+ 'Use the mobile SAS panel, then you can calculate the 1080p circuit!',
403
+ },
404
+ {
405
+ firstName: 'Mariam',
406
+ lastName: 'Fritsch',
407
+ address: '246 Tara Mews',
408
+ state: 'Arkansas',
409
+ phoneNumber: '1-851-297-9371 x2937',
410
+ lastLogin: '2021-01-26T23:59:59.607Z',
411
+ favoriteMusic: 'Funk',
412
+ favoriteSong: "I've Heard That Song Before",
413
+ quote: "You can't parse the monitor without copying the 1080p SMS system!",
414
+ },
415
+ {
416
+ firstName: 'Jamel',
417
+ lastName: 'Balistreri',
418
+ address: '1702 Reinhold Crossroad',
419
+ state: 'New York',
420
+ phoneNumber: '382.405.3098',
421
+ lastLogin: '2020-11-15T05:12:40.001Z',
422
+ favoriteMusic: 'Non Music',
423
+ favoriteSong: "Don't Be Cruel",
424
+ quote:
425
+ 'Use the wireless SSL bandwidth, then you can copy the solid state bandwidth!',
426
+ },
427
+ {
428
+ firstName: 'Alexie',
429
+ lastName: 'Blanda',
430
+ address: '899 Mayer Forge',
431
+ state: 'Ohio',
432
+ phoneNumber: '1-213-660-5875 x311',
433
+ lastLogin: '2023-12-17T18:45:13.644Z',
434
+ favoriteMusic: 'Latin',
435
+ favoriteSong: 'Stairway to Heaven',
436
+ quote:
437
+ 'If we reboot the capacitor, we can get to the HTTP transmitter through the primary RSS system!',
438
+ },
439
+ {
440
+ firstName: 'Cecilia',
441
+ lastName: 'Kirlin',
442
+ address: '887 Legros Forest',
443
+ state: 'Texas',
444
+ phoneNumber: '(463) 229-3940 x7543',
445
+ lastLogin: '2019-12-18T20:31:16.179Z',
446
+ favoriteMusic: 'Soul',
447
+ favoriteSong: "I Still Haven't Found What I'm Looking For",
448
+ quote:
449
+ "compressing the matrix won't do anything, we need to quantify the cross-platform HEX pixel!",
450
+ },
451
+ {
452
+ firstName: 'Retta',
453
+ lastName: 'Gaylord',
454
+ address: '22556 Johathan Inlet',
455
+ state: 'Nebraska',
456
+ phoneNumber: '1-618-666-7937',
457
+ lastLogin: '2019-12-16T15:12:19.121Z',
458
+ favoriteMusic: 'Reggae',
459
+ favoriteSong: 'Pony Time',
460
+ quote:
461
+ 'Try to compress the CLI pixel, maybe it will input the haptic feed!',
462
+ },
463
+ {
464
+ firstName: 'Damon',
465
+ lastName: 'Conroy',
466
+ address: '5891 Darius Ways',
467
+ state: 'Kentucky',
468
+ phoneNumber: '723.651.0869 x86999',
469
+ lastLogin: '2023-12-13T09:31:21.951Z',
470
+ favoriteMusic: 'Folk',
471
+ favoriteSong: 'Coming Up',
472
+ quote:
473
+ 'Use the auxiliary JBOD alarm, then you can generate the auxiliary pixel!',
474
+ },
475
+ {
476
+ firstName: 'Jerrod',
477
+ lastName: 'Roberts',
478
+ address: '97199 Narciso Mountain',
479
+ state: 'Wyoming',
480
+ phoneNumber: '1-662-481-8607',
481
+ lastLogin: '2023-08-07T15:45:36.979Z',
482
+ favoriteMusic: 'Reggae',
483
+ favoriteSong: 'Boulevard of Broken Dreams',
484
+ quote: 'We need to reboot the neural IB card!',
485
+ },
486
+ {
487
+ firstName: 'Otilia',
488
+ lastName: 'Schamberger',
489
+ address: '02131 Juvenal Squares',
490
+ state: 'West Virginia',
491
+ phoneNumber: '1-900-962-9499',
492
+ lastLogin: '2019-09-24T11:47:38.258Z',
493
+ favoriteMusic: 'Stage And Screen',
494
+ favoriteSong: 'Hey Paula',
495
+ quote:
496
+ "You can't transmit the driver without generating the bluetooth RSS alarm!",
497
+ },
498
+ {
499
+ firstName: 'Madilyn',
500
+ lastName: 'Ratke',
501
+ address: '2287 Howell Ways',
502
+ state: 'West Virginia',
503
+ phoneNumber: '1-241-356-6434',
504
+ lastLogin: '2021-12-18T02:54:18.617Z',
505
+ favoriteMusic: 'Classical',
506
+ favoriteSong: "Puttin' on the Ritz",
507
+ quote:
508
+ "indexing the interface won't do anything, we need to input the optical SMS matrix!",
509
+ },
510
+ {
511
+ firstName: 'Merritt',
512
+ lastName: 'Tillman',
513
+ address: '6906 Ahmed Vista',
514
+ state: 'Wyoming',
515
+ phoneNumber: '(830) 387-9321',
516
+ lastLogin: '2021-04-12T19:29:16.634Z',
517
+ favoriteMusic: 'World',
518
+ favoriteSong: '(Let Me Be Your) Teddy Bear',
519
+ quote:
520
+ 'The GB card is down, navigate the virtual panel so we can hack the AI sensor!',
521
+ },
522
+ {
523
+ firstName: 'Lenna',
524
+ lastName: 'Kilback',
525
+ address: '7565 Dicki Mountains',
526
+ state: 'Montana',
527
+ phoneNumber: '(437) 317-0476 x9463',
528
+ lastLogin: '2021-08-20T03:12:29.217Z',
529
+ favoriteMusic: 'Metal',
530
+ favoriteSong: 'Viva La Vida',
531
+ quote:
532
+ "copying the feed won't do anything, we need to calculate the auxiliary PNG sensor!",
533
+ },
534
+ {
535
+ firstName: 'Justice',
536
+ lastName: 'Wisozk',
537
+ address: '632 Ahmed Camp',
538
+ state: 'Pennsylvania',
539
+ phoneNumber: '1-594-770-7724 x090',
540
+ lastLogin: '2020-07-29T06:29:11.647Z',
541
+ favoriteMusic: 'Stage And Screen',
542
+ favoriteSong: 'Save the Last Dance For Me',
543
+ quote: 'We need to compress the open-source IP application!',
544
+ },
545
+ {
546
+ firstName: 'Laurianne',
547
+ lastName: 'Ledner',
548
+ address: '76981 Spencer Walks',
549
+ state: 'Oklahoma',
550
+ phoneNumber: '(685) 701-3169',
551
+ lastLogin: '2023-03-22T17:41:44.981Z',
552
+ favoriteMusic: 'Pop',
553
+ favoriteSong: "Don't Let the Stars Get in Your Eyes",
554
+ quote:
555
+ "I'll hack the digital VGA transmitter, that should bus the RSS capacitor!",
556
+ },
557
+ {
558
+ firstName: 'Mossie',
559
+ lastName: 'Prosacco',
560
+ address: '9713 Mante Isle',
561
+ state: 'Delaware',
562
+ phoneNumber: '(231) 851-7102',
563
+ lastLogin: '2020-04-04T18:48:32.147Z',
564
+ favoriteMusic: 'Stage And Screen',
565
+ favoriteSong: "Walk Don't Run",
566
+ quote:
567
+ 'Use the optical SSL microchip, then you can generate the open-source card!',
568
+ },
569
+ {
570
+ firstName: 'Faye',
571
+ lastName: 'Bashirian',
572
+ address: '01586 Stamm Harbors',
573
+ state: 'Alaska',
574
+ phoneNumber: '769-497-8752',
575
+ lastLogin: '2020-04-26T03:43:26.581Z',
576
+ favoriteMusic: 'Funk',
577
+ favoriteSong: "Makin' Whoopee",
578
+ quote:
579
+ 'Use the open-source THX program, then you can reboot the primary panel!',
580
+ },
581
+ {
582
+ firstName: 'Myra',
583
+ lastName: 'Jenkins',
584
+ address: '201 Schowalter Plaza',
585
+ state: 'Maryland',
586
+ phoneNumber: '(569) 376-4319 x92789',
587
+ lastLogin: '2022-08-10T15:03:00.847Z',
588
+ favoriteMusic: 'Classical',
589
+ favoriteSong: 'American Woman',
590
+ quote:
591
+ "backing up the bandwidth won't do anything, we need to reboot the digital ASCII monitor!",
592
+ },
593
+ {
594
+ firstName: 'Wyatt',
595
+ lastName: 'Macejkovic',
596
+ address: '6808 Miracle Isle',
597
+ state: 'Nebraska',
598
+ phoneNumber: '328.615.4206',
599
+ lastLogin: '2021-08-26T11:32:17.150Z',
600
+ favoriteMusic: 'Classical',
601
+ favoriteSong: 'When You Wish Upon a Star',
602
+ quote:
603
+ 'Try to override the AI program, maybe it will calculate the bluetooth panel!',
604
+ },
605
+ {
606
+ firstName: 'Kamren',
607
+ lastName: 'Blanda',
608
+ address: '1674 Mueller Pass',
609
+ state: 'Idaho',
610
+ phoneNumber: '1-907-688-9197',
611
+ lastLogin: '2023-03-27T01:40:33.020Z',
612
+ favoriteMusic: 'Pop',
613
+ favoriteSong: 'Every Breath You Take',
614
+ quote:
615
+ 'Use the optical ADP hard drive, then you can bypass the open-source capacitor!',
616
+ },
617
+ {
618
+ firstName: 'Earl',
619
+ lastName: 'Fadel',
620
+ address: '692 Erdman Lock',
621
+ state: 'Missouri',
622
+ phoneNumber: '(738) 457-8668',
623
+ lastLogin: '2019-11-24T21:49:57.663Z',
624
+ favoriteMusic: 'Hip Hop',
625
+ favoriteSong: 'Feel Like Making Love',
626
+ quote: 'We need to compress the auxiliary PCI alarm!',
627
+ },
628
+ {
629
+ firstName: 'Floyd',
630
+ lastName: 'Quitzon',
631
+ address: '4501 Bernhard Trafficway',
632
+ state: 'Wyoming',
633
+ phoneNumber: '345-252-3993 x137',
634
+ lastLogin: '2020-04-28T04:01:49.595Z',
635
+ favoriteMusic: 'Stage And Screen',
636
+ favoriteSong: 'Your Song',
637
+ quote:
638
+ 'If we program the protocol, we can get to the ADP alarm through the virtual PCI circuit!',
639
+ },
640
+ {
641
+ firstName: 'Verlie',
642
+ lastName: 'Blick',
643
+ address: '448 Mandy Stream',
644
+ state: 'Iowa',
645
+ phoneNumber: '851.213.1056 x05869',
646
+ lastLogin: '2021-08-19T22:36:17.240Z',
647
+ favoriteMusic: 'Stage And Screen',
648
+ favoriteSong: 'Fast Car',
649
+ quote:
650
+ 'Try to reboot the JSON hard drive, maybe it will reboot the online protocol!',
651
+ },
652
+ {
653
+ firstName: 'Boyd',
654
+ lastName: 'Lehner',
655
+ address: '1745 Patricia Trail',
656
+ state: 'Georgia',
657
+ phoneNumber: '1-823-463-7983',
658
+ lastLogin: '2021-05-20T10:03:37.877Z',
659
+ favoriteMusic: 'Jazz',
660
+ favoriteSong: 'Whatcha Say',
661
+ quote:
662
+ 'Use the online HDD port, then you can compress the redundant circuit!',
663
+ },
664
+ {
665
+ firstName: 'Vaughn',
666
+ lastName: 'Altenwerth',
667
+ address: '86164 Stamm Trail',
668
+ state: 'Rhode Island',
669
+ phoneNumber: '387.658.0455',
670
+ lastLogin: '2020-03-27T20:24:35.946Z',
671
+ favoriteMusic: 'Blues',
672
+ favoriteSong: 'I Got You (I Feel Good)',
673
+ quote:
674
+ 'The SAS capacitor is down, synthesize the mobile monitor so we can parse the SDD sensor!',
675
+ },
676
+ {
677
+ firstName: 'Dion',
678
+ lastName: 'Dicki',
679
+ address: '906 Hoeger Circles',
680
+ state: 'Tennessee',
681
+ phoneNumber: '(620) 402-0926 x2534',
682
+ lastLogin: '2019-12-31T16:23:51.835Z',
683
+ favoriteMusic: 'Folk',
684
+ favoriteSong: "Don't You (Forget About Me)",
685
+ quote:
686
+ 'Try to parse the VGA sensor, maybe it will synthesize the haptic application!',
687
+ },
688
+ {
689
+ firstName: 'Maxwell',
690
+ lastName: 'Turcotte',
691
+ address: '14101 Emard Terrace',
692
+ state: 'Oklahoma',
693
+ phoneNumber: '1-982-446-5308 x464',
694
+ lastLogin: '2021-12-25T15:41:17.325Z',
695
+ favoriteMusic: 'World',
696
+ favoriteSong: 'Dilemma',
697
+ quote:
698
+ "backing up the alarm won't do anything, we need to input the back-end PCI microchip!",
699
+ },
700
+ {
701
+ firstName: 'Clarabelle',
702
+ lastName: 'Johnston',
703
+ address: '5691 Rogahn Junctions',
704
+ state: 'New York',
705
+ phoneNumber: '1-355-926-0460',
706
+ lastLogin: '2021-03-09T19:47:09.723Z',
707
+ favoriteMusic: 'Stage And Screen',
708
+ favoriteSong: 'So Much in Love',
709
+ quote:
710
+ "generating the array won't do anything, we need to override the redundant DRAM bus!",
711
+ },
712
+ {
713
+ firstName: 'Jace',
714
+ lastName: 'Yost',
715
+ address: '826 Martin Flats',
716
+ state: 'Delaware',
717
+ phoneNumber: '(506) 572-8522 x174',
718
+ lastLogin: '2019-06-05T00:26:57.560Z',
719
+ favoriteMusic: 'Funk',
720
+ favoriteSong: 'Physical',
721
+ quote:
722
+ "indexing the pixel won't do anything, we need to calculate the primary ADP monitor!",
723
+ },
724
+ {
725
+ firstName: 'Justice',
726
+ lastName: 'Bartoletti',
727
+ address: '13767 Nicole Trace',
728
+ state: 'Rhode Island',
729
+ phoneNumber: '958-391-0473 x05450',
730
+ lastLogin: '2022-11-23T22:18:26.108Z',
731
+ favoriteMusic: 'Reggae',
732
+ favoriteSong: 'Hanging by a Moment',
733
+ quote: 'Use the 1080p GB system, then you can hack the back-end bandwidth!',
734
+ },
735
+ {
736
+ firstName: 'Rodrigo',
737
+ lastName: 'Kozey',
738
+ address: '48814 Kilback Overpass',
739
+ state: 'Alaska',
740
+ phoneNumber: '1-256-284-6866',
741
+ lastLogin: '2021-11-08T10:59:59.332Z',
742
+ favoriteMusic: 'Latin',
743
+ favoriteSong: 'Runaway',
744
+ quote:
745
+ 'If we program the hard drive, we can get to the THX card through the open-source THX hard drive!',
746
+ },
747
+ {
748
+ firstName: 'Jaida',
749
+ lastName: 'Barrows',
750
+ address: '52318 Fay Knoll',
751
+ state: 'Maryland',
752
+ phoneNumber: '975.822.1015',
753
+ lastLogin: '2019-06-28T05:06:13.564Z',
754
+ favoriteMusic: 'Stage And Screen',
755
+ favoriteSong: 'Harbour Lights',
756
+ quote: 'We need to transmit the digital SDD firewall!',
757
+ },
758
+ {
759
+ firstName: 'Kayleigh',
760
+ lastName: "O'Connell",
761
+ address: '178 Fermin Fall',
762
+ state: 'New Mexico',
763
+ phoneNumber: '1-602-265-9742 x208',
764
+ lastLogin: '2021-01-05T16:53:36.245Z',
765
+ favoriteMusic: 'Rock',
766
+ favoriteSong: 'Stars & Stripes Forever',
767
+ quote:
768
+ 'Try to hack the GB monitor, maybe it will copy the open-source sensor!',
769
+ },
770
+ {
771
+ firstName: 'Sibyl',
772
+ lastName: 'Beahan',
773
+ address: '841 Nat Mills',
774
+ state: 'Maine',
775
+ phoneNumber: '1-998-680-4926',
776
+ lastLogin: '2019-06-08T13:39:38.657Z',
777
+ favoriteMusic: 'Blues',
778
+ favoriteSong: 'Poker Face',
779
+ quote:
780
+ 'If we input the hard drive, we can get to the SMS bandwidth through the digital HDD system!',
781
+ },
782
+ {
783
+ firstName: 'Amir',
784
+ lastName: 'Kreiger',
785
+ address: '811 Geovanni Green',
786
+ state: 'Maryland',
787
+ phoneNumber: '948-816-0748',
788
+ lastLogin: '2023-08-29T10:43:52.528Z',
789
+ favoriteMusic: 'Rock',
790
+ favoriteSong: 'Smoke Gets in Your Eyes',
791
+ quote:
792
+ 'The JBOD feed is down, bypass the wireless port so we can index the USB bandwidth!',
793
+ },
794
+ {
795
+ firstName: 'Freddie',
796
+ lastName: 'Pouros',
797
+ address: '69596 Ritchie Highway',
798
+ state: 'Texas',
799
+ phoneNumber: '685.639.8084',
800
+ lastLogin: '2021-10-10T09:51:56.099Z',
801
+ favoriteMusic: 'Reggae',
802
+ favoriteSong: 'Just Dance',
803
+ quote: 'We need to generate the bluetooth SAS protocol!',
804
+ },
805
+ {
806
+ firstName: 'Luther',
807
+ lastName: 'Weissnat',
808
+ address: '21870 Doyle Plains',
809
+ state: 'Oklahoma',
810
+ phoneNumber: '906.646.5001 x5485',
811
+ lastLogin: '2019-08-14T03:03:57.645Z',
812
+ favoriteMusic: 'Latin',
813
+ favoriteSong: 'She Loves You',
814
+ quote:
815
+ 'Use the multi-byte ASCII matrix, then you can index the auxiliary circuit!',
816
+ },
817
+ {
818
+ firstName: 'Jazlyn',
819
+ lastName: 'Tromp',
820
+ address: '02223 Gerhold Lodge',
821
+ state: 'Texas',
822
+ phoneNumber: '620.609.8021',
823
+ lastLogin: '2023-05-17T21:46:29.440Z',
824
+ favoriteMusic: 'Classical',
825
+ favoriteSong: 'Kiss',
826
+ quote:
827
+ 'The SAS hard drive is down, hack the solid state sensor so we can reboot the API alarm!',
828
+ },
829
+ {
830
+ firstName: 'Monroe',
831
+ lastName: 'Gulgowski',
832
+ address: '6507 Steuber Pass',
833
+ state: 'Pennsylvania',
834
+ phoneNumber: '(566) 588-6599 x811',
835
+ lastLogin: '2020-10-09T00:23:59.023Z',
836
+ favoriteMusic: 'Latin',
837
+ favoriteSong: 'I Will Always Love You',
838
+ quote:
839
+ "backing up the capacitor won't do anything, we need to copy the 1080p ADP alarm!",
840
+ },
841
+ {
842
+ firstName: 'Braeden',
843
+ lastName: 'Okuneva',
844
+ address: '89598 Kshlerin Road',
845
+ state: 'New Jersey',
846
+ phoneNumber: '291-598-8359',
847
+ lastLogin: '2019-01-05T00:28:30.113Z',
848
+ favoriteMusic: 'Rap',
849
+ favoriteSong: 'Battle of New Orleans',
850
+ quote:
851
+ 'The SSD sensor is down, hack the redundant monitor so we can input the TCP driver!',
852
+ },
853
+ {
854
+ firstName: 'Teagan',
855
+ lastName: 'Gerhold',
856
+ address: '205 Buster Plaza',
857
+ state: 'Iowa',
858
+ phoneNumber: '1-871-232-7926',
859
+ lastLogin: '2022-12-20T01:35:10.978Z',
860
+ favoriteMusic: 'Jazz',
861
+ favoriteSong: 'Roll Over Beethoven',
862
+ quote:
863
+ "copying the panel won't do anything, we need to parse the cross-platform RSS circuit!",
864
+ },
865
+ {
866
+ firstName: 'Helga',
867
+ lastName: 'Franey',
868
+ address: '56005 Kulas Harbor',
869
+ state: 'Vermont',
870
+ phoneNumber: '453-807-6073',
871
+ lastLogin: '2022-08-13T04:20:28.462Z',
872
+ favoriteMusic: 'Rock',
873
+ favoriteSong: 'Brand New Key',
874
+ quote:
875
+ "I'll synthesize the redundant HEX matrix, that should panel the PCI feed!",
876
+ },
877
+ {
878
+ firstName: 'Roma',
879
+ lastName: 'Klein',
880
+ address: '65176 Nola Vista',
881
+ state: 'New Mexico',
882
+ phoneNumber: '767-945-8529 x8275',
883
+ lastLogin: '2021-06-11T14:12:40.224Z',
884
+ favoriteMusic: 'Latin',
885
+ favoriteSong: 'Love Letters in the Sand',
886
+ quote:
887
+ 'Try to navigate the TLS transmitter, maybe it will calculate the multi-byte matrix!',
888
+ },
889
+ {
890
+ firstName: 'Marquise',
891
+ lastName: 'Cummerata',
892
+ address: '398 Theresia View',
893
+ state: 'Louisiana',
894
+ phoneNumber: '1-525-342-0154 x170',
895
+ lastLogin: '2023-09-26T08:53:24.365Z',
896
+ favoriteMusic: 'World',
897
+ favoriteSong: 'On the Atchison',
898
+ quote:
899
+ 'Use the wireless TCP transmitter, then you can navigate the multi-byte interface!',
900
+ },
901
+ {
902
+ firstName: 'Jed',
903
+ lastName: 'Hayes',
904
+ address: '63640 Donnelly Rue',
905
+ state: 'Hawaii',
906
+ phoneNumber: '(280) 208-8411 x15197',
907
+ lastLogin: '2021-04-12T05:18:09.607Z',
908
+ favoriteMusic: 'World',
909
+ favoriteSong: 'Come Together',
910
+ quote: 'We need to hack the primary RSS card!',
911
+ },
912
+ {
913
+ firstName: 'Caleb',
914
+ lastName: 'Mante',
915
+ address: '845 Franecki Terrace',
916
+ state: 'Rhode Island',
917
+ phoneNumber: '1-807-393-4906',
918
+ lastLogin: '2020-07-11T17:54:22.591Z',
919
+ favoriteMusic: 'Country',
920
+ favoriteSong: 'Daydream Believer',
921
+ quote:
922
+ 'Use the solid state XML matrix, then you can synthesize the primary feed!',
923
+ },
924
+ {
925
+ firstName: 'Cameron',
926
+ lastName: 'Brakus',
927
+ address: '203 Cormier Hill',
928
+ state: 'Tennessee',
929
+ phoneNumber: '580-437-1892',
930
+ lastLogin: '2022-08-21T13:44:53.414Z',
931
+ favoriteMusic: 'Hip Hop',
932
+ favoriteSong: 'Stand By Me',
933
+ quote:
934
+ 'The SAS interface is down, connect the mobile array so we can index the TCP bus!',
935
+ },
936
+ {
937
+ firstName: 'Allie',
938
+ lastName: 'Feeney',
939
+ address: '293 Larson Rest',
940
+ state: 'New York',
941
+ phoneNumber: '936-527-7160',
942
+ lastLogin: '2023-10-16T00:11:07.240Z',
943
+ favoriteMusic: 'Non Music',
944
+ favoriteSong: 'Wannabe',
945
+ quote:
946
+ 'If we program the monitor, we can get to the ASCII hard drive through the open-source THX panel!',
947
+ },
948
+ {
949
+ firstName: 'Shanon',
950
+ lastName: 'Oberbrunner',
951
+ address: '03724 Ocie Avenue',
952
+ state: 'Mississippi',
953
+ phoneNumber: '915-519-4900 x055',
954
+ lastLogin: '2021-03-06T06:20:32.593Z',
955
+ favoriteMusic: 'Electronic',
956
+ favoriteSong: 'People',
957
+ quote:
958
+ "I'll back up the online HEX driver, that should monitor the CLI application!",
959
+ },
960
+ {
961
+ firstName: 'Lauriane',
962
+ lastName: 'Connelly',
963
+ address: '258 Torp Loaf',
964
+ state: 'New York',
965
+ phoneNumber: '752.333.1992',
966
+ lastLogin: '2020-08-08T23:06:09.102Z',
967
+ favoriteMusic: 'Metal',
968
+ favoriteSong: 'Hound Dog',
969
+ quote:
970
+ 'If we calculate the alarm, we can get to the CSS bandwidth through the solid state OCR card!',
971
+ },
972
+ {
973
+ firstName: 'Jolie',
974
+ lastName: 'Pacocha',
975
+ address: '574 Lueilwitz Forge',
976
+ state: 'Georgia',
977
+ phoneNumber: '1-255-312-1232',
978
+ lastLogin: '2021-05-12T22:06:07.014Z',
979
+ favoriteMusic: 'Jazz',
980
+ favoriteSong: 'You Belong to Me',
981
+ quote:
982
+ "You can't transmit the panel without quantifying the multi-byte XML interface!",
983
+ },
984
+ {
985
+ firstName: 'Darwin',
986
+ lastName: 'Schinner',
987
+ address: '6641 Jerde Divide',
988
+ state: 'Pennsylvania',
989
+ phoneNumber: '(449) 752-5371',
990
+ lastLogin: '2020-12-06T15:03:06.356Z',
991
+ favoriteMusic: 'Latin',
992
+ favoriteSong: 'Hey There Delilah',
993
+ quote:
994
+ 'Use the open-source JBOD transmitter, then you can transmit the optical protocol!',
995
+ },
996
+ {
997
+ firstName: 'Estefania',
998
+ lastName: 'Quigley',
999
+ address: '0226 Ali Expressway',
1000
+ state: 'Oregon',
1001
+ phoneNumber: '518-499-6231',
1002
+ lastLogin: '2022-09-21T11:06:57.598Z',
1003
+ favoriteMusic: 'World',
1004
+ favoriteSong: "You're Beautiful",
1005
+ quote:
1006
+ "synthesizing the capacitor won't do anything, we need to reboot the digital HEX port!",
1007
+ },
1008
+ {
1009
+ firstName: 'Raymundo',
1010
+ lastName: 'Treutel',
1011
+ address: '228 Kuhlman Freeway',
1012
+ state: 'Tennessee',
1013
+ phoneNumber: '974.936.1957 x70558',
1014
+ lastLogin: '2022-11-16T23:36:51.178Z',
1015
+ favoriteMusic: 'Reggae',
1016
+ favoriteSong: 'Wild Wild West',
1017
+ quote:
1018
+ "You can't connect the protocol without bypassing the auxiliary SAS firewall!",
1019
+ },
1020
+ {
1021
+ firstName: 'Deangelo',
1022
+ lastName: 'Blick',
1023
+ address: '029 Violette Station',
1024
+ state: 'Missouri',
1025
+ phoneNumber: '(741) 405-3853',
1026
+ lastLogin: '2019-08-04T11:02:15.375Z',
1027
+ favoriteMusic: 'Electronic',
1028
+ favoriteSong: 'Over the Rainbow',
1029
+ quote:
1030
+ 'Try to override the PNG feed, maybe it will parse the optical pixel!',
1031
+ },
1032
+ {
1033
+ firstName: 'Sarah',
1034
+ lastName: 'Labadie',
1035
+ address: '503 Leopoldo Cove',
1036
+ state: 'Colorado',
1037
+ phoneNumber: '204.745.5814 x54620',
1038
+ lastLogin: '2020-08-12T14:44:21.596Z',
1039
+ favoriteMusic: 'Rap',
1040
+ favoriteSong: 'The Girl From Ipanema',
1041
+ quote:
1042
+ "connecting the transmitter won't do anything, we need to program the bluetooth SQL circuit!",
1043
+ },
1044
+ {
1045
+ firstName: 'Cordell',
1046
+ lastName: 'Dicki',
1047
+ address: '849 Malvina Mount',
1048
+ state: 'Oklahoma',
1049
+ phoneNumber: '424-610-2775 x56165',
1050
+ lastLogin: '2021-07-18T17:33:23.297Z',
1051
+ favoriteMusic: 'Electronic',
1052
+ favoriteSong: 'Me & Mrs Jones',
1053
+ quote:
1054
+ "I'll quantify the 1080p SSD port, that should transmitter the GB monitor!",
1055
+ },
1056
+ {
1057
+ firstName: 'Ibrahim',
1058
+ lastName: 'Torphy',
1059
+ address: '566 Aleen Ramp',
1060
+ state: 'New Mexico',
1061
+ phoneNumber: '1-500-693-0802 x4695',
1062
+ lastLogin: '2019-12-12T14:01:04.034Z',
1063
+ favoriteMusic: 'World',
1064
+ favoriteSong: 'Mr Tambourine Man',
1065
+ quote: 'We need to index the neural OCR bus!',
1066
+ },
1067
+ {
1068
+ firstName: 'Nella',
1069
+ lastName: 'Gerlach',
1070
+ address: '2281 Leffler Village',
1071
+ state: 'Kentucky',
1072
+ phoneNumber: '659-865-3149 x82226',
1073
+ lastLogin: '2020-03-08T00:31:00.960Z',
1074
+ favoriteMusic: 'Rap',
1075
+ favoriteSong: 'Louie Louie',
1076
+ quote:
1077
+ 'Try to synthesize the DNS firewall, maybe it will connect the back-end panel!',
1078
+ },
1079
+ {
1080
+ firstName: 'Madalyn',
1081
+ lastName: 'Wintheiser',
1082
+ address: '575 Wintheiser Common',
1083
+ state: 'West Virginia',
1084
+ phoneNumber: '349.669.3708 x7744',
1085
+ lastLogin: '2023-06-03T12:51:49.671Z',
1086
+ favoriteMusic: 'Rap',
1087
+ favoriteSong: 'Crying',
1088
+ quote:
1089
+ 'Try to index the USB alarm, maybe it will transmit the multi-byte firewall!',
1090
+ },
1091
+ {
1092
+ firstName: 'Heidi',
1093
+ lastName: 'Krajcik',
1094
+ address: '38559 Hailie Grove',
1095
+ state: 'Washington',
1096
+ phoneNumber: '1-559-717-2720 x558',
1097
+ lastLogin: '2019-11-18T16:20:03.743Z',
1098
+ favoriteMusic: 'Classical',
1099
+ favoriteSong: 'The Tracks of My Tears',
1100
+ quote:
1101
+ 'Try to transmit the TLS capacitor, maybe it will bypass the solid state feed!',
1102
+ },
1103
+ {
1104
+ firstName: 'Veronica',
1105
+ lastName: 'Flatley',
1106
+ address: '08269 Rowe Hill',
1107
+ state: 'Utah',
1108
+ phoneNumber: '1-941-655-9866 x6133',
1109
+ lastLogin: '2023-08-09T19:27:31.695Z',
1110
+ favoriteMusic: 'Latin',
1111
+ favoriteSong: 'Ballad of the Green Berets',
1112
+ quote:
1113
+ 'The HEX matrix is down, index the optical circuit so we can override the PCI driver!',
1114
+ },
1115
+ {
1116
+ firstName: 'Kimberly',
1117
+ lastName: "O'Connell",
1118
+ address: '14894 Ashlynn Lock',
1119
+ state: 'Rhode Island',
1120
+ phoneNumber: '1-484-949-4663',
1121
+ lastLogin: '2020-08-30T02:13:55.811Z',
1122
+ favoriteMusic: 'Country',
1123
+ favoriteSong: 'Yellow Rose of Texas',
1124
+ quote:
1125
+ 'Try to input the PCI microchip, maybe it will calculate the multi-byte alarm!',
1126
+ },
1127
+ {
1128
+ firstName: 'Jannie',
1129
+ lastName: 'Douglas',
1130
+ address: '74809 Mraz Trail',
1131
+ state: 'Oregon',
1132
+ phoneNumber: '461.287.3248 x66090',
1133
+ lastLogin: '2022-03-11T12:54:17.939Z',
1134
+ favoriteMusic: 'Non Music',
1135
+ favoriteSong: 'That Old Black Magic',
1136
+ quote:
1137
+ 'Try to override the ASCII circuit, maybe it will hack the online card!',
1138
+ },
1139
+ {
1140
+ firstName: 'Zoila',
1141
+ lastName: 'Connelly',
1142
+ address: '3840 Abel Manor',
1143
+ state: 'Wisconsin',
1144
+ phoneNumber: '(720) 486-1238 x539',
1145
+ lastLogin: '2022-08-16T08:11:12.571Z',
1146
+ favoriteMusic: 'Jazz',
1147
+ favoriteSong: "Don't Speak",
1148
+ quote:
1149
+ 'Try to parse the UTF8 interface, maybe it will index the redundant monitor!',
1150
+ },
1151
+ {
1152
+ firstName: 'Dino',
1153
+ lastName: 'Nader',
1154
+ address: '96105 Clarissa Spring',
1155
+ state: 'Texas',
1156
+ phoneNumber: '1-690-682-5517 x506',
1157
+ lastLogin: '2019-05-20T00:39:18.123Z',
1158
+ favoriteMusic: 'Rock',
1159
+ favoriteSong: 'Some of These Days',
1160
+ quote:
1161
+ 'Use the multi-byte SSL capacitor, then you can parse the online microchip!',
1162
+ },
1163
+ {
1164
+ firstName: 'Jarrell',
1165
+ lastName: 'Klein',
1166
+ address: '28102 Vada Forks',
1167
+ state: 'Rhode Island',
1168
+ phoneNumber: '818.967.4980',
1169
+ lastLogin: '2023-12-06T06:23:48.908Z',
1170
+ favoriteMusic: 'Funk',
1171
+ favoriteSong: 'Tennessee Waltz',
1172
+ quote:
1173
+ 'Try to transmit the TCP bus, maybe it will back up the multi-byte bandwidth!',
1174
+ },
1175
+ {
1176
+ firstName: 'Curt',
1177
+ lastName: 'Stamm',
1178
+ address: '4438 Lina Rest',
1179
+ state: 'New Jersey',
1180
+ phoneNumber: '506-312-7423 x470',
1181
+ lastLogin: '2019-09-22T07:07:13.980Z',
1182
+ favoriteMusic: 'Rock',
1183
+ favoriteSong: 'Funkytown',
1184
+ quote: 'We need to connect the back-end VGA system!',
1185
+ },
1186
+ {
1187
+ firstName: 'Lela',
1188
+ lastName: 'Goodwin',
1189
+ address: '84052 Gusikowski Canyon',
1190
+ state: 'Iowa',
1191
+ phoneNumber: '1-995-348-0625',
1192
+ lastLogin: '2023-04-19T00:05:14.671Z',
1193
+ favoriteMusic: 'Latin',
1194
+ favoriteSong: 'Lady Marmalade (Voulez-Vous Coucher Aver Moi Ce Soir?)',
1195
+ quote:
1196
+ "copying the microchip won't do anything, we need to parse the wireless API bandwidth!",
1197
+ },
1198
+ {
1199
+ firstName: 'Elyse',
1200
+ lastName: 'Wuckert',
1201
+ address: '47743 Lamar Alley',
1202
+ state: 'Illinois',
1203
+ phoneNumber: '986-502-6816',
1204
+ lastLogin: '2022-12-23T11:31:23.092Z',
1205
+ favoriteMusic: 'World',
1206
+ favoriteSong: "Cathy's Clown",
1207
+ quote:
1208
+ 'If we navigate the transmitter, we can get to the SSD transmitter through the back-end TCP pixel!',
1209
+ },
1210
+ {
1211
+ firstName: 'Marlen',
1212
+ lastName: 'Franey',
1213
+ address: '518 Kovacek Trail',
1214
+ state: 'Alabama',
1215
+ phoneNumber: '(466) 519-5017',
1216
+ lastLogin: '2021-08-20T19:52:39.622Z',
1217
+ favoriteMusic: 'Latin',
1218
+ favoriteSong: 'A Tree in the Meadow',
1219
+ quote:
1220
+ "You can't generate the interface without synthesizing the digital JSON system!",
1221
+ },
1222
+ {
1223
+ firstName: 'Laury',
1224
+ lastName: 'Corkery',
1225
+ address: '77904 Victoria Pine',
1226
+ state: 'Texas',
1227
+ phoneNumber: '874.428.1541',
1228
+ lastLogin: '2022-12-14T10:28:38.718Z',
1229
+ favoriteMusic: 'Blues',
1230
+ favoriteSong: "Drop it Like It's Hot",
1231
+ quote:
1232
+ 'If we generate the port, we can get to the SCSI capacitor through the optical SSL port!',
1233
+ },
1234
+ {
1235
+ firstName: 'Lincoln',
1236
+ lastName: 'Weissnat',
1237
+ address: '5898 Rolfson Cliff',
1238
+ state: 'Washington',
1239
+ phoneNumber: '1-452-236-9645',
1240
+ lastLogin: '2023-02-13T19:13:37.166Z',
1241
+ favoriteMusic: 'Latin',
1242
+ favoriteSong: 'Boom Boom Pow',
1243
+ quote:
1244
+ "bypassing the monitor won't do anything, we need to reboot the wireless RAM feed!",
1245
+ },
1246
+ {
1247
+ firstName: 'Nadia',
1248
+ lastName: 'Bernier',
1249
+ address: '78167 Windler Oval',
1250
+ state: 'Arkansas',
1251
+ phoneNumber: '517-783-7505',
1252
+ lastLogin: '2019-09-07T11:35:07.447Z',
1253
+ favoriteMusic: 'Folk',
1254
+ favoriteSong: 'Stuck On You',
1255
+ quote:
1256
+ 'Try to reboot the UTF8 monitor, maybe it will connect the online alarm!',
1257
+ },
1258
+ {
1259
+ firstName: 'Malcolm',
1260
+ lastName: 'Dach',
1261
+ address: '98782 Carroll Flats',
1262
+ state: 'Pennsylvania',
1263
+ phoneNumber: '610-374-0184 x8266',
1264
+ lastLogin: '2022-08-21T22:52:11.519Z',
1265
+ favoriteMusic: 'Soul',
1266
+ favoriteSong: 'Hold On',
1267
+ quote:
1268
+ 'The XSS pixel is down, copy the open-source alarm so we can program the DRAM panel!',
1269
+ },
1270
+ {
1271
+ firstName: 'Maiya',
1272
+ lastName: 'Feeney',
1273
+ address: '7803 Ortiz Shore',
1274
+ state: 'Nebraska',
1275
+ phoneNumber: '1-459-985-0817 x152',
1276
+ lastLogin: '2022-02-26T12:59:05.481Z',
1277
+ favoriteMusic: 'Blues',
1278
+ favoriteSong: 'Roll With It',
1279
+ quote: "You can't copy the port without connecting the optical SMS matrix!",
1280
+ },
1281
+ {
1282
+ firstName: 'Hal',
1283
+ lastName: 'Cronin',
1284
+ address: '914 Hellen Coves',
1285
+ state: 'Massachusetts',
1286
+ phoneNumber: '276.609.6039',
1287
+ lastLogin: '2022-12-05T16:57:41.905Z',
1288
+ favoriteMusic: 'Reggae',
1289
+ favoriteSong: 'Bohemian Rhapsody',
1290
+ quote:
1291
+ 'Use the auxiliary SSD firewall, then you can quantify the digital port!',
1292
+ },
1293
+ {
1294
+ firstName: 'Buster',
1295
+ lastName: 'Jacobs',
1296
+ address: '3974 Kassandra Prairie',
1297
+ state: 'Montana',
1298
+ phoneNumber: '(678) 685-1364 x02125',
1299
+ lastLogin: '2019-02-10T09:02:18.513Z',
1300
+ favoriteMusic: 'Latin',
1301
+ favoriteSong: 'Promiscuous',
1302
+ quote:
1303
+ 'Try to index the TLS card, maybe it will back up the digital sensor!',
1304
+ },
1305
+ {
1306
+ firstName: 'Garland',
1307
+ lastName: 'Okuneva',
1308
+ address: '7066 Catalina Prairie',
1309
+ state: 'Rhode Island',
1310
+ phoneNumber: '336-881-0669 x031',
1311
+ lastLogin: '2020-03-13T23:40:23.980Z',
1312
+ favoriteMusic: 'Blues',
1313
+ favoriteSong: 'Because You Loved Me',
1314
+ quote:
1315
+ "You can't override the matrix without copying the multi-byte TLS interface!",
1316
+ },
1317
+ {
1318
+ firstName: 'Damon',
1319
+ lastName: 'Ullrich',
1320
+ address: "534 O'Conner Falls",
1321
+ state: 'Louisiana',
1322
+ phoneNumber: '1-377-497-8909',
1323
+ lastLogin: '2023-04-21T17:29:35.793Z',
1324
+ favoriteMusic: 'Funk',
1325
+ favoriteSong: 'Light My Fire',
1326
+ quote: 'Use the haptic IB feed, then you can program the neural capacitor!',
1327
+ },
1328
+ {
1329
+ firstName: 'Jordon',
1330
+ lastName: 'Steuber',
1331
+ address: '3997 Olson Lights',
1332
+ state: 'West Virginia',
1333
+ phoneNumber: '(834) 340-5699',
1334
+ lastLogin: '2023-08-04T00:00:21.723Z',
1335
+ favoriteMusic: 'Folk',
1336
+ favoriteSong: 'Wind Beneath My Wings',
1337
+ quote:
1338
+ 'Try to copy the UTF8 capacitor, maybe it will navigate the solid state matrix!',
1339
+ },
1340
+ {
1341
+ firstName: 'Amparo',
1342
+ lastName: 'Volkman',
1343
+ address: '434 Shaun Mill',
1344
+ state: 'Michigan',
1345
+ phoneNumber: '1-389-763-1458',
1346
+ lastLogin: '2019-10-08T06:38:17.524Z',
1347
+ favoriteMusic: 'Country',
1348
+ favoriteSong: 'Hello Dolly',
1349
+ quote:
1350
+ "I'll navigate the digital SSL driver, that should interface the CSS application!",
1351
+ },
1352
+ {
1353
+ firstName: 'Brooklyn',
1354
+ lastName: 'Zemlak',
1355
+ address: '715 Schamberger Plain',
1356
+ state: 'California',
1357
+ phoneNumber: '827.857.7624 x2547',
1358
+ lastLogin: '2021-08-26T12:45:44.561Z',
1359
+ favoriteMusic: 'Hip Hop',
1360
+ favoriteSong: "Tie a Yellow Ribbon 'round the Old Oak Tree",
1361
+ quote: 'We need to index the online HDD firewall!',
1362
+ },
1363
+ {
1364
+ firstName: 'Carlos',
1365
+ lastName: 'Turner',
1366
+ address: '8309 Verlie Mount',
1367
+ state: 'Connecticut',
1368
+ phoneNumber: '479.618.0627 x01411',
1369
+ lastLogin: '2019-10-27T16:08:51.478Z',
1370
+ favoriteMusic: 'Latin',
1371
+ favoriteSong: 'Georgy Girl',
1372
+ quote:
1373
+ "generating the protocol won't do anything, we need to synthesize the back-end AGP bus!",
1374
+ },
1375
+ {
1376
+ firstName: 'Jay',
1377
+ lastName: 'Gaylord',
1378
+ address: '19697 Stewart Unions',
1379
+ state: 'Michigan',
1380
+ phoneNumber: '814.990.2558 x9948',
1381
+ lastLogin: '2021-02-05T09:38:15.983Z',
1382
+ favoriteMusic: 'Classical',
1383
+ favoriteSong: 'Help!',
1384
+ quote:
1385
+ "I'll index the solid state SSD array, that should interface the SAS monitor!",
1386
+ },
1387
+ {
1388
+ firstName: 'Jazmyne',
1389
+ lastName: 'Gibson',
1390
+ address: '3442 Everette Tunnel',
1391
+ state: 'Utah',
1392
+ phoneNumber: '542.209.3639',
1393
+ lastLogin: '2022-12-01T16:58:17.890Z',
1394
+ favoriteMusic: 'Jazz',
1395
+ favoriteSong: 'Band On the Run',
1396
+ quote:
1397
+ 'If we back up the circuit, we can get to the SQL array through the back-end HEX feed!',
1398
+ },
1399
+ {
1400
+ firstName: 'Chad',
1401
+ lastName: 'Bartell',
1402
+ address: '997 Alexander Village',
1403
+ state: 'Wyoming',
1404
+ phoneNumber: '1-512-366-1968',
1405
+ lastLogin: '2022-03-18T16:42:38.173Z',
1406
+ favoriteMusic: 'Classical',
1407
+ favoriteSong: 'Never Gonna Give You Up',
1408
+ quote:
1409
+ 'If we reboot the microchip, we can get to the RAM matrix through the primary XSS monitor!',
1410
+ },
1411
+ {
1412
+ firstName: 'Peter',
1413
+ lastName: 'Kessler',
1414
+ address: '43711 Nolan Fort',
1415
+ state: 'Kentucky',
1416
+ phoneNumber: '408.278.2672',
1417
+ lastLogin: '2019-03-29T11:42:59.259Z',
1418
+ favoriteMusic: 'Hip Hop',
1419
+ favoriteSong: "Surfin' USA",
1420
+ quote:
1421
+ "calculating the sensor won't do anything, we need to generate the online DNS feed!",
1422
+ },
1423
+ {
1424
+ firstName: 'Joey',
1425
+ lastName: 'Koelpin',
1426
+ address: '10542 Cleveland Mills',
1427
+ state: 'Nebraska',
1428
+ phoneNumber: '649.447.7594 x978',
1429
+ lastLogin: '2020-08-12T14:53:01.164Z',
1430
+ favoriteMusic: 'Classical',
1431
+ favoriteSong: 'Love Shack',
1432
+ quote:
1433
+ 'Use the mobile AI protocol, then you can bypass the open-source feed!',
1434
+ },
1435
+ {
1436
+ firstName: 'Tod',
1437
+ lastName: 'Sanford',
1438
+ address: '7653 Juwan Radial',
1439
+ state: 'Wisconsin',
1440
+ phoneNumber: '781-209-6459',
1441
+ lastLogin: '2021-03-01T19:01:04.202Z',
1442
+ favoriteMusic: 'Electronic',
1443
+ favoriteSong: 'Burn',
1444
+ quote:
1445
+ 'The HTTP microchip is down, bypass the online microchip so we can bypass the FTP hard drive!',
1446
+ },
1447
+ {
1448
+ firstName: 'Nakia',
1449
+ lastName: 'Moen',
1450
+ address: '75115 Donnie Way',
1451
+ state: 'Arkansas',
1452
+ phoneNumber: '845-690-1809 x274',
1453
+ lastLogin: '2021-08-28T07:11:15.930Z',
1454
+ favoriteMusic: 'Funk',
1455
+ favoriteSong: 'You Always Hurt the One You Love',
1456
+ quote:
1457
+ "indexing the port won't do anything, we need to reboot the neural VGA alarm!",
1458
+ },
1459
+ {
1460
+ firstName: 'Lavonne',
1461
+ lastName: 'Cronin',
1462
+ address: '3545 Bulah Circles',
1463
+ state: 'Alaska',
1464
+ phoneNumber: '(381) 522-1962 x15573',
1465
+ lastLogin: '2022-02-15T14:12:30.051Z',
1466
+ favoriteMusic: 'Hip Hop',
1467
+ favoriteSong: 'Rich Girl',
1468
+ quote:
1469
+ 'The TCP feed is down, back up the back-end feed so we can override the GB alarm!',
1470
+ },
1471
+ {
1472
+ firstName: 'Alfredo',
1473
+ lastName: 'Treutel',
1474
+ address: '90919 Jenkins Stravenue',
1475
+ state: 'Mississippi',
1476
+ phoneNumber: '262.483.1238 x2432',
1477
+ lastLogin: '2022-06-17T08:02:07.374Z',
1478
+ favoriteMusic: 'Funk',
1479
+ favoriteSong: 'Time of the Season',
1480
+ quote:
1481
+ 'Try to transmit the RSS interface, maybe it will bypass the wireless bus!',
1482
+ },
1483
+ {
1484
+ firstName: 'Savanah',
1485
+ lastName: 'Graham',
1486
+ address: '55171 Johnston Wall',
1487
+ state: 'Washington',
1488
+ phoneNumber: '1-502-827-8410',
1489
+ lastLogin: '2019-07-15T02:35:54.206Z',
1490
+ favoriteMusic: 'Hip Hop',
1491
+ favoriteSong: "I'm Looking Over a Four Leaf Clover",
1492
+ quote: 'We need to copy the multi-byte RSS capacitor!',
1493
+ },
1494
+ {
1495
+ firstName: 'Esteban',
1496
+ lastName: 'Rosenbaum',
1497
+ address: '642 Raquel Common',
1498
+ state: 'New York',
1499
+ phoneNumber: '782-792-6555 x6278',
1500
+ lastLogin: '2022-01-27T18:17:31.455Z',
1501
+ favoriteMusic: 'Metal',
1502
+ favoriteSong: 'Sugar Sugar',
1503
+ quote:
1504
+ 'Try to navigate the RAM bandwidth, maybe it will override the auxiliary application!',
1505
+ },
1506
+ {
1507
+ firstName: 'Ted',
1508
+ lastName: 'Schmeler',
1509
+ address: '83783 Alek Summit',
1510
+ state: 'Iowa',
1511
+ phoneNumber: '415.509.0261',
1512
+ lastLogin: '2023-09-14T02:05:27.338Z',
1513
+ favoriteMusic: 'Blues',
1514
+ favoriteSong: 'A Tree in the Meadow',
1515
+ quote:
1516
+ "I'll connect the open-source TCP sensor, that should application the UDP firewall!",
1517
+ },
1518
+ {
1519
+ firstName: 'Roselyn',
1520
+ lastName: 'Doyle',
1521
+ address: '0928 Bradly Ridges',
1522
+ state: 'Georgia',
1523
+ phoneNumber: '1-726-794-4130 x43166',
1524
+ lastLogin: '2022-02-28T03:53:54.795Z',
1525
+ favoriteMusic: 'Non Music',
1526
+ favoriteSong: 'Rapture',
1527
+ quote:
1528
+ 'The PNG card is down, input the redundant microchip so we can navigate the JSON bandwidth!',
1529
+ },
1530
+ {
1531
+ firstName: 'Idell',
1532
+ lastName: 'Kirlin',
1533
+ address: '8527 Hoeger Plains',
1534
+ state: 'New Jersey',
1535
+ phoneNumber: '1-261-430-1323',
1536
+ lastLogin: '2023-04-05T19:49:35.054Z',
1537
+ favoriteMusic: 'Latin',
1538
+ favoriteSong: 'Let Me Love You',
1539
+ quote:
1540
+ "programming the hard drive won't do anything, we need to connect the virtual COM firewall!",
1541
+ },
1542
+ {
1543
+ firstName: 'Oswaldo',
1544
+ lastName: 'Koepp',
1545
+ address: '000 Camden Land',
1546
+ state: 'Massachusetts',
1547
+ phoneNumber: '(485) 381-8750',
1548
+ lastLogin: '2019-10-21T01:13:04.342Z',
1549
+ favoriteMusic: 'Folk',
1550
+ favoriteSong: 'Tangerine',
1551
+ quote:
1552
+ 'Use the multi-byte CSS protocol, then you can bypass the virtual firewall!',
1553
+ },
1554
+ {
1555
+ firstName: 'Raleigh',
1556
+ lastName: 'Dicki',
1557
+ address: '84142 Wiza Bridge',
1558
+ state: 'Nebraska',
1559
+ phoneNumber: '(478) 658-7018 x6805',
1560
+ lastLogin: '2020-11-02T21:57:02.432Z',
1561
+ favoriteMusic: 'Electronic',
1562
+ favoriteSong: 'She Loves You',
1563
+ quote:
1564
+ 'The RAM monitor is down, override the redundant program so we can index the FTP pixel!',
1565
+ },
1566
+ {
1567
+ firstName: 'Norma',
1568
+ lastName: 'Heller',
1569
+ address: '755 Jaskolski Square',
1570
+ state: 'Connecticut',
1571
+ phoneNumber: '(295) 876-3062',
1572
+ lastLogin: '2022-02-02T19:32:15.280Z',
1573
+ favoriteMusic: 'Folk',
1574
+ favoriteSong: "Won't Get Fooled Again",
1575
+ quote:
1576
+ 'The SSD program is down, calculate the solid state transmitter so we can quantify the RAM card!',
1577
+ },
1578
+ {
1579
+ firstName: 'Kayla',
1580
+ lastName: 'Herzog',
1581
+ address: '4739 Parisian Corners',
1582
+ state: 'Idaho',
1583
+ phoneNumber: '504-458-4377 x34542',
1584
+ lastLogin: '2019-12-04T01:59:04.874Z',
1585
+ favoriteMusic: 'Non Music',
1586
+ favoriteSong: "You Don't Have to Be a Star (To Be in My Show)",
1587
+ quote:
1588
+ 'Try to navigate the UDP microchip, maybe it will input the mobile transmitter!',
1589
+ },
1590
+ {
1591
+ firstName: 'Adriana',
1592
+ lastName: 'Graham',
1593
+ address: '2765 Hettinger Mission',
1594
+ state: 'Nevada',
1595
+ phoneNumber: '691-938-4227',
1596
+ lastLogin: '2023-04-03T18:04:02.329Z',
1597
+ favoriteMusic: 'Jazz',
1598
+ favoriteSong: 'Tha Crossroads',
1599
+ quote:
1600
+ "You can't program the driver without navigating the back-end PCI microchip!",
1601
+ },
1602
+ {
1603
+ firstName: 'Cassie',
1604
+ lastName: 'Zemlak',
1605
+ address: '10136 Brown Well',
1606
+ state: 'Mississippi',
1607
+ phoneNumber: '1-886-407-5724',
1608
+ lastLogin: '2023-05-25T08:24:56.376Z',
1609
+ favoriteMusic: 'Rap',
1610
+ favoriteSong: 'Superstition',
1611
+ quote:
1612
+ 'The XML circuit is down, copy the neural system so we can input the SSD transmitter!',
1613
+ },
1614
+ {
1615
+ firstName: 'Lyric',
1616
+ lastName: 'Botsford',
1617
+ address: '9858 Bridgette Ways',
1618
+ state: 'New York',
1619
+ phoneNumber: '921-941-9707 x97387',
1620
+ lastLogin: '2020-06-18T22:49:54.879Z',
1621
+ favoriteMusic: 'Reggae',
1622
+ favoriteSong: 'Always On My Mind',
1623
+ quote:
1624
+ 'If we generate the system, we can get to the AGP hard drive through the optical API hard drive!',
1625
+ },
1626
+ {
1627
+ firstName: 'Jalon',
1628
+ lastName: 'Auer',
1629
+ address: '1337 Spencer Shoals',
1630
+ state: 'Arizona',
1631
+ phoneNumber: '626.664.1307 x7251',
1632
+ lastLogin: '2022-09-06T01:58:58.283Z',
1633
+ favoriteMusic: 'Reggae',
1634
+ favoriteSong: "U Can't Touch This",
1635
+ quote:
1636
+ 'Try to compress the UTF8 protocol, maybe it will quantify the online sensor!',
1637
+ },
1638
+ {
1639
+ firstName: 'Ludwig',
1640
+ lastName: 'Olson',
1641
+ address: '969 Smith Isle',
1642
+ state: 'Utah',
1643
+ phoneNumber: '460.363.0230 x433',
1644
+ lastLogin: '2020-07-27T19:51:05.091Z',
1645
+ favoriteMusic: 'Metal',
1646
+ favoriteSong: 'Big Bad John',
1647
+ quote:
1648
+ 'The FTP port is down, override the open-source hard drive so we can bypass the HEX circuit!',
1649
+ },
1650
+ {
1651
+ firstName: 'Bridie',
1652
+ lastName: 'Brown',
1653
+ address: '40022 Herman Fall',
1654
+ state: 'Colorado',
1655
+ phoneNumber: '(488) 464-2590 x006',
1656
+ lastLogin: '2020-08-21T00:19:41.480Z',
1657
+ favoriteMusic: 'World',
1658
+ favoriteSong: 'The Power of Love',
1659
+ quote: 'We need to quantify the neural TLS matrix!',
1660
+ },
1661
+ {
1662
+ firstName: 'Catalina',
1663
+ lastName: 'Rippin',
1664
+ address: '43734 Nitzsche Groves',
1665
+ state: 'Colorado',
1666
+ phoneNumber: '705-543-3151 x793',
1667
+ lastLogin: '2021-08-09T12:26:22.963Z',
1668
+ favoriteMusic: 'Hip Hop',
1669
+ favoriteSong: "I Can't Stop Loving You",
1670
+ quote: 'We need to connect the solid state OCR port!',
1671
+ },
1672
+ {
1673
+ firstName: 'Carolanne',
1674
+ lastName: 'Turcotte',
1675
+ address: '7259 Lockman Flats',
1676
+ state: 'Oregon',
1677
+ phoneNumber: '1-682-446-8574',
1678
+ lastLogin: '2022-06-08T09:12:20.741Z',
1679
+ favoriteMusic: 'Blues',
1680
+ favoriteSong: 'Total Eclipse of the Heart',
1681
+ quote:
1682
+ 'If we back up the firewall, we can get to the UDP capacitor through the back-end SQL hard drive!',
1683
+ },
1684
+ {
1685
+ firstName: 'Scotty',
1686
+ lastName: 'Williamson',
1687
+ address: '61776 Rebeka Summit',
1688
+ state: 'Colorado',
1689
+ phoneNumber: '829-632-3726 x9232',
1690
+ lastLogin: '2020-03-06T09:18:52.685Z',
1691
+ favoriteMusic: 'Non Music',
1692
+ favoriteSong: 'All I Wanna Do',
1693
+ quote:
1694
+ "transmitting the firewall won't do anything, we need to navigate the neural TLS pixel!",
1695
+ },
1696
+ {
1697
+ firstName: 'Forest',
1698
+ lastName: 'Rau',
1699
+ address: '84797 Prohaska Route',
1700
+ state: 'Oklahoma',
1701
+ phoneNumber: '1-506-693-4479 x7363',
1702
+ lastLogin: '2022-02-13T03:51:02.882Z',
1703
+ favoriteMusic: 'Metal',
1704
+ favoriteSong: 'My Girl',
1705
+ quote:
1706
+ 'If we transmit the bandwidth, we can get to the JSON array through the redundant DNS interface!',
1707
+ },
1708
+ {
1709
+ firstName: 'Mustafa',
1710
+ lastName: 'Glover',
1711
+ address: '8784 Gilda Ferry',
1712
+ state: 'Texas',
1713
+ phoneNumber: '(221) 701-4090 x6545',
1714
+ lastLogin: '2020-03-28T22:08:14.861Z',
1715
+ favoriteMusic: 'Rock',
1716
+ favoriteSong: 'Grease',
1717
+ quote:
1718
+ 'If we program the circuit, we can get to the API transmitter through the mobile CSS alarm!',
1719
+ },
1720
+ {
1721
+ firstName: 'Alexa',
1722
+ lastName: 'Schaden',
1723
+ address: '216 Bashirian Common',
1724
+ state: 'Arizona',
1725
+ phoneNumber: '(794) 997-1491',
1726
+ lastLogin: '2023-10-19T00:48:46.789Z',
1727
+ favoriteMusic: 'Rock',
1728
+ favoriteSong: '50 Ways to Leave Your Lover',
1729
+ quote:
1730
+ 'Use the wireless IB port, then you can compress the bluetooth card!',
1731
+ },
1732
+ {
1733
+ firstName: 'Valentine',
1734
+ lastName: 'Weimann',
1735
+ address: '813 Augustus Spur',
1736
+ state: 'Utah',
1737
+ phoneNumber: '206.690.2919',
1738
+ lastLogin: '2020-09-30T07:09:57.228Z',
1739
+ favoriteMusic: 'Rap',
1740
+ favoriteSong: 'Because of You',
1741
+ quote: 'We need to parse the auxiliary TLS capacitor!',
1742
+ },
1743
+ {
1744
+ firstName: 'Isabell',
1745
+ lastName: 'Senger',
1746
+ address: '37201 Corkery Ranch',
1747
+ state: 'Iowa',
1748
+ phoneNumber: '1-531-713-5087',
1749
+ lastLogin: '2020-06-29T19:23:55.807Z',
1750
+ favoriteMusic: 'Stage And Screen',
1751
+ favoriteSong: 'E.T.',
1752
+ quote:
1753
+ "I'll index the solid state XML microchip, that should transmitter the OCR alarm!",
1754
+ },
1755
+ {
1756
+ firstName: 'Jakob',
1757
+ lastName: 'Jacobs',
1758
+ address: '336 Itzel Viaduct',
1759
+ state: 'Hawaii',
1760
+ phoneNumber: '(652) 827-4708 x04803',
1761
+ lastLogin: '2019-09-17T21:17:28.501Z',
1762
+ favoriteMusic: 'Metal',
1763
+ favoriteSong: 'Red Red Wine',
1764
+ quote:
1765
+ 'Try to calculate the EXE sensor, maybe it will input the optical feed!',
1766
+ },
1767
+ {
1768
+ firstName: 'Adell',
1769
+ lastName: 'Bergstrom',
1770
+ address: '3844 Cormier Island',
1771
+ state: 'Georgia',
1772
+ phoneNumber: '647-786-3685 x498',
1773
+ lastLogin: '2022-03-23T20:07:07.730Z',
1774
+ favoriteMusic: 'Funk',
1775
+ favoriteSong: 'Escape (The Pina Colada Song)',
1776
+ quote:
1777
+ "I'll parse the mobile JBOD array, that should interface the ADP array!",
1778
+ },
1779
+ {
1780
+ firstName: 'Enid',
1781
+ lastName: 'Turner',
1782
+ address: '9124 Bella Parkway',
1783
+ state: 'California',
1784
+ phoneNumber: '898.625.2245',
1785
+ lastLogin: '2023-10-02T21:37:37.848Z',
1786
+ favoriteMusic: 'Country',
1787
+ favoriteSong: 'Tik-Toc',
1788
+ quote:
1789
+ 'The PNG alarm is down, transmit the mobile feed so we can program the JSON array!',
1790
+ },
1791
+ {
1792
+ firstName: 'Jazmyn',
1793
+ lastName: 'Bayer',
1794
+ address: '994 Vandervort Freeway',
1795
+ state: 'Michigan',
1796
+ phoneNumber: '1-525-851-3729',
1797
+ lastLogin: '2020-08-07T08:51:58.175Z',
1798
+ favoriteMusic: 'Metal',
1799
+ favoriteSong: 'The Love You Save',
1800
+ quote:
1801
+ 'Use the wireless AGP driver, then you can input the primary hard drive!',
1802
+ },
1803
+ {
1804
+ firstName: 'Wallace',
1805
+ lastName: 'Schultz',
1806
+ address: '991 Cynthia Islands',
1807
+ state: 'South Dakota',
1808
+ phoneNumber: '276.486.9138 x19749',
1809
+ lastLogin: '2021-12-15T20:21:59.615Z',
1810
+ favoriteMusic: 'Folk',
1811
+ favoriteSong: 'The Sign',
1812
+ quote:
1813
+ 'The IB transmitter is down, input the redundant array so we can compress the UTF8 bus!',
1814
+ },
1815
+ {
1816
+ firstName: 'Ronaldo',
1817
+ lastName: 'Bergnaum',
1818
+ address: '793 Harvey Cliffs',
1819
+ state: 'Minnesota',
1820
+ phoneNumber: '(763) 924-8113 x909',
1821
+ lastLogin: '2019-09-10T04:59:43.612Z',
1822
+ favoriteMusic: 'Funk',
1823
+ favoriteSong: 'Cheek to Cheek',
1824
+ quote:
1825
+ "You can't calculate the driver without bypassing the open-source PNG application!",
1826
+ },
1827
+ {
1828
+ firstName: 'Jamarcus',
1829
+ lastName: 'Dickens',
1830
+ address: '458 Raoul Crossing',
1831
+ state: 'Minnesota',
1832
+ phoneNumber: '1-977-491-1174 x12903',
1833
+ lastLogin: '2022-01-08T12:50:58.859Z',
1834
+ favoriteMusic: 'Stage And Screen',
1835
+ favoriteSong: 'One',
1836
+ quote:
1837
+ "connecting the capacitor won't do anything, we need to navigate the back-end ASCII matrix!",
1838
+ },
1839
+ {
1840
+ firstName: 'Ozella',
1841
+ lastName: 'Walsh',
1842
+ address: '28623 Imani Mission',
1843
+ state: 'Iowa',
1844
+ phoneNumber: '1-803-233-1722 x94688',
1845
+ lastLogin: '2020-07-20T09:55:33.884Z',
1846
+ favoriteMusic: 'Rap',
1847
+ favoriteSong: 'Wipe Out',
1848
+ quote:
1849
+ 'The UTF8 bus is down, hack the haptic application so we can transmit the DNS panel!',
1850
+ },
1851
+ {
1852
+ firstName: 'Vergie',
1853
+ lastName: 'Stokes',
1854
+ address: '57283 Dahlia Ranch',
1855
+ state: 'New York',
1856
+ phoneNumber: '1-974-656-0663 x201',
1857
+ lastLogin: '2023-01-11T05:24:46.164Z',
1858
+ favoriteMusic: 'Latin',
1859
+ favoriteSong: 'This Ole House',
1860
+ quote:
1861
+ 'Use the open-source IB panel, then you can quantify the cross-platform feed!',
1862
+ },
1863
+ {
1864
+ firstName: 'Juvenal',
1865
+ lastName: 'Rogahn',
1866
+ address: '016 Wiegand Plains',
1867
+ state: 'Florida',
1868
+ phoneNumber: '(569) 709-7816',
1869
+ lastLogin: '2020-06-15T14:11:40.649Z',
1870
+ favoriteMusic: 'Rock',
1871
+ favoriteSong: 'Swinging On a Star',
1872
+ quote:
1873
+ "navigating the bandwidth won't do anything, we need to input the online SQL driver!",
1874
+ },
1875
+ {
1876
+ firstName: 'Marisa',
1877
+ lastName: "O'Connell",
1878
+ address: '9075 Schowalter Crossing',
1879
+ state: 'Indiana',
1880
+ phoneNumber: '(368) 695-6801 x6567',
1881
+ lastLogin: '2022-01-22T20:34:36.727Z',
1882
+ favoriteMusic: 'Blues',
1883
+ favoriteSong: 'Body & Soul',
1884
+ quote:
1885
+ "I'll compress the neural HDD matrix, that should firewall the HEX application!",
1886
+ },
1887
+ {
1888
+ firstName: 'Renee',
1889
+ lastName: 'MacGyver',
1890
+ address: '28801 Melody Locks',
1891
+ state: 'South Carolina',
1892
+ phoneNumber: '217-885-0010 x51327',
1893
+ lastLogin: '2019-08-17T15:24:13.220Z',
1894
+ favoriteMusic: 'World',
1895
+ favoriteSong: "Can't Help Falling in Love",
1896
+ quote:
1897
+ 'Try to synthesize the DNS bus, maybe it will synthesize the primary alarm!',
1898
+ },
1899
+ {
1900
+ firstName: 'Luz',
1901
+ lastName: 'Labadie',
1902
+ address: '7427 Marvin Lock',
1903
+ state: 'Iowa',
1904
+ phoneNumber: '1-475-395-9892',
1905
+ lastLogin: '2023-05-04T11:46:27.845Z',
1906
+ favoriteMusic: 'Pop',
1907
+ favoriteSong: 'Eve of Destruction',
1908
+ quote: 'We need to program the neural RSS alarm!',
1909
+ },
1910
+ {
1911
+ firstName: 'Thurman',
1912
+ lastName: 'Quitzon',
1913
+ address: '1451 Houston Center',
1914
+ state: 'California',
1915
+ phoneNumber: '(606) 818-4644 x897',
1916
+ lastLogin: '2023-04-24T20:08:03.415Z',
1917
+ favoriteMusic: 'Non Music',
1918
+ favoriteSong: 'This Used to Be My Playground',
1919
+ quote:
1920
+ 'Try to bypass the USB interface, maybe it will parse the optical alarm!',
1921
+ },
1922
+ {
1923
+ firstName: 'Jerrold',
1924
+ lastName: 'Grant',
1925
+ address: '26488 Leonel Place',
1926
+ state: 'Massachusetts',
1927
+ phoneNumber: '1-949-823-5546 x320',
1928
+ lastLogin: '2022-09-06T01:08:43.228Z',
1929
+ favoriteMusic: 'World',
1930
+ favoriteSong: 'Chattanooga Choo Choo',
1931
+ quote:
1932
+ 'If we reboot the system, we can get to the HTTP port through the bluetooth JBOD panel!',
1933
+ },
1934
+ {
1935
+ firstName: 'Charlene',
1936
+ lastName: 'Kautzer',
1937
+ address: '026 Koch Squares',
1938
+ state: 'Delaware',
1939
+ phoneNumber: '1-819-452-4832',
1940
+ lastLogin: '2021-11-12T16:22:52.339Z',
1941
+ favoriteMusic: 'Stage And Screen',
1942
+ favoriteSong: 'Kung Fu Fighting',
1943
+ quote:
1944
+ "I'll back up the solid state XSS application, that should panel the OCR driver!",
1945
+ },
1946
+ {
1947
+ firstName: 'Bennie',
1948
+ lastName: 'White',
1949
+ address: '8838 Ruthe Lodge',
1950
+ state: 'Oregon',
1951
+ phoneNumber: '1-326-766-9776 x5871',
1952
+ lastLogin: '2019-10-02T03:49:08.476Z',
1953
+ favoriteMusic: 'Folk',
1954
+ favoriteSong: 'I Wanna Dance With Somebody (Who Loves Me)',
1955
+ quote: 'We need to index the auxiliary AGP alarm!',
1956
+ },
1957
+ {
1958
+ firstName: 'Serena',
1959
+ lastName: 'Howell',
1960
+ address: '50451 Stephanie Lane',
1961
+ state: 'North Dakota',
1962
+ phoneNumber: '494.371.8192 x3198',
1963
+ lastLogin: '2023-05-26T12:48:02.295Z',
1964
+ favoriteMusic: 'Hip Hop',
1965
+ favoriteSong: 'Crazy Little Thing Called Love',
1966
+ quote: 'We need to navigate the haptic SSL firewall!',
1967
+ },
1968
+ {
1969
+ firstName: 'Christian',
1970
+ lastName: 'Zulauf',
1971
+ address: '0536 Marcelino Stravenue',
1972
+ state: 'South Dakota',
1973
+ phoneNumber: '311.287.5546 x634',
1974
+ lastLogin: '2022-02-21T16:31:57.849Z',
1975
+ favoriteMusic: 'Funk',
1976
+ favoriteSong: 'Yeah!',
1977
+ quote:
1978
+ "I'll calculate the 1080p JBOD firewall, that should sensor the DRAM circuit!",
1979
+ },
1980
+ {
1981
+ firstName: 'Trenton',
1982
+ lastName: 'Gutmann',
1983
+ address: '1794 Friedrich Drives',
1984
+ state: 'North Dakota',
1985
+ phoneNumber: '587.472.6191 x90105',
1986
+ lastLogin: '2021-05-14T15:23:38.984Z',
1987
+ favoriteMusic: 'Folk',
1988
+ favoriteSong: 'Take On Me',
1989
+ quote:
1990
+ "I'll index the multi-byte DRAM program, that should sensor the DNS monitor!",
1991
+ },
1992
+ {
1993
+ firstName: 'Julianne',
1994
+ lastName: 'Reichert',
1995
+ address: '39854 Herman Overpass',
1996
+ state: 'Missouri',
1997
+ phoneNumber: '1-921-342-5327 x91377',
1998
+ lastLogin: '2020-10-13T21:46:43.921Z',
1999
+ favoriteMusic: 'Metal',
2000
+ favoriteSong: "Won't Get Fooled Again",
2001
+ quote:
2002
+ 'The ASCII sensor is down, copy the virtual monitor so we can hack the OCR array!',
2003
+ },
2004
+ {
2005
+ firstName: 'Arne',
2006
+ lastName: 'Jerde',
2007
+ address: '73182 Camryn Mills',
2008
+ state: 'Ohio',
2009
+ phoneNumber: '1-886-609-1117 x1213',
2010
+ lastLogin: '2021-07-15T07:55:57.969Z',
2011
+ favoriteMusic: 'Rap',
2012
+ favoriteSong: 'Build Me Up Buttercup',
2013
+ quote:
2014
+ 'If we copy the application, we can get to the SSL array through the online GB card!',
2015
+ },
2016
+ {
2017
+ firstName: 'Russel',
2018
+ lastName: 'Prosacco',
2019
+ address: '733 Fausto Harbors',
2020
+ state: 'Alaska',
2021
+ phoneNumber: '(768) 434-0549 x046',
2022
+ lastLogin: '2022-01-04T12:36:15.613Z',
2023
+ favoriteMusic: 'Blues',
2024
+ favoriteSong: 'Man in the Mirror',
2025
+ quote:
2026
+ "You can't program the application without indexing the bluetooth RSS port!",
2027
+ },
2028
+ {
2029
+ firstName: 'Sylvan',
2030
+ lastName: 'Pacocha',
2031
+ address: '1666 Kayden Knolls',
2032
+ state: 'Virginia',
2033
+ phoneNumber: '890.970.7412 x99529',
2034
+ lastLogin: '2023-01-13T11:38:20.489Z',
2035
+ favoriteMusic: 'Funk',
2036
+ favoriteSong: 'Tammy',
2037
+ quote: 'We need to program the optical UTF8 microchip!',
2038
+ },
2039
+ {
2040
+ firstName: 'Avis',
2041
+ lastName: 'Kemmer',
2042
+ address: '067 Dicki Spring',
2043
+ state: 'Minnesota',
2044
+ phoneNumber: '1-470-276-6628 x7318',
2045
+ lastLogin: '2020-08-03T09:30:51.310Z',
2046
+ favoriteMusic: 'Country',
2047
+ favoriteSong: 'We Will Rock You',
2048
+ quote:
2049
+ 'If we index the bandwidth, we can get to the SSL matrix through the mobile RSS card!',
2050
+ },
2051
+ {
2052
+ firstName: 'Vinnie',
2053
+ lastName: 'Erdman',
2054
+ address: '266 West Parks',
2055
+ state: 'Ohio',
2056
+ phoneNumber: '295.883.0344 x9687',
2057
+ lastLogin: '2021-08-31T10:41:31.145Z',
2058
+ favoriteMusic: 'Pop',
2059
+ favoriteSong: 'Dancing Queen',
2060
+ quote: 'We need to program the auxiliary ADP port!',
2061
+ },
2062
+ {
2063
+ firstName: 'Retha',
2064
+ lastName: 'Shanahan',
2065
+ address: '92874 Burnice Rest',
2066
+ state: 'West Virginia',
2067
+ phoneNumber: '1-989-842-2804',
2068
+ lastLogin: '2021-11-01T14:04:37.080Z',
2069
+ favoriteMusic: 'Funk',
2070
+ favoriteSong: 'Leader of the Pack',
2071
+ quote:
2072
+ 'If we generate the system, we can get to the JSON capacitor through the auxiliary JSON circuit!',
2073
+ },
2074
+ {
2075
+ firstName: 'Sophia',
2076
+ lastName: 'Durgan',
2077
+ address: '33093 Kris Highway',
2078
+ state: 'West Virginia',
2079
+ phoneNumber: '257-311-0156 x02940',
2080
+ lastLogin: '2023-04-16T22:04:32.445Z',
2081
+ favoriteMusic: 'Reggae',
2082
+ favoriteSong: 'Take a Bow',
2083
+ quote:
2084
+ "programming the protocol won't do anything, we need to connect the redundant OCR application!",
2085
+ },
2086
+ {
2087
+ firstName: 'Geovany',
2088
+ lastName: 'Tromp',
2089
+ address: '04085 Vesta Corners',
2090
+ state: 'Oregon',
2091
+ phoneNumber: '366.420.6148 x9787',
2092
+ lastLogin: '2020-04-08T05:16:09.002Z',
2093
+ favoriteMusic: 'Rock',
2094
+ favoriteSong: 'Here in My Heart',
2095
+ quote:
2096
+ 'Try to copy the ASCII feed, maybe it will index the wireless protocol!',
2097
+ },
2098
+ {
2099
+ firstName: 'Abdullah',
2100
+ lastName: 'Williamson',
2101
+ address: '2785 Karlie Run',
2102
+ state: 'Florida',
2103
+ phoneNumber: '(689) 794-2642 x8431',
2104
+ lastLogin: '2020-08-16T20:37:23.466Z',
2105
+ favoriteMusic: 'Classical',
2106
+ favoriteSong: 'Bye',
2107
+ quote:
2108
+ "You can't index the capacitor without backing up the open-source USB sensor!",
2109
+ },
2110
+ {
2111
+ firstName: 'Bo',
2112
+ lastName: 'Hettinger',
2113
+ address: '11099 Dare Isle',
2114
+ state: 'Florida',
2115
+ phoneNumber: '(359) 794-0686 x05810',
2116
+ lastLogin: '2022-06-25T21:03:05.811Z',
2117
+ favoriteMusic: 'Jazz',
2118
+ favoriteSong: 'Rush Rush',
2119
+ quote:
2120
+ 'Use the primary SMTP program, then you can calculate the 1080p microchip!',
2121
+ },
2122
+ {
2123
+ firstName: 'Lois',
2124
+ lastName: 'Reichel',
2125
+ address: '41309 Abernathy Valley',
2126
+ state: 'Rhode Island',
2127
+ phoneNumber: '(444) 941-5900 x2001',
2128
+ lastLogin: '2021-12-03T16:26:57.343Z',
2129
+ favoriteMusic: 'Metal',
2130
+ favoriteSong: 'Rapture',
2131
+ quote:
2132
+ 'If we back up the alarm, we can get to the SQL sensor through the bluetooth COM bandwidth!',
2133
+ },
2134
+ {
2135
+ firstName: 'Elmer',
2136
+ lastName: 'Cummerata',
2137
+ address: '184 Katrine Shore',
2138
+ state: 'Iowa',
2139
+ phoneNumber: '372.603.3205 x712',
2140
+ lastLogin: '2021-04-19T11:13:07.667Z',
2141
+ favoriteMusic: 'World',
2142
+ favoriteSong: 'You Are the Sunshine of My Life',
2143
+ quote:
2144
+ 'If we reboot the sensor, we can get to the VGA port through the mobile SSL alarm!',
2145
+ },
2146
+ {
2147
+ firstName: 'Nella',
2148
+ lastName: 'Von',
2149
+ address: '1350 Stoltenberg Brooks',
2150
+ state: 'Texas',
2151
+ phoneNumber: '1-925-845-7429 x0536',
2152
+ lastLogin: '2020-03-10T03:40:50.476Z',
2153
+ favoriteMusic: 'Jazz',
2154
+ favoriteSong: "Theme From 'Greatest American Hero' (Believe It Or Not)",
2155
+ quote:
2156
+ "You can't input the driver without calculating the online GB bandwidth!",
2157
+ },
2158
+ {
2159
+ firstName: 'Tyler',
2160
+ lastName: 'Orn',
2161
+ address: '33097 VonRueden Camp',
2162
+ state: 'Iowa',
2163
+ phoneNumber: '(930) 397-6101',
2164
+ lastLogin: '2022-12-31T20:27:01.650Z',
2165
+ favoriteMusic: 'Electronic',
2166
+ favoriteSong: 'Secret Love',
2167
+ quote:
2168
+ 'The SMS panel is down, calculate the digital interface so we can calculate the IB program!',
2169
+ },
2170
+ {
2171
+ firstName: 'Joy',
2172
+ lastName: 'Lockman',
2173
+ address: '3235 Isabell Terrace',
2174
+ state: 'Louisiana',
2175
+ phoneNumber: '(988) 273-5397 x17397',
2176
+ lastLogin: '2021-11-30T23:25:34.134Z',
2177
+ favoriteMusic: 'Latin',
2178
+ favoriteSong: 'I Got You Babe',
2179
+ quote:
2180
+ 'Use the redundant TCP transmitter, then you can parse the bluetooth matrix!',
2181
+ },
2182
+ {
2183
+ firstName: 'Jarret',
2184
+ lastName: 'Kulas',
2185
+ address: '364 Gorczany Bypass',
2186
+ state: 'Georgia',
2187
+ phoneNumber: '1-909-780-0982 x92779',
2188
+ lastLogin: '2019-05-27T18:28:31.309Z',
2189
+ favoriteMusic: 'Rock',
2190
+ favoriteSong: 'Disturbia',
2191
+ quote: 'Use the virtual COM port, then you can index the digital driver!',
2192
+ },
2193
+ {
2194
+ firstName: 'Pedro',
2195
+ lastName: 'Friesen',
2196
+ address: '20032 Waylon Hollow',
2197
+ state: 'Indiana',
2198
+ phoneNumber: '(268) 387-1965',
2199
+ lastLogin: '2022-08-18T16:55:19.848Z',
2200
+ favoriteMusic: 'World',
2201
+ favoriteSong: 'Up Up & Away',
2202
+ quote:
2203
+ "You can't calculate the bus without backing up the digital DRAM driver!",
2204
+ },
2205
+ {
2206
+ firstName: 'Dedric',
2207
+ lastName: 'Senger',
2208
+ address: '818 Borer Dam',
2209
+ state: 'Alaska',
2210
+ phoneNumber: '1-462-853-3223',
2211
+ lastLogin: '2019-12-06T14:14:47.556Z',
2212
+ favoriteMusic: 'Funk',
2213
+ favoriteSong: 'Smoke Gets in Your Eyes',
2214
+ quote:
2215
+ 'The GB sensor is down, synthesize the auxiliary feed so we can input the COM sensor!',
2216
+ },
2217
+ {
2218
+ firstName: 'Jess',
2219
+ lastName: 'Powlowski',
2220
+ address: '169 Marion Ridges',
2221
+ state: 'South Carolina',
2222
+ phoneNumber: '445-623-4865 x41525',
2223
+ lastLogin: '2020-02-24T19:40:43.679Z',
2224
+ favoriteMusic: 'Jazz',
2225
+ favoriteSong: 'Let Me Call You Sweetheart',
2226
+ quote:
2227
+ 'Use the cross-platform DNS bandwidth, then you can transmit the mobile sensor!',
2228
+ },
2229
+ {
2230
+ firstName: 'Herta',
2231
+ lastName: 'Schultz',
2232
+ address: '46393 Roberta Landing',
2233
+ state: 'Minnesota',
2234
+ phoneNumber: '798.446.4800',
2235
+ lastLogin: '2020-08-19T08:26:34.307Z',
2236
+ favoriteMusic: 'Funk',
2237
+ favoriteSong: 'Hurt So Good',
2238
+ quote:
2239
+ "I'll connect the cross-platform HDD alarm, that should hard drive the SDD bus!",
2240
+ },
2241
+ {
2242
+ firstName: 'Maurine',
2243
+ lastName: 'Boyle',
2244
+ address: '243 Wade Point',
2245
+ state: 'Arkansas',
2246
+ phoneNumber: '1-932-491-9223',
2247
+ lastLogin: '2021-11-07T17:38:08.763Z',
2248
+ favoriteMusic: 'Stage And Screen',
2249
+ favoriteSong: "Hips don't lie",
2250
+ quote: 'We need to connect the redundant ADP system!',
2251
+ },
2252
+ {
2253
+ firstName: 'Marjory',
2254
+ lastName: 'McClure',
2255
+ address: '350 Cheyanne Camp',
2256
+ state: 'West Virginia',
2257
+ phoneNumber: '1-413-868-6859 x24987',
2258
+ lastLogin: '2023-03-14T18:07:48.268Z',
2259
+ favoriteMusic: 'Rap',
2260
+ favoriteSong: 'Kiss',
2261
+ quote: 'We need to navigate the haptic TLS panel!',
2262
+ },
2263
+ {
2264
+ firstName: 'Darion',
2265
+ lastName: 'Wisozk',
2266
+ address: '232 Berge Junctions',
2267
+ state: 'Arizona',
2268
+ phoneNumber: '1-887-450-7810',
2269
+ lastLogin: '2023-08-27T12:45:14.167Z',
2270
+ favoriteMusic: 'Latin',
2271
+ favoriteSong: 'I Get Around',
2272
+ quote:
2273
+ "transmitting the microchip won't do anything, we need to navigate the cross-platform ADP application!",
2274
+ },
2275
+ {
2276
+ firstName: 'Freda',
2277
+ lastName: 'Boyer',
2278
+ address: '4092 Lakin Passage',
2279
+ state: 'Arizona',
2280
+ phoneNumber: '868-901-8673 x19014',
2281
+ lastLogin: '2019-01-20T21:51:55.513Z',
2282
+ favoriteMusic: 'Non Music',
2283
+ favoriteSong: 'Wishing Well',
2284
+ quote: 'We need to transmit the back-end RSS capacitor!',
2285
+ },
2286
+ {
2287
+ firstName: 'Daija',
2288
+ lastName: 'Cole',
2289
+ address: '998 Feil Causeway',
2290
+ state: 'Colorado',
2291
+ phoneNumber: '591.689.7935',
2292
+ lastLogin: '2020-03-29T16:59:21.046Z',
2293
+ favoriteMusic: 'World',
2294
+ favoriteSong: "(It's No) Sin",
2295
+ quote: 'We need to synthesize the redundant SMTP hard drive!',
2296
+ },
2297
+ {
2298
+ firstName: 'Isidro',
2299
+ lastName: 'Barton',
2300
+ address: '692 Hannah Harbors',
2301
+ state: 'Louisiana',
2302
+ phoneNumber: '1-521-632-7204',
2303
+ lastLogin: '2022-11-02T18:58:59.587Z',
2304
+ favoriteMusic: 'Folk',
2305
+ favoriteSong: 'Brother',
2306
+ quote: 'We need to parse the auxiliary HEX bandwidth!',
2307
+ },
2308
+ {
2309
+ firstName: 'Ada',
2310
+ lastName: 'McLaughlin',
2311
+ address: '841 Chanelle Canyon',
2312
+ state: 'Arkansas',
2313
+ phoneNumber: '206.847.6733',
2314
+ lastLogin: '2021-03-27T19:56:02.116Z',
2315
+ favoriteMusic: 'Electronic',
2316
+ favoriteSong: 'Groove is in the Heart',
2317
+ quote: 'We need to reboot the open-source SDD application!',
2318
+ },
2319
+ {
2320
+ firstName: 'Sarah',
2321
+ lastName: 'Kuhlman',
2322
+ address: '473 Ahmed Knoll',
2323
+ state: 'North Carolina',
2324
+ phoneNumber: '483-459-2066 x0169',
2325
+ lastLogin: '2022-05-27T08:10:57.211Z',
2326
+ favoriteMusic: 'Classical',
2327
+ favoriteSong: 'I Just Called to Say I Love You',
2328
+ quote:
2329
+ "compressing the bandwidth won't do anything, we need to bypass the virtual THX capacitor!",
2330
+ },
2331
+ {
2332
+ firstName: 'Branson',
2333
+ lastName: 'Boyer',
2334
+ address: '0789 Jo Circle',
2335
+ state: 'New Mexico',
2336
+ phoneNumber: '230.651.5955',
2337
+ lastLogin: '2022-08-16T22:49:14.914Z',
2338
+ favoriteMusic: 'Stage And Screen',
2339
+ favoriteSong: 'Feel Like Making Love',
2340
+ quote:
2341
+ "I'll copy the virtual PCI application, that should alarm the FTP hard drive!",
2342
+ },
2343
+ {
2344
+ firstName: 'Humberto',
2345
+ lastName: 'Beahan',
2346
+ address: '16065 Herman Freeway',
2347
+ state: 'Washington',
2348
+ phoneNumber: '555-464-7388',
2349
+ lastLogin: '2020-01-18T15:42:51.572Z',
2350
+ favoriteMusic: 'Funk',
2351
+ favoriteSong: 'Imagine',
2352
+ quote:
2353
+ 'The PCI hard drive is down, reboot the back-end bandwidth so we can quantify the HEX hard drive!',
2354
+ },
2355
+ {
2356
+ firstName: 'Domenic',
2357
+ lastName: 'Bernier',
2358
+ address: '83684 Hagenes Crest',
2359
+ state: 'New Mexico',
2360
+ phoneNumber: '207.846.6268 x29983',
2361
+ lastLogin: '2021-06-22T05:33:50.459Z',
2362
+ favoriteMusic: 'Latin',
2363
+ favoriteSong: 'Philadelphia Freedom',
2364
+ quote:
2365
+ 'The GB monitor is down, program the bluetooth array so we can parse the TLS driver!',
2366
+ },
2367
+ {
2368
+ firstName: 'Alayna',
2369
+ lastName: 'Hand',
2370
+ address: '51016 Wisozk Grove',
2371
+ state: 'New York',
2372
+ phoneNumber: '317-783-7334 x538',
2373
+ lastLogin: '2023-05-15T18:10:16.387Z',
2374
+ favoriteMusic: 'Jazz',
2375
+ favoriteSong: 'Yakety Yak',
2376
+ quote: 'We need to calculate the multi-byte SCSI circuit!',
2377
+ },
2378
+ {
2379
+ firstName: 'Henri',
2380
+ lastName: 'Gottlieb',
2381
+ address: '6075 Doyle Tunnel',
2382
+ state: 'Colorado',
2383
+ phoneNumber: '(691) 295-0631 x8778',
2384
+ lastLogin: '2020-11-21T05:57:22.135Z',
2385
+ favoriteMusic: 'Electronic',
2386
+ favoriteSong: 'Always On My Mind',
2387
+ quote:
2388
+ 'Use the back-end JSON transmitter, then you can parse the virtual sensor!',
2389
+ },
2390
+ ];