@tanstack/table-core 8.0.0-alpha.27 → 8.0.0-alpha.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. package/build/cjs/aggregationTypes.js +1 -0
  2. package/build/cjs/aggregationTypes.js.map +1 -1
  3. package/build/cjs/core.js +29 -79
  4. package/build/cjs/core.js.map +1 -1
  5. package/build/cjs/createTable.js.map +1 -1
  6. package/build/cjs/features/ColumnSizing.js.map +1 -1
  7. package/build/cjs/features/Expanding.js +14 -18
  8. package/build/cjs/features/Expanding.js.map +1 -1
  9. package/build/cjs/features/Filters.js +29 -82
  10. package/build/cjs/features/Filters.js.map +1 -1
  11. package/build/cjs/features/Grouping.js +10 -16
  12. package/build/cjs/features/Grouping.js.map +1 -1
  13. package/build/cjs/features/Headers.js.map +1 -1
  14. package/build/cjs/features/Ordering.js.map +1 -1
  15. package/build/cjs/features/Pagination.js +10 -17
  16. package/build/cjs/features/Pagination.js.map +1 -1
  17. package/build/cjs/features/Pinning.js.map +1 -1
  18. package/build/cjs/features/RowSelection.js.map +1 -1
  19. package/build/cjs/features/Sorting.js +11 -17
  20. package/build/cjs/features/Sorting.js.map +1 -1
  21. package/build/cjs/features/Visibility.js.map +1 -1
  22. package/build/cjs/filterTypes.js.map +1 -1
  23. package/build/cjs/index.js +19 -12
  24. package/build/cjs/index.js.map +1 -1
  25. package/build/cjs/sortTypes.js.map +1 -1
  26. package/build/cjs/utils/filterRowsUtils.js.map +1 -1
  27. package/build/cjs/utils/getColumnFilteredRowModelSync.js +113 -0
  28. package/build/cjs/utils/getColumnFilteredRowModelSync.js.map +1 -0
  29. package/build/cjs/utils/getCoreRowModelAsync.js +125 -0
  30. package/build/cjs/utils/getCoreRowModelAsync.js.map +1 -0
  31. package/build/cjs/utils/getCoreRowModelSync.js +102 -0
  32. package/build/cjs/utils/getCoreRowModelSync.js.map +1 -0
  33. package/build/cjs/utils/getExpandedRowModel.js +61 -0
  34. package/build/cjs/utils/getExpandedRowModel.js.map +1 -0
  35. package/build/cjs/utils/getGlobalFilteredRowModelSync.js +89 -0
  36. package/build/cjs/utils/getGlobalFilteredRowModelSync.js.map +1 -0
  37. package/build/cjs/utils/getGroupedRowModel.js +174 -0
  38. package/build/cjs/utils/getGroupedRowModel.js.map +1 -0
  39. package/build/cjs/utils/getPaginationRowModel.js +61 -0
  40. package/build/cjs/utils/getPaginationRowModel.js.map +1 -0
  41. package/build/cjs/utils/getSortedRowModelSync.js +116 -0
  42. package/build/cjs/utils/getSortedRowModelSync.js.map +1 -0
  43. package/build/cjs/utils.js +159 -21
  44. package/build/cjs/utils.js.map +1 -1
  45. package/build/esm/index.js +857 -505
  46. package/build/esm/index.js.map +1 -1
  47. package/build/stats-html.html +1 -1
  48. package/build/stats-react.json +406 -312
  49. package/build/types/aggregationTypes.d.ts +1 -1
  50. package/build/types/core.d.ts +9 -1
  51. package/build/types/createTable.d.ts +2 -4
  52. package/build/types/features/Expanding.d.ts +2 -1
  53. package/build/types/features/Filters.d.ts +6 -2
  54. package/build/types/features/Grouping.d.ts +3 -2
  55. package/build/types/features/Pagination.d.ts +2 -1
  56. package/build/types/features/Sorting.d.ts +2 -1
  57. package/build/types/index.d.ts +8 -6
  58. package/build/types/types.d.ts +3 -2
  59. package/build/types/utils/getColumnFilteredRowModelAsync.d.ts +4 -0
  60. package/build/types/utils/getColumnFilteredRowModelSync.d.ts +2 -0
  61. package/build/types/utils/getCoreRowModelAsync.d.ts +4 -0
  62. package/build/types/utils/getCoreRowModelSync.d.ts +2 -0
  63. package/build/types/utils/getExpandedRowModel.d.ts +7 -0
  64. package/build/types/utils/getGlobalFilteredRowModelAsync.d.ts +4 -0
  65. package/build/types/utils/getGlobalFilteredRowModelSync.d.ts +2 -0
  66. package/build/types/utils/getGroupedRowModel.d.ts +2 -0
  67. package/build/types/utils/getPaginationRowModel.d.ts +4 -0
  68. package/build/types/utils/{sortRowsQuicksortFn.d.ts → getSortedRowModelAsync.d.ts} +3 -1
  69. package/build/types/utils/getSortedRowModelSync.d.ts +2 -0
  70. package/build/types/utils.d.ts +16 -0
  71. package/build/umd/index.development.js +872 -513
  72. package/build/umd/index.development.js.map +1 -1
  73. package/build/umd/index.production.js +1 -1
  74. package/build/umd/index.production.js.map +1 -1
  75. package/package.json +1 -1
  76. package/src/aggregationTypes.ts +1 -1
  77. package/src/core.tsx +46 -99
  78. package/src/createTable.tsx +2 -6
  79. package/src/features/Expanding.ts +21 -29
  80. package/src/features/Filters.ts +53 -100
  81. package/src/features/Grouping.ts +19 -21
  82. package/src/features/Pagination.ts +19 -28
  83. package/src/features/Sorting.ts +20 -24
  84. package/src/index.tsx +8 -6
  85. package/src/types.ts +4 -1
  86. package/src/utils/getColumnFilteredRowModelAsync.ts +117 -0
  87. package/src/utils/getColumnFilteredRowModelSync.ts +97 -0
  88. package/src/utils/getCoreRowModelAsync.ts +103 -0
  89. package/src/utils/getCoreRowModelSync.ts +105 -0
  90. package/src/utils/getExpandedRowModel.ts +58 -0
  91. package/src/utils/getGlobalFilteredRowModelAsync.ts +95 -0
  92. package/src/utils/getGlobalFilteredRowModelSync.ts +74 -0
  93. package/src/utils/getGroupedRowModel.ts +187 -0
  94. package/src/utils/getPaginationRowModel.ts +45 -0
  95. package/src/utils/getSortedRowModelAsync.ts +199 -0
  96. package/src/utils/getSortedRowModelSync.ts +116 -0
  97. package/src/utils.tsx +193 -22
  98. package/build/cjs/utils/columnFilterRowsFn.js +0 -73
  99. package/build/cjs/utils/columnFilterRowsFn.js.map +0 -1
  100. package/build/cjs/utils/expandRowsFn.js +0 -37
  101. package/build/cjs/utils/expandRowsFn.js.map +0 -1
  102. package/build/cjs/utils/globalFilterRowsFn.js +0 -49
  103. package/build/cjs/utils/globalFilterRowsFn.js.map +0 -1
  104. package/build/cjs/utils/groupRowsFn.js +0 -155
  105. package/build/cjs/utils/groupRowsFn.js.map +0 -1
  106. package/build/cjs/utils/paginateRowsFn.js +0 -44
  107. package/build/cjs/utils/paginateRowsFn.js.map +0 -1
  108. package/build/cjs/utils/sortRowsFn.js +0 -94
  109. package/build/cjs/utils/sortRowsFn.js.map +0 -1
  110. package/build/types/utils/columnFilterRowsFn.d.ts +0 -2
  111. package/build/types/utils/expandRowsFn.d.ts +0 -2
  112. package/build/types/utils/globalFilterRowsFn.d.ts +0 -2
  113. package/build/types/utils/groupRowsFn.d.ts +0 -2
  114. package/build/types/utils/paginateRowsFn.d.ts +0 -2
  115. package/build/types/utils/sortRowsFn.d.ts +0 -2
  116. package/src/utils/columnFilterRowsFn.ts +0 -56
  117. package/src/utils/expandRowsFn.ts +0 -34
  118. package/src/utils/globalFilterRowsFn.ts +0 -39
  119. package/src/utils/groupRowsFn.ts +0 -174
  120. package/src/utils/paginateRowsFn.ts +0 -28
  121. package/src/utils/sortRowsFn.ts +0 -99
  122. package/src/utils/sortRowsQuicksortFn.ts +0 -174
@@ -2669,7 +2669,7 @@ var drawChart = (function (exports) {
2669
2669
  </script>
2670
2670
  <script>
2671
2671
  /*<!--*/
2672
- const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.production.js","children":[{"uid":"4339-1","name":"\u0000rollupPluginBabelHelpers.js"},{"name":"packages/table-core/src","children":[{"uid":"4339-3","name":"utils.tsx"},{"name":"features","children":[{"uid":"4339-5","name":"ColumnSizing.ts"},{"uid":"4339-7","name":"Expanding.ts"},{"uid":"4339-11","name":"Filters.ts"},{"uid":"4339-15","name":"Grouping.ts"},{"uid":"4339-17","name":"Ordering.ts"},{"uid":"4339-19","name":"Pagination.ts"},{"uid":"4339-21","name":"Pinning.ts"},{"uid":"4339-23","name":"RowSelection.ts"},{"uid":"4339-27","name":"Sorting.ts"},{"uid":"4339-29","name":"Visibility.ts"},{"uid":"4339-31","name":"Headers.ts"}]},{"uid":"4339-9","name":"filterTypes.ts"},{"uid":"4339-13","name":"aggregationTypes.ts"},{"uid":"4339-25","name":"sortTypes.ts"},{"uid":"4339-33","name":"core.tsx"},{"uid":"4339-35","name":"createTable.tsx"},{"name":"utils","children":[{"uid":"4339-37","name":"filterRowsUtils.ts"},{"uid":"4339-39","name":"columnFilterRowsFn.ts"},{"uid":"4339-41","name":"globalFilterRowsFn.ts"},{"uid":"4339-43","name":"sortRowsFn.ts"},{"uid":"4339-45","name":"groupRowsFn.ts"},{"uid":"4339-47","name":"expandRowsFn.ts"},{"uid":"4339-49","name":"paginateRowsFn.ts"}]},{"uid":"4339-51","name":"index.tsx"}]}]}],"isRoot":true},"nodeParts":{"4339-1":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"4339-0"},"4339-3":{"renderedLength":3950,"gzipLength":1368,"brotliLength":0,"mainUid":"4339-2"},"4339-5":{"renderedLength":11667,"gzipLength":2272,"brotliLength":0,"mainUid":"4339-4"},"4339-7":{"renderedLength":7711,"gzipLength":1694,"brotliLength":0,"mainUid":"4339-6"},"4339-9":{"renderedLength":4437,"gzipLength":786,"brotliLength":0,"mainUid":"4339-8"},"4339-11":{"renderedLength":16504,"gzipLength":2894,"brotliLength":0,"mainUid":"4339-10"},"4339-13":{"renderedLength":2674,"gzipLength":773,"brotliLength":0,"mainUid":"4339-12"},"4339-15":{"renderedLength":8356,"gzipLength":1802,"brotliLength":0,"mainUid":"4339-14"},"4339-17":{"renderedLength":2639,"gzipLength":799,"brotliLength":0,"mainUid":"4339-16"},"4339-19":{"renderedLength":6378,"gzipLength":1280,"brotliLength":0,"mainUid":"4339-18"},"4339-21":{"renderedLength":5842,"gzipLength":1084,"brotliLength":0,"mainUid":"4339-20"},"4339-23":{"renderedLength":18035,"gzipLength":3049,"brotliLength":0,"mainUid":"4339-22"},"4339-25":{"renderedLength":2752,"gzipLength":846,"brotliLength":0,"mainUid":"4339-24"},"4339-27":{"renderedLength":12092,"gzipLength":2589,"brotliLength":0,"mainUid":"4339-26"},"4339-29":{"renderedLength":6367,"gzipLength":1219,"brotliLength":0,"mainUid":"4339-28"},"4339-31":{"renderedLength":23655,"gzipLength":3372,"brotliLength":0,"mainUid":"4339-30"},"4339-33":{"renderedLength":17396,"gzipLength":3380,"brotliLength":0,"mainUid":"4339-32"},"4339-35":{"renderedLength":1613,"gzipLength":444,"brotliLength":0,"mainUid":"4339-34"},"4339-37":{"renderedLength":2457,"gzipLength":568,"brotliLength":0,"mainUid":"4339-36"},"4339-39":{"renderedLength":1362,"gzipLength":472,"brotliLength":0,"mainUid":"4339-38"},"4339-41":{"renderedLength":807,"gzipLength":291,"brotliLength":0,"mainUid":"4339-40"},"4339-43":{"renderedLength":2482,"gzipLength":823,"brotliLength":0,"mainUid":"4339-42"},"4339-45":{"renderedLength":4752,"gzipLength":1344,"brotliLength":0,"mainUid":"4339-44"},"4339-47":{"renderedLength":556,"gzipLength":265,"brotliLength":0,"mainUid":"4339-46"},"4339-49":{"renderedLength":720,"gzipLength":281,"brotliLength":0,"mainUid":"4339-48"},"4339-51":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"4339-50"}},"nodeMetas":{"4339-0":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"4339-1"},"imported":[],"importedBy":[{"uid":"4339-32"},{"uid":"4339-34"},{"uid":"4339-4"},{"uid":"4339-6"},{"uid":"4339-18"},{"uid":"4339-22"},{"uid":"4339-26"},{"uid":"4339-28"},{"uid":"4339-2"},{"uid":"4339-12"}]},"4339-2":{"id":"/packages/table-core/src/utils.tsx","moduleParts":{"index.production.js":"4339-3"},"imported":[{"uid":"4339-0"},{"uid":"4339-53"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"},{"uid":"4339-4"},{"uid":"4339-6"},{"uid":"4339-10"},{"uid":"4339-14"},{"uid":"4339-30"},{"uid":"4339-16"},{"uid":"4339-18"},{"uid":"4339-20"},{"uid":"4339-22"},{"uid":"4339-26"},{"uid":"4339-28"},{"uid":"4339-44"}]},"4339-4":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"4339-5"},"imported":[{"uid":"4339-0"},{"uid":"4339-2"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"},{"uid":"4339-30"}]},"4339-6":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"4339-7"},"imported":[{"uid":"4339-0"},{"uid":"4339-2"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"}]},"4339-8":{"id":"/packages/table-core/src/filterTypes.ts","moduleParts":{"index.production.js":"4339-9"},"imported":[],"importedBy":[{"uid":"4339-10"}]},"4339-10":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"4339-11"},"imported":[{"uid":"4339-8"},{"uid":"4339-2"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"}]},"4339-12":{"id":"/packages/table-core/src/aggregationTypes.ts","moduleParts":{"index.production.js":"4339-13"},"imported":[{"uid":"4339-0"}],"importedBy":[{"uid":"4339-14"}]},"4339-14":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"4339-15"},"imported":[{"uid":"4339-12"},{"uid":"4339-2"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"},{"uid":"4339-16"}]},"4339-16":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"4339-17"},"imported":[{"uid":"4339-2"},{"uid":"4339-14"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"}]},"4339-18":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"4339-19"},"imported":[{"uid":"4339-0"},{"uid":"4339-2"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"}]},"4339-20":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"4339-21"},"imported":[{"uid":"4339-2"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"}]},"4339-22":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"4339-23"},"imported":[{"uid":"4339-0"},{"uid":"4339-2"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"}]},"4339-24":{"id":"/packages/table-core/src/sortTypes.ts","moduleParts":{"index.production.js":"4339-25"},"imported":[],"importedBy":[{"uid":"4339-26"}]},"4339-26":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"4339-27"},"imported":[{"uid":"4339-0"},{"uid":"4339-24"},{"uid":"4339-2"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"}]},"4339-28":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"4339-29"},"imported":[{"uid":"4339-0"},{"uid":"4339-2"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"}]},"4339-30":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"4339-31"},"imported":[{"uid":"4339-2"},{"uid":"4339-4"}],"importedBy":[{"uid":"4339-50"},{"uid":"4339-32"}]},"4339-32":{"id":"/packages/table-core/src/core.tsx","moduleParts":{"index.production.js":"4339-33"},"imported":[{"uid":"4339-0"},{"uid":"4339-2"},{"uid":"4339-4"},{"uid":"4339-6"},{"uid":"4339-10"},{"uid":"4339-14"},{"uid":"4339-16"},{"uid":"4339-18"},{"uid":"4339-20"},{"uid":"4339-22"},{"uid":"4339-26"},{"uid":"4339-28"},{"uid":"4339-30"}],"importedBy":[{"uid":"4339-50"}]},"4339-34":{"id":"/packages/table-core/src/createTable.tsx","moduleParts":{"index.production.js":"4339-35"},"imported":[{"uid":"4339-0"}],"importedBy":[{"uid":"4339-50"}]},"4339-36":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"4339-37"},"imported":[],"importedBy":[{"uid":"4339-38"},{"uid":"4339-40"}]},"4339-38":{"id":"/packages/table-core/src/utils/columnFilterRowsFn.ts","moduleParts":{"index.production.js":"4339-39"},"imported":[{"uid":"4339-36"}],"importedBy":[{"uid":"4339-50"}]},"4339-40":{"id":"/packages/table-core/src/utils/globalFilterRowsFn.ts","moduleParts":{"index.production.js":"4339-41"},"imported":[{"uid":"4339-36"}],"importedBy":[{"uid":"4339-50"}]},"4339-42":{"id":"/packages/table-core/src/utils/sortRowsFn.ts","moduleParts":{"index.production.js":"4339-43"},"imported":[],"importedBy":[{"uid":"4339-50"}]},"4339-44":{"id":"/packages/table-core/src/utils/groupRowsFn.ts","moduleParts":{"index.production.js":"4339-45"},"imported":[{"uid":"4339-2"}],"importedBy":[{"uid":"4339-50"}]},"4339-46":{"id":"/packages/table-core/src/utils/expandRowsFn.ts","moduleParts":{"index.production.js":"4339-47"},"imported":[],"importedBy":[{"uid":"4339-50"},{"uid":"4339-48"}]},"4339-48":{"id":"/packages/table-core/src/utils/paginateRowsFn.ts","moduleParts":{"index.production.js":"4339-49"},"imported":[{"uid":"4339-46"}],"importedBy":[{"uid":"4339-50"}]},"4339-50":{"id":"/packages/table-core/src/index.tsx","moduleParts":{"index.production.js":"4339-51"},"imported":[{"uid":"4339-32"},{"uid":"4339-52"},{"uid":"4339-34"},{"uid":"4339-4"},{"uid":"4339-6"},{"uid":"4339-10"},{"uid":"4339-14"},{"uid":"4339-30"},{"uid":"4339-16"},{"uid":"4339-18"},{"uid":"4339-20"},{"uid":"4339-22"},{"uid":"4339-26"},{"uid":"4339-28"},{"uid":"4339-2"},{"uid":"4339-38"},{"uid":"4339-40"},{"uid":"4339-42"},{"uid":"4339-44"},{"uid":"4339-46"},{"uid":"4339-48"}],"importedBy":[],"isEntry":true},"4339-52":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"4339-50"}]},"4339-53":{"id":"perf_hooks","moduleParts":{},"imported":[],"importedBy":[{"uid":"4339-2"}],"isExternal":true}},"env":{"rollup":"2.66.0"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
2672
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.production.js","children":[{"uid":"7fd3-1","name":"\u0000rollupPluginBabelHelpers.js"},{"name":"packages/table-core/src","children":[{"uid":"7fd3-3","name":"utils.tsx"},{"name":"features","children":[{"uid":"7fd3-5","name":"ColumnSizing.ts"},{"uid":"7fd3-7","name":"Expanding.ts"},{"uid":"7fd3-11","name":"Filters.ts"},{"uid":"7fd3-15","name":"Grouping.ts"},{"uid":"7fd3-17","name":"Ordering.ts"},{"uid":"7fd3-19","name":"Pagination.ts"},{"uid":"7fd3-21","name":"Pinning.ts"},{"uid":"7fd3-23","name":"RowSelection.ts"},{"uid":"7fd3-27","name":"Sorting.ts"},{"uid":"7fd3-29","name":"Visibility.ts"},{"uid":"7fd3-31","name":"Headers.ts"}]},{"uid":"7fd3-9","name":"filterTypes.ts"},{"uid":"7fd3-13","name":"aggregationTypes.ts"},{"uid":"7fd3-25","name":"sortTypes.ts"},{"uid":"7fd3-33","name":"core.tsx"},{"uid":"7fd3-35","name":"createTable.tsx"},{"name":"utils","children":[{"uid":"7fd3-37","name":"getCoreRowModelSync.ts"},{"uid":"7fd3-39","name":"getCoreRowModelAsync.ts"},{"uid":"7fd3-41","name":"filterRowsUtils.ts"},{"uid":"7fd3-43","name":"getColumnFilteredRowModelSync.ts"},{"uid":"7fd3-45","name":"getGlobalFilteredRowModelSync.ts"},{"uid":"7fd3-47","name":"getSortedRowModelSync.ts"},{"uid":"7fd3-49","name":"getGroupedRowModel.ts"},{"uid":"7fd3-51","name":"getExpandedRowModel.ts"},{"uid":"7fd3-53","name":"getPaginationRowModel.ts"}]},{"uid":"7fd3-55","name":"index.tsx"}]}]}],"isRoot":true},"nodeParts":{"7fd3-1":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"7fd3-0"},"7fd3-3":{"renderedLength":7667,"gzipLength":1983,"brotliLength":0,"mainUid":"7fd3-2"},"7fd3-5":{"renderedLength":11667,"gzipLength":2272,"brotliLength":0,"mainUid":"7fd3-4"},"7fd3-7":{"renderedLength":7390,"gzipLength":1592,"brotliLength":0,"mainUid":"7fd3-6"},"7fd3-9":{"renderedLength":4437,"gzipLength":786,"brotliLength":0,"mainUid":"7fd3-8"},"7fd3-11":{"renderedLength":14165,"gzipLength":2535,"brotliLength":0,"mainUid":"7fd3-10"},"7fd3-13":{"renderedLength":2674,"gzipLength":773,"brotliLength":0,"mainUid":"7fd3-12"},"7fd3-15":{"renderedLength":8077,"gzipLength":1717,"brotliLength":0,"mainUid":"7fd3-14"},"7fd3-17":{"renderedLength":2639,"gzipLength":799,"brotliLength":0,"mainUid":"7fd3-16"},"7fd3-19":{"renderedLength":5978,"gzipLength":1232,"brotliLength":0,"mainUid":"7fd3-18"},"7fd3-21":{"renderedLength":5842,"gzipLength":1084,"brotliLength":0,"mainUid":"7fd3-20"},"7fd3-23":{"renderedLength":18035,"gzipLength":3049,"brotliLength":0,"mainUid":"7fd3-22"},"7fd3-25":{"renderedLength":2752,"gzipLength":846,"brotliLength":0,"mainUid":"7fd3-24"},"7fd3-27":{"renderedLength":11823,"gzipLength":2498,"brotliLength":0,"mainUid":"7fd3-26"},"7fd3-29":{"renderedLength":6367,"gzipLength":1219,"brotliLength":0,"mainUid":"7fd3-28"},"7fd3-31":{"renderedLength":23655,"gzipLength":3372,"brotliLength":0,"mainUid":"7fd3-30"},"7fd3-33":{"renderedLength":16080,"gzipLength":3057,"brotliLength":0,"mainUid":"7fd3-32"},"7fd3-35":{"renderedLength":1613,"gzipLength":444,"brotliLength":0,"mainUid":"7fd3-34"},"7fd3-37":{"renderedLength":2410,"gzipLength":793,"brotliLength":0,"mainUid":"7fd3-36"},"7fd3-39":{"renderedLength":3507,"gzipLength":1011,"brotliLength":0,"mainUid":"7fd3-38"},"7fd3-41":{"renderedLength":2457,"gzipLength":568,"brotliLength":0,"mainUid":"7fd3-40"},"7fd3-43":{"renderedLength":3030,"gzipLength":884,"brotliLength":0,"mainUid":"7fd3-42"},"7fd3-45":{"renderedLength":2396,"gzipLength":692,"brotliLength":0,"mainUid":"7fd3-44"},"7fd3-47":{"renderedLength":3389,"gzipLength":1017,"brotliLength":0,"mainUid":"7fd3-46"},"7fd3-49":{"renderedLength":5734,"gzipLength":1523,"brotliLength":0,"mainUid":"7fd3-48"},"7fd3-51":{"renderedLength":1381,"gzipLength":497,"brotliLength":0,"mainUid":"7fd3-50"},"7fd3-53":{"renderedLength":1249,"gzipLength":405,"brotliLength":0,"mainUid":"7fd3-52"},"7fd3-55":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"7fd3-54"}},"nodeMetas":{"7fd3-0":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"7fd3-1"},"imported":[],"importedBy":[{"uid":"7fd3-32"},{"uid":"7fd3-34"},{"uid":"7fd3-4"},{"uid":"7fd3-6"},{"uid":"7fd3-18"},{"uid":"7fd3-22"},{"uid":"7fd3-26"},{"uid":"7fd3-28"},{"uid":"7fd3-2"},{"uid":"7fd3-38"},{"uid":"7fd3-12"}]},"7fd3-2":{"id":"/packages/table-core/src/utils.tsx","moduleParts":{"index.production.js":"7fd3-3"},"imported":[{"uid":"7fd3-0"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"},{"uid":"7fd3-4"},{"uid":"7fd3-6"},{"uid":"7fd3-10"},{"uid":"7fd3-14"},{"uid":"7fd3-30"},{"uid":"7fd3-16"},{"uid":"7fd3-18"},{"uid":"7fd3-20"},{"uid":"7fd3-22"},{"uid":"7fd3-26"},{"uid":"7fd3-28"},{"uid":"7fd3-36"},{"uid":"7fd3-38"},{"uid":"7fd3-42"},{"uid":"7fd3-44"},{"uid":"7fd3-46"},{"uid":"7fd3-48"},{"uid":"7fd3-50"},{"uid":"7fd3-52"}]},"7fd3-4":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"7fd3-5"},"imported":[{"uid":"7fd3-0"},{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"},{"uid":"7fd3-30"}]},"7fd3-6":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"7fd3-7"},"imported":[{"uid":"7fd3-0"},{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"}]},"7fd3-8":{"id":"/packages/table-core/src/filterTypes.ts","moduleParts":{"index.production.js":"7fd3-9"},"imported":[],"importedBy":[{"uid":"7fd3-10"}]},"7fd3-10":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"7fd3-11"},"imported":[{"uid":"7fd3-8"},{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"}]},"7fd3-12":{"id":"/packages/table-core/src/aggregationTypes.ts","moduleParts":{"index.production.js":"7fd3-13"},"imported":[{"uid":"7fd3-0"}],"importedBy":[{"uid":"7fd3-32"},{"uid":"7fd3-14"}]},"7fd3-14":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"7fd3-15"},"imported":[{"uid":"7fd3-12"},{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"},{"uid":"7fd3-16"}]},"7fd3-16":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"7fd3-17"},"imported":[{"uid":"7fd3-2"},{"uid":"7fd3-14"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"}]},"7fd3-18":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"7fd3-19"},"imported":[{"uid":"7fd3-0"},{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"}]},"7fd3-20":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"7fd3-21"},"imported":[{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"}]},"7fd3-22":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"7fd3-23"},"imported":[{"uid":"7fd3-0"},{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"}]},"7fd3-24":{"id":"/packages/table-core/src/sortTypes.ts","moduleParts":{"index.production.js":"7fd3-25"},"imported":[],"importedBy":[{"uid":"7fd3-26"}]},"7fd3-26":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"7fd3-27"},"imported":[{"uid":"7fd3-0"},{"uid":"7fd3-24"},{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"}]},"7fd3-28":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"7fd3-29"},"imported":[{"uid":"7fd3-0"},{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"}]},"7fd3-30":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"7fd3-31"},"imported":[{"uid":"7fd3-2"},{"uid":"7fd3-4"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-32"}]},"7fd3-32":{"id":"/packages/table-core/src/core.tsx","moduleParts":{"index.production.js":"7fd3-33"},"imported":[{"uid":"7fd3-0"},{"uid":"7fd3-2"},{"uid":"7fd3-4"},{"uid":"7fd3-6"},{"uid":"7fd3-10"},{"uid":"7fd3-14"},{"uid":"7fd3-16"},{"uid":"7fd3-18"},{"uid":"7fd3-20"},{"uid":"7fd3-22"},{"uid":"7fd3-26"},{"uid":"7fd3-28"},{"uid":"7fd3-30"},{"uid":"7fd3-12"}],"importedBy":[{"uid":"7fd3-54"}]},"7fd3-34":{"id":"/packages/table-core/src/createTable.tsx","moduleParts":{"index.production.js":"7fd3-35"},"imported":[{"uid":"7fd3-0"}],"importedBy":[{"uid":"7fd3-54"}]},"7fd3-36":{"id":"/packages/table-core/src/utils/getCoreRowModelSync.ts","moduleParts":{"index.production.js":"7fd3-37"},"imported":[{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"}]},"7fd3-38":{"id":"/packages/table-core/src/utils/getCoreRowModelAsync.ts","moduleParts":{"index.production.js":"7fd3-39"},"imported":[{"uid":"7fd3-0"},{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"}]},"7fd3-40":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"7fd3-41"},"imported":[],"importedBy":[{"uid":"7fd3-42"},{"uid":"7fd3-44"}]},"7fd3-42":{"id":"/packages/table-core/src/utils/getColumnFilteredRowModelSync.ts","moduleParts":{"index.production.js":"7fd3-43"},"imported":[{"uid":"7fd3-2"},{"uid":"7fd3-40"}],"importedBy":[{"uid":"7fd3-54"}]},"7fd3-44":{"id":"/packages/table-core/src/utils/getGlobalFilteredRowModelSync.ts","moduleParts":{"index.production.js":"7fd3-45"},"imported":[{"uid":"7fd3-2"},{"uid":"7fd3-40"}],"importedBy":[{"uid":"7fd3-54"}]},"7fd3-46":{"id":"/packages/table-core/src/utils/getSortedRowModelSync.ts","moduleParts":{"index.production.js":"7fd3-47"},"imported":[{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"}]},"7fd3-48":{"id":"/packages/table-core/src/utils/getGroupedRowModel.ts","moduleParts":{"index.production.js":"7fd3-49"},"imported":[{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"}]},"7fd3-50":{"id":"/packages/table-core/src/utils/getExpandedRowModel.ts","moduleParts":{"index.production.js":"7fd3-51"},"imported":[{"uid":"7fd3-2"}],"importedBy":[{"uid":"7fd3-54"},{"uid":"7fd3-52"}]},"7fd3-52":{"id":"/packages/table-core/src/utils/getPaginationRowModel.ts","moduleParts":{"index.production.js":"7fd3-53"},"imported":[{"uid":"7fd3-2"},{"uid":"7fd3-50"}],"importedBy":[{"uid":"7fd3-54"}]},"7fd3-54":{"id":"/packages/table-core/src/index.tsx","moduleParts":{"index.production.js":"7fd3-55"},"imported":[{"uid":"7fd3-32"},{"uid":"7fd3-56"},{"uid":"7fd3-34"},{"uid":"7fd3-4"},{"uid":"7fd3-6"},{"uid":"7fd3-10"},{"uid":"7fd3-14"},{"uid":"7fd3-30"},{"uid":"7fd3-16"},{"uid":"7fd3-18"},{"uid":"7fd3-20"},{"uid":"7fd3-22"},{"uid":"7fd3-26"},{"uid":"7fd3-28"},{"uid":"7fd3-2"},{"uid":"7fd3-36"},{"uid":"7fd3-38"},{"uid":"7fd3-42"},{"uid":"7fd3-44"},{"uid":"7fd3-46"},{"uid":"7fd3-48"},{"uid":"7fd3-50"},{"uid":"7fd3-52"}],"importedBy":[],"isEntry":true},"7fd3-56":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"7fd3-54"}]}},"env":{"rollup":"2.70.2"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
2673
2673
 
2674
2674
  const run = () => {
2675
2675
  const width = window.innerWidth;