@tanstack/table-core 8.0.0-alpha.67 → 8.0.0-alpha.70

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 (140) hide show
  1. package/build/cjs/aggregationFns.js +25 -37
  2. package/build/cjs/aggregationFns.js.map +1 -1
  3. package/build/cjs/core.js +167 -46
  4. package/build/cjs/core.js.map +1 -1
  5. package/build/cjs/createTable.js +24 -40
  6. package/build/cjs/createTable.js.map +1 -1
  7. package/build/cjs/features/Cells.js +28 -34
  8. package/build/cjs/features/Cells.js.map +1 -1
  9. package/build/cjs/features/ColumnSizing.js +102 -116
  10. package/build/cjs/features/ColumnSizing.js.map +1 -1
  11. package/build/cjs/features/Columns.js +52 -79
  12. package/build/cjs/features/Columns.js.map +1 -1
  13. package/build/cjs/features/Expanding.js +49 -58
  14. package/build/cjs/features/Expanding.js.map +1 -1
  15. package/build/cjs/features/Filters.js +98 -193
  16. package/build/cjs/features/Filters.js.map +1 -1
  17. package/build/cjs/features/Grouping.js +53 -71
  18. package/build/cjs/features/Grouping.js.map +1 -1
  19. package/build/cjs/features/Headers.js +109 -165
  20. package/build/cjs/features/Headers.js.map +1 -1
  21. package/build/cjs/features/Ordering.js +31 -43
  22. package/build/cjs/features/Ordering.js.map +1 -1
  23. package/build/cjs/features/Pagination.js +79 -82
  24. package/build/cjs/features/Pagination.js.map +1 -1
  25. package/build/cjs/features/Pinning.js +71 -125
  26. package/build/cjs/features/Pinning.js.map +1 -1
  27. package/build/cjs/features/RowSelection.js +93 -112
  28. package/build/cjs/features/RowSelection.js.map +1 -1
  29. package/build/cjs/features/Rows.js +32 -22
  30. package/build/cjs/features/Rows.js.map +1 -1
  31. package/build/cjs/features/Sorting.js +54 -73
  32. package/build/cjs/features/Sorting.js.map +1 -1
  33. package/build/cjs/features/Visibility.js +47 -86
  34. package/build/cjs/features/Visibility.js.map +1 -1
  35. package/build/cjs/filterFns.js +48 -72
  36. package/build/cjs/filterFns.js.map +1 -1
  37. package/build/cjs/index.js +13 -13
  38. package/build/cjs/sortingFns.js +21 -21
  39. package/build/cjs/sortingFns.js.map +1 -1
  40. package/build/cjs/utils/filterRowsUtils.js +49 -55
  41. package/build/cjs/utils/filterRowsUtils.js.map +1 -1
  42. package/build/cjs/utils/getCoreRowModel.js +98 -0
  43. package/build/cjs/utils/getCoreRowModel.js.map +1 -0
  44. package/build/cjs/utils/getExpandedRowModel.js +17 -21
  45. package/build/cjs/utils/getExpandedRowModel.js.map +1 -1
  46. package/build/cjs/utils/getFacetedMinMaxValues.js +48 -0
  47. package/build/cjs/utils/getFacetedMinMaxValues.js.map +1 -0
  48. package/build/cjs/utils/getFacetedRowModel.js +50 -0
  49. package/build/cjs/utils/getFacetedRowModel.js.map +1 -0
  50. package/build/cjs/utils/getFacetedUniqueValues.js +48 -0
  51. package/build/cjs/utils/getFacetedUniqueValues.js.map +1 -0
  52. package/build/cjs/utils/getFilteredRowModel.js +130 -0
  53. package/build/cjs/utils/getFilteredRowModel.js.map +1 -0
  54. package/build/cjs/utils/getGroupedRowModel.js +126 -136
  55. package/build/cjs/utils/getGroupedRowModel.js.map +1 -1
  56. package/build/cjs/utils/getPaginationRowModel.js +39 -39
  57. package/build/cjs/utils/getPaginationRowModel.js.map +1 -1
  58. package/build/cjs/utils/getSortedRowModel.js +112 -0
  59. package/build/cjs/utils/getSortedRowModel.js.map +1 -0
  60. package/build/cjs/utils.js +36 -207
  61. package/build/cjs/utils.js.map +1 -1
  62. package/build/esm/index.js +1778 -2347
  63. package/build/esm/index.js.map +1 -1
  64. package/build/stats-html.html +1 -1
  65. package/build/stats-react.json +421 -481
  66. package/build/types/core.d.ts +3 -5
  67. package/build/types/features/Cells.d.ts +1 -1
  68. package/build/types/features/ColumnSizing.d.ts +2 -2
  69. package/build/types/features/Columns.d.ts +1 -1
  70. package/build/types/features/Expanding.d.ts +1 -1
  71. package/build/types/features/Filters.d.ts +12 -7
  72. package/build/types/features/Grouping.d.ts +5 -4
  73. package/build/types/features/Ordering.d.ts +1 -1
  74. package/build/types/features/Pagination.d.ts +4 -4
  75. package/build/types/features/Pinning.d.ts +1 -1
  76. package/build/types/features/RowSelection.d.ts +1 -1
  77. package/build/types/features/Rows.d.ts +4 -3
  78. package/build/types/features/Sorting.d.ts +2 -1
  79. package/build/types/features/Visibility.d.ts +1 -0
  80. package/build/types/index.d.ts +6 -4
  81. package/build/types/types.d.ts +3 -13
  82. package/build/types/utils/filterRowsUtils.d.ts +3 -3
  83. package/build/types/utils/getCoreRowModel.d.ts +2 -0
  84. package/build/types/utils/getFacetedMinMaxValues.d.ts +2 -0
  85. package/build/types/utils/getFacetedRowModel.d.ts +2 -0
  86. package/build/types/utils/getFacetedUniqueValues.d.ts +2 -0
  87. package/build/types/utils/{getCoreRowModelSync.d.ts → getFilteredRowModel.d.ts} +1 -1
  88. package/build/types/utils/getGroupedRowModel.d.ts +1 -1
  89. package/build/types/utils/getSortedRowModel.d.ts +2 -0
  90. package/build/types/utils.d.ts +1 -17
  91. package/build/umd/index.development.js +1779 -2350
  92. package/build/umd/index.development.js.map +1 -1
  93. package/build/umd/index.production.js +1 -1
  94. package/build/umd/index.production.js.map +1 -1
  95. package/package.json +1 -1
  96. package/src/core.ts +197 -45
  97. package/src/features/Cells.ts +7 -11
  98. package/src/features/ColumnSizing.ts +27 -19
  99. package/src/features/Columns.ts +4 -8
  100. package/src/features/Expanding.ts +5 -3
  101. package/src/features/Filters.ts +105 -162
  102. package/src/features/Grouping.ts +21 -23
  103. package/src/features/Ordering.ts +5 -3
  104. package/src/features/Pagination.ts +32 -19
  105. package/src/features/Pinning.ts +13 -7
  106. package/src/features/RowSelection.ts +5 -3
  107. package/src/features/Rows.ts +21 -6
  108. package/src/features/Sorting.ts +14 -12
  109. package/src/features/Visibility.ts +7 -0
  110. package/src/filterFns.ts +9 -9
  111. package/src/index.ts +12 -4
  112. package/src/sortingFns.ts +11 -11
  113. package/src/types.ts +3 -16
  114. package/src/utils/filterRowsUtils.ts +47 -68
  115. package/src/utils/{getCoreRowModelSync.ts → getCoreRowModel.ts} +2 -8
  116. package/src/utils/getFacetedMinMaxValues.ts +37 -0
  117. package/src/utils/getFacetedRowModel.ts +50 -0
  118. package/src/utils/getFacetedUniqueValues.ts +37 -0
  119. package/src/utils/{getFilteredRowModelSync.ts → getFilteredRowModel.ts} +29 -20
  120. package/src/utils/getGroupedRowModel.ts +52 -61
  121. package/src/utils/{getSortedRowModelSync.ts → getSortedRowModel.ts} +3 -3
  122. package/src/utils.ts +28 -236
  123. package/build/cjs/_virtual/_rollupPluginBabelHelpers.js +0 -112
  124. package/build/cjs/_virtual/_rollupPluginBabelHelpers.js.map +0 -1
  125. package/build/cjs/utils/getCoreRowModelAsync.js +0 -125
  126. package/build/cjs/utils/getCoreRowModelAsync.js.map +0 -1
  127. package/build/cjs/utils/getCoreRowModelSync.js +0 -102
  128. package/build/cjs/utils/getCoreRowModelSync.js.map +0 -1
  129. package/build/cjs/utils/getFilteredRowModelSync.js +0 -125
  130. package/build/cjs/utils/getFilteredRowModelSync.js.map +0 -1
  131. package/build/cjs/utils/getSortedRowModelSync.js +0 -118
  132. package/build/cjs/utils/getSortedRowModelSync.js.map +0 -1
  133. package/build/types/utils/getCoreRowModelAsync.d.ts +0 -4
  134. package/build/types/utils/getFilteredRowModelAsync.d.ts +0 -4
  135. package/build/types/utils/getFilteredRowModelSync.d.ts +0 -2
  136. package/build/types/utils/getSortedRowModelAsync.d.ts +0 -13
  137. package/build/types/utils/getSortedRowModelSync.d.ts +0 -2
  138. package/src/utils/getCoreRowModelAsync.ts +0 -104
  139. package/src/utils/getFilteredRowModelAsync.ts +0 -157
  140. package/src/utils/getSortedRowModelAsync.ts +0 -200
@@ -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":"ed1d-1","name":"\u0000rollupPluginBabelHelpers.js"},{"name":"packages/table-core/src","children":[{"uid":"ed1d-3","name":"utils.ts"},{"name":"features","children":[{"uid":"ed1d-5","name":"Columns.ts"},{"uid":"ed1d-7","name":"Rows.ts"},{"uid":"ed1d-9","name":"Cells.ts"},{"uid":"ed1d-11","name":"ColumnSizing.ts"},{"uid":"ed1d-13","name":"Expanding.ts"},{"uid":"ed1d-19","name":"Filters.ts"},{"uid":"ed1d-23","name":"Grouping.ts"},{"uid":"ed1d-25","name":"Ordering.ts"},{"uid":"ed1d-27","name":"Pagination.ts"},{"uid":"ed1d-29","name":"Pinning.ts"},{"uid":"ed1d-31","name":"RowSelection.ts"},{"uid":"ed1d-35","name":"Sorting.ts"},{"uid":"ed1d-37","name":"Visibility.ts"},{"uid":"ed1d-39","name":"Headers.ts"}]},{"uid":"ed1d-15","name":"filterFns.ts"},{"name":"utils","children":[{"uid":"ed1d-17","name":"filterRowsUtils.ts"},{"uid":"ed1d-45","name":"getCoreRowModelSync.ts"},{"uid":"ed1d-47","name":"getCoreRowModelAsync.ts"},{"uid":"ed1d-49","name":"getFilteredRowModelSync.ts"},{"uid":"ed1d-51","name":"getSortedRowModelSync.ts"},{"uid":"ed1d-53","name":"getGroupedRowModel.ts"},{"uid":"ed1d-55","name":"getExpandedRowModel.ts"},{"uid":"ed1d-57","name":"getPaginationRowModel.ts"}]},{"uid":"ed1d-21","name":"aggregationFns.ts"},{"uid":"ed1d-33","name":"sortingFns.ts"},{"uid":"ed1d-41","name":"core.ts"},{"uid":"ed1d-43","name":"createTable.ts"},{"uid":"ed1d-59","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"ed1d-1":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"ed1d-0"},"ed1d-3":{"renderedLength":7316,"gzipLength":1880,"brotliLength":0,"mainUid":"ed1d-2"},"ed1d-5":{"renderedLength":7230,"gzipLength":1386,"brotliLength":0,"mainUid":"ed1d-4"},"ed1d-7":{"renderedLength":2013,"gzipLength":671,"brotliLength":0,"mainUid":"ed1d-6"},"ed1d-9":{"renderedLength":2415,"gzipLength":642,"brotliLength":0,"mainUid":"ed1d-8"},"ed1d-11":{"renderedLength":10977,"gzipLength":2324,"brotliLength":0,"mainUid":"ed1d-10"},"ed1d-13":{"renderedLength":6221,"gzipLength":1381,"brotliLength":0,"mainUid":"ed1d-12"},"ed1d-15":{"renderedLength":3353,"gzipLength":736,"brotliLength":0,"mainUid":"ed1d-14"},"ed1d-17":{"renderedLength":3070,"gzipLength":717,"brotliLength":0,"mainUid":"ed1d-16"},"ed1d-19":{"renderedLength":14486,"gzipLength":2437,"brotliLength":0,"mainUid":"ed1d-18"},"ed1d-21":{"renderedLength":2672,"gzipLength":771,"brotliLength":0,"mainUid":"ed1d-20"},"ed1d-23":{"renderedLength":6148,"gzipLength":1440,"brotliLength":0,"mainUid":"ed1d-22"},"ed1d-25":{"renderedLength":2611,"gzipLength":820,"brotliLength":0,"mainUid":"ed1d-24"},"ed1d-27":{"renderedLength":6048,"gzipLength":1272,"brotliLength":0,"mainUid":"ed1d-26"},"ed1d-29":{"renderedLength":9527,"gzipLength":1446,"brotliLength":0,"mainUid":"ed1d-28"},"ed1d-31":{"renderedLength":13957,"gzipLength":2556,"brotliLength":0,"mainUid":"ed1d-30"},"ed1d-33":{"renderedLength":2753,"gzipLength":846,"brotliLength":0,"mainUid":"ed1d-32"},"ed1d-35":{"renderedLength":9388,"gzipLength":2150,"brotliLength":0,"mainUid":"ed1d-34"},"ed1d-37":{"renderedLength":6197,"gzipLength":1203,"brotliLength":0,"mainUid":"ed1d-36"},"ed1d-39":{"renderedLength":17828,"gzipLength":2689,"brotliLength":0,"mainUid":"ed1d-38"},"ed1d-41":{"renderedLength":3654,"gzipLength":1051,"brotliLength":0,"mainUid":"ed1d-40"},"ed1d-43":{"renderedLength":1882,"gzipLength":562,"brotliLength":0,"mainUid":"ed1d-42"},"ed1d-45":{"renderedLength":2435,"gzipLength":806,"brotliLength":0,"mainUid":"ed1d-44"},"ed1d-47":{"renderedLength":3532,"gzipLength":1019,"brotliLength":0,"mainUid":"ed1d-46"},"ed1d-49":{"renderedLength":3696,"gzipLength":1003,"brotliLength":0,"mainUid":"ed1d-48"},"ed1d-51":{"renderedLength":3436,"gzipLength":1040,"brotliLength":0,"mainUid":"ed1d-50"},"ed1d-53":{"renderedLength":5838,"gzipLength":1555,"brotliLength":0,"mainUid":"ed1d-52"},"ed1d-55":{"renderedLength":1381,"gzipLength":507,"brotliLength":0,"mainUid":"ed1d-54"},"ed1d-57":{"renderedLength":1262,"gzipLength":424,"brotliLength":0,"mainUid":"ed1d-56"},"ed1d-59":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"ed1d-58"}},"nodeMetas":{"ed1d-0":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"ed1d-1"},"imported":[],"importedBy":[{"uid":"ed1d-40"},{"uid":"ed1d-42"},{"uid":"ed1d-10"},{"uid":"ed1d-12"},{"uid":"ed1d-18"},{"uid":"ed1d-22"},{"uid":"ed1d-24"},{"uid":"ed1d-26"},{"uid":"ed1d-28"},{"uid":"ed1d-30"},{"uid":"ed1d-34"},{"uid":"ed1d-36"},{"uid":"ed1d-2"},{"uid":"ed1d-46"},{"uid":"ed1d-4"},{"uid":"ed1d-20"}]},"ed1d-2":{"id":"/packages/table-core/src/utils.ts","moduleParts":{"index.production.js":"ed1d-3"},"imported":[{"uid":"ed1d-0"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"},{"uid":"ed1d-10"},{"uid":"ed1d-12"},{"uid":"ed1d-18"},{"uid":"ed1d-22"},{"uid":"ed1d-38"},{"uid":"ed1d-24"},{"uid":"ed1d-26"},{"uid":"ed1d-28"},{"uid":"ed1d-30"},{"uid":"ed1d-34"},{"uid":"ed1d-36"},{"uid":"ed1d-44"},{"uid":"ed1d-46"},{"uid":"ed1d-48"},{"uid":"ed1d-50"},{"uid":"ed1d-52"},{"uid":"ed1d-54"},{"uid":"ed1d-56"},{"uid":"ed1d-4"},{"uid":"ed1d-6"},{"uid":"ed1d-8"}]},"ed1d-4":{"id":"/packages/table-core/src/features/Columns.ts","moduleParts":{"index.production.js":"ed1d-5"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-40"}]},"ed1d-6":{"id":"/packages/table-core/src/features/Rows.ts","moduleParts":{"index.production.js":"ed1d-7"},"imported":[{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-40"}]},"ed1d-8":{"id":"/packages/table-core/src/features/Cells.ts","moduleParts":{"index.production.js":"ed1d-9"},"imported":[{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-40"}]},"ed1d-10":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"ed1d-11"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"}]},"ed1d-12":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"ed1d-13"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"}]},"ed1d-14":{"id":"/packages/table-core/src/filterFns.ts","moduleParts":{"index.production.js":"ed1d-15"},"imported":[],"importedBy":[{"uid":"ed1d-18"}]},"ed1d-16":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"ed1d-17"},"imported":[],"importedBy":[{"uid":"ed1d-18"},{"uid":"ed1d-48"}]},"ed1d-18":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"ed1d-19"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-14"},{"uid":"ed1d-2"},{"uid":"ed1d-16"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"}]},"ed1d-20":{"id":"/packages/table-core/src/aggregationFns.ts","moduleParts":{"index.production.js":"ed1d-21"},"imported":[{"uid":"ed1d-0"}],"importedBy":[{"uid":"ed1d-40"},{"uid":"ed1d-22"}]},"ed1d-22":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"ed1d-23"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-20"},{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"},{"uid":"ed1d-24"}]},"ed1d-24":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"ed1d-25"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-2"},{"uid":"ed1d-22"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"}]},"ed1d-26":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"ed1d-27"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"}]},"ed1d-28":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"ed1d-29"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"}]},"ed1d-30":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"ed1d-31"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"}]},"ed1d-32":{"id":"/packages/table-core/src/sortingFns.ts","moduleParts":{"index.production.js":"ed1d-33"},"imported":[],"importedBy":[{"uid":"ed1d-34"}]},"ed1d-34":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"ed1d-35"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-32"},{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"}]},"ed1d-36":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"ed1d-37"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"}]},"ed1d-38":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"ed1d-39"},"imported":[{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-40"}]},"ed1d-40":{"id":"/packages/table-core/src/core.ts","moduleParts":{"index.production.js":"ed1d-41"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-2"},{"uid":"ed1d-4"},{"uid":"ed1d-6"},{"uid":"ed1d-8"},{"uid":"ed1d-10"},{"uid":"ed1d-12"},{"uid":"ed1d-18"},{"uid":"ed1d-22"},{"uid":"ed1d-24"},{"uid":"ed1d-26"},{"uid":"ed1d-28"},{"uid":"ed1d-30"},{"uid":"ed1d-34"},{"uid":"ed1d-36"},{"uid":"ed1d-38"},{"uid":"ed1d-20"}],"importedBy":[{"uid":"ed1d-58"}]},"ed1d-42":{"id":"/packages/table-core/src/createTable.ts","moduleParts":{"index.production.js":"ed1d-43"},"imported":[{"uid":"ed1d-0"}],"importedBy":[{"uid":"ed1d-58"}]},"ed1d-44":{"id":"/packages/table-core/src/utils/getCoreRowModelSync.ts","moduleParts":{"index.production.js":"ed1d-45"},"imported":[{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"}]},"ed1d-46":{"id":"/packages/table-core/src/utils/getCoreRowModelAsync.ts","moduleParts":{"index.production.js":"ed1d-47"},"imported":[{"uid":"ed1d-0"},{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"}]},"ed1d-48":{"id":"/packages/table-core/src/utils/getFilteredRowModelSync.ts","moduleParts":{"index.production.js":"ed1d-49"},"imported":[{"uid":"ed1d-2"},{"uid":"ed1d-16"}],"importedBy":[{"uid":"ed1d-58"}]},"ed1d-50":{"id":"/packages/table-core/src/utils/getSortedRowModelSync.ts","moduleParts":{"index.production.js":"ed1d-51"},"imported":[{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"}]},"ed1d-52":{"id":"/packages/table-core/src/utils/getGroupedRowModel.ts","moduleParts":{"index.production.js":"ed1d-53"},"imported":[{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"}]},"ed1d-54":{"id":"/packages/table-core/src/utils/getExpandedRowModel.ts","moduleParts":{"index.production.js":"ed1d-55"},"imported":[{"uid":"ed1d-2"}],"importedBy":[{"uid":"ed1d-58"},{"uid":"ed1d-56"}]},"ed1d-56":{"id":"/packages/table-core/src/utils/getPaginationRowModel.ts","moduleParts":{"index.production.js":"ed1d-57"},"imported":[{"uid":"ed1d-2"},{"uid":"ed1d-54"}],"importedBy":[{"uid":"ed1d-58"}]},"ed1d-58":{"id":"/packages/table-core/src/index.ts","moduleParts":{"index.production.js":"ed1d-59"},"imported":[{"uid":"ed1d-40"},{"uid":"ed1d-60"},{"uid":"ed1d-42"},{"uid":"ed1d-10"},{"uid":"ed1d-12"},{"uid":"ed1d-18"},{"uid":"ed1d-22"},{"uid":"ed1d-38"},{"uid":"ed1d-24"},{"uid":"ed1d-26"},{"uid":"ed1d-28"},{"uid":"ed1d-30"},{"uid":"ed1d-34"},{"uid":"ed1d-36"},{"uid":"ed1d-2"},{"uid":"ed1d-44"},{"uid":"ed1d-46"},{"uid":"ed1d-48"},{"uid":"ed1d-50"},{"uid":"ed1d-52"},{"uid":"ed1d-54"},{"uid":"ed1d-56"}],"importedBy":[],"isEntry":true},"ed1d-60":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"ed1d-58"}]}},"env":{"rollup":"2.70.2"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
2672
+ const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.production.js","children":[{"name":"packages/table-core/src","children":[{"uid":"fca1-1","name":"utils.ts"},{"name":"features","children":[{"uid":"fca1-3","name":"Columns.ts"},{"uid":"fca1-5","name":"Rows.ts"},{"uid":"fca1-7","name":"Cells.ts"},{"uid":"fca1-9","name":"ColumnSizing.ts"},{"uid":"fca1-11","name":"Expanding.ts"},{"uid":"fca1-15","name":"Filters.ts"},{"uid":"fca1-19","name":"Grouping.ts"},{"uid":"fca1-21","name":"Ordering.ts"},{"uid":"fca1-23","name":"Pagination.ts"},{"uid":"fca1-25","name":"Pinning.ts"},{"uid":"fca1-27","name":"RowSelection.ts"},{"uid":"fca1-31","name":"Sorting.ts"},{"uid":"fca1-33","name":"Visibility.ts"},{"uid":"fca1-35","name":"Headers.ts"}]},{"uid":"fca1-13","name":"filterFns.ts"},{"uid":"fca1-17","name":"aggregationFns.ts"},{"uid":"fca1-29","name":"sortingFns.ts"},{"uid":"fca1-37","name":"core.ts"},{"uid":"fca1-39","name":"createTable.ts"},{"name":"utils","children":[{"uid":"fca1-41","name":"getCoreRowModel.ts"},{"uid":"fca1-43","name":"filterRowsUtils.ts"},{"uid":"fca1-45","name":"getFilteredRowModel.ts"},{"uid":"fca1-47","name":"getFacetedRowModel.ts"},{"uid":"fca1-49","name":"getFacetedUniqueValues.ts"},{"uid":"fca1-51","name":"getFacetedMinMaxValues.ts"},{"uid":"fca1-53","name":"getSortedRowModel.ts"},{"uid":"fca1-55","name":"getGroupedRowModel.ts"},{"uid":"fca1-57","name":"getExpandedRowModel.ts"},{"uid":"fca1-59","name":"getPaginationRowModel.ts"}]},{"uid":"fca1-61","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"fca1-1":{"renderedLength":2201,"gzipLength":800,"brotliLength":0,"mainUid":"fca1-0"},"fca1-3":{"renderedLength":6485,"gzipLength":1337,"brotliLength":0,"mainUid":"fca1-2"},"fca1-5":{"renderedLength":2312,"gzipLength":753,"brotliLength":0,"mainUid":"fca1-4"},"fca1-7":{"renderedLength":2169,"gzipLength":627,"brotliLength":0,"mainUid":"fca1-6"},"fca1-9":{"renderedLength":10005,"gzipLength":2212,"brotliLength":0,"mainUid":"fca1-8"},"fca1-11":{"renderedLength":5461,"gzipLength":1270,"brotliLength":0,"mainUid":"fca1-10"},"fca1-13":{"renderedLength":2743,"gzipLength":666,"brotliLength":0,"mainUid":"fca1-12"},"fca1-15":{"renderedLength":10234,"gzipLength":1900,"brotliLength":0,"mainUid":"fca1-14"},"fca1-17":{"renderedLength":2146,"gzipLength":642,"brotliLength":0,"mainUid":"fca1-16"},"fca1-19":{"renderedLength":5311,"gzipLength":1351,"brotliLength":0,"mainUid":"fca1-18"},"fca1-21":{"renderedLength":2231,"gzipLength":767,"brotliLength":0,"mainUid":"fca1-20"},"fca1-23":{"renderedLength":6009,"gzipLength":1321,"brotliLength":0,"mainUid":"fca1-22"},"fca1-25":{"renderedLength":7888,"gzipLength":1365,"brotliLength":0,"mainUid":"fca1-24"},"fca1-27":{"renderedLength":12833,"gzipLength":2446,"brotliLength":0,"mainUid":"fca1-26"},"fca1-29":{"renderedLength":2712,"gzipLength":830,"brotliLength":0,"mainUid":"fca1-28"},"fca1-31":{"renderedLength":8530,"gzipLength":2017,"brotliLength":0,"mainUid":"fca1-30"},"fca1-33":{"renderedLength":5057,"gzipLength":1101,"brotliLength":0,"mainUid":"fca1-32"},"fca1-35":{"renderedLength":16052,"gzipLength":2629,"brotliLength":0,"mainUid":"fca1-34"},"fca1-37":{"renderedLength":7030,"gzipLength":1872,"brotliLength":0,"mainUid":"fca1-36"},"fca1-39":{"renderedLength":1457,"gzipLength":527,"brotliLength":0,"mainUid":"fca1-38"},"fca1-41":{"renderedLength":2198,"gzipLength":763,"brotliLength":0,"mainUid":"fca1-40"},"fca1-43":{"renderedLength":2626,"gzipLength":639,"brotliLength":0,"mainUid":"fca1-42"},"fca1-45":{"renderedLength":3779,"gzipLength":1058,"brotliLength":0,"mainUid":"fca1-44"},"fca1-47":{"renderedLength":1209,"gzipLength":506,"brotliLength":0,"mainUid":"fca1-46"},"fca1-49":{"renderedLength":1068,"gzipLength":422,"brotliLength":0,"mainUid":"fca1-48"},"fca1-51":{"renderedLength":1429,"gzipLength":449,"brotliLength":0,"mainUid":"fca1-50"},"fca1-53":{"renderedLength":3143,"gzipLength":1017,"brotliLength":0,"mainUid":"fca1-52"},"fca1-55":{"renderedLength":5412,"gzipLength":1484,"brotliLength":0,"mainUid":"fca1-54"},"fca1-57":{"renderedLength":1265,"gzipLength":498,"brotliLength":0,"mainUid":"fca1-56"},"fca1-59":{"renderedLength":1030,"gzipLength":396,"brotliLength":0,"mainUid":"fca1-58"},"fca1-61":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"fca1-60"}},"nodeMetas":{"fca1-0":{"id":"/packages/table-core/src/utils.ts","moduleParts":{"index.production.js":"fca1-1"},"imported":[],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"},{"uid":"fca1-8"},{"uid":"fca1-10"},{"uid":"fca1-14"},{"uid":"fca1-18"},{"uid":"fca1-34"},{"uid":"fca1-20"},{"uid":"fca1-22"},{"uid":"fca1-24"},{"uid":"fca1-26"},{"uid":"fca1-30"},{"uid":"fca1-32"},{"uid":"fca1-40"},{"uid":"fca1-44"},{"uid":"fca1-46"},{"uid":"fca1-48"},{"uid":"fca1-50"},{"uid":"fca1-52"},{"uid":"fca1-54"},{"uid":"fca1-56"},{"uid":"fca1-58"},{"uid":"fca1-2"},{"uid":"fca1-4"},{"uid":"fca1-6"}]},"fca1-2":{"id":"/packages/table-core/src/features/Columns.ts","moduleParts":{"index.production.js":"fca1-3"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-36"}]},"fca1-4":{"id":"/packages/table-core/src/features/Rows.ts","moduleParts":{"index.production.js":"fca1-5"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-36"}]},"fca1-6":{"id":"/packages/table-core/src/features/Cells.ts","moduleParts":{"index.production.js":"fca1-7"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-36"}]},"fca1-8":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"fca1-9"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"}]},"fca1-10":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"fca1-11"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"}]},"fca1-12":{"id":"/packages/table-core/src/filterFns.ts","moduleParts":{"index.production.js":"fca1-13"},"imported":[],"importedBy":[{"uid":"fca1-14"}]},"fca1-14":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"fca1-15"},"imported":[{"uid":"fca1-12"},{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"}]},"fca1-16":{"id":"/packages/table-core/src/aggregationFns.ts","moduleParts":{"index.production.js":"fca1-17"},"imported":[],"importedBy":[{"uid":"fca1-18"}]},"fca1-18":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"fca1-19"},"imported":[{"uid":"fca1-16"},{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"},{"uid":"fca1-20"}]},"fca1-20":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"fca1-21"},"imported":[{"uid":"fca1-0"},{"uid":"fca1-18"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"}]},"fca1-22":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"fca1-23"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"}]},"fca1-24":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"fca1-25"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"}]},"fca1-26":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"fca1-27"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"}]},"fca1-28":{"id":"/packages/table-core/src/sortingFns.ts","moduleParts":{"index.production.js":"fca1-29"},"imported":[],"importedBy":[{"uid":"fca1-30"}]},"fca1-30":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"fca1-31"},"imported":[{"uid":"fca1-28"},{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"}]},"fca1-32":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"fca1-33"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"}]},"fca1-34":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"fca1-35"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-36"}]},"fca1-36":{"id":"/packages/table-core/src/core.ts","moduleParts":{"index.production.js":"fca1-37"},"imported":[{"uid":"fca1-0"},{"uid":"fca1-2"},{"uid":"fca1-4"},{"uid":"fca1-6"},{"uid":"fca1-8"},{"uid":"fca1-10"},{"uid":"fca1-14"},{"uid":"fca1-18"},{"uid":"fca1-20"},{"uid":"fca1-22"},{"uid":"fca1-24"},{"uid":"fca1-26"},{"uid":"fca1-30"},{"uid":"fca1-32"},{"uid":"fca1-34"}],"importedBy":[{"uid":"fca1-60"}]},"fca1-38":{"id":"/packages/table-core/src/createTable.ts","moduleParts":{"index.production.js":"fca1-39"},"imported":[],"importedBy":[{"uid":"fca1-60"}]},"fca1-40":{"id":"/packages/table-core/src/utils/getCoreRowModel.ts","moduleParts":{"index.production.js":"fca1-41"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"}]},"fca1-42":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"fca1-43"},"imported":[],"importedBy":[{"uid":"fca1-44"},{"uid":"fca1-46"}]},"fca1-44":{"id":"/packages/table-core/src/utils/getFilteredRowModel.ts","moduleParts":{"index.production.js":"fca1-45"},"imported":[{"uid":"fca1-0"},{"uid":"fca1-42"}],"importedBy":[{"uid":"fca1-60"}]},"fca1-46":{"id":"/packages/table-core/src/utils/getFacetedRowModel.ts","moduleParts":{"index.production.js":"fca1-47"},"imported":[{"uid":"fca1-0"},{"uid":"fca1-42"}],"importedBy":[{"uid":"fca1-60"}]},"fca1-48":{"id":"/packages/table-core/src/utils/getFacetedUniqueValues.ts","moduleParts":{"index.production.js":"fca1-49"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"}]},"fca1-50":{"id":"/packages/table-core/src/utils/getFacetedMinMaxValues.ts","moduleParts":{"index.production.js":"fca1-51"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"}]},"fca1-52":{"id":"/packages/table-core/src/utils/getSortedRowModel.ts","moduleParts":{"index.production.js":"fca1-53"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"}]},"fca1-54":{"id":"/packages/table-core/src/utils/getGroupedRowModel.ts","moduleParts":{"index.production.js":"fca1-55"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"}]},"fca1-56":{"id":"/packages/table-core/src/utils/getExpandedRowModel.ts","moduleParts":{"index.production.js":"fca1-57"},"imported":[{"uid":"fca1-0"}],"importedBy":[{"uid":"fca1-60"},{"uid":"fca1-58"}]},"fca1-58":{"id":"/packages/table-core/src/utils/getPaginationRowModel.ts","moduleParts":{"index.production.js":"fca1-59"},"imported":[{"uid":"fca1-0"},{"uid":"fca1-56"}],"importedBy":[{"uid":"fca1-60"}]},"fca1-60":{"id":"/packages/table-core/src/index.ts","moduleParts":{"index.production.js":"fca1-61"},"imported":[{"uid":"fca1-36"},{"uid":"fca1-62"},{"uid":"fca1-38"},{"uid":"fca1-8"},{"uid":"fca1-10"},{"uid":"fca1-14"},{"uid":"fca1-18"},{"uid":"fca1-34"},{"uid":"fca1-20"},{"uid":"fca1-22"},{"uid":"fca1-24"},{"uid":"fca1-26"},{"uid":"fca1-30"},{"uid":"fca1-32"},{"uid":"fca1-0"},{"uid":"fca1-40"},{"uid":"fca1-44"},{"uid":"fca1-46"},{"uid":"fca1-48"},{"uid":"fca1-50"},{"uid":"fca1-52"},{"uid":"fca1-54"},{"uid":"fca1-56"},{"uid":"fca1-58"}],"importedBy":[],"isEntry":true},"fca1-62":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"fca1-60"}]}},"env":{"rollup":"2.70.2"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
2673
2673
 
2674
2674
  const run = () => {
2675
2675
  const width = window.innerWidth;