@tanstack/table-core 8.0.0-alpha.67 → 8.0.0-alpha.68
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.
- package/build/cjs/aggregationFns.js +25 -37
- package/build/cjs/aggregationFns.js.map +1 -1
- package/build/cjs/core.js +167 -46
- package/build/cjs/core.js.map +1 -1
- package/build/cjs/createTable.js +24 -40
- package/build/cjs/createTable.js.map +1 -1
- package/build/cjs/features/Cells.js +28 -34
- package/build/cjs/features/Cells.js.map +1 -1
- package/build/cjs/features/ColumnSizing.js +90 -107
- package/build/cjs/features/ColumnSizing.js.map +1 -1
- package/build/cjs/features/Columns.js +52 -79
- package/build/cjs/features/Columns.js.map +1 -1
- package/build/cjs/features/Expanding.js +48 -57
- package/build/cjs/features/Expanding.js.map +1 -1
- package/build/cjs/features/Filters.js +96 -191
- package/build/cjs/features/Filters.js.map +1 -1
- package/build/cjs/features/Grouping.js +52 -70
- package/build/cjs/features/Grouping.js.map +1 -1
- package/build/cjs/features/Headers.js +109 -165
- package/build/cjs/features/Headers.js.map +1 -1
- package/build/cjs/features/Ordering.js +30 -42
- package/build/cjs/features/Ordering.js.map +1 -1
- package/build/cjs/features/Pagination.js +63 -71
- package/build/cjs/features/Pagination.js.map +1 -1
- package/build/cjs/features/Pinning.js +65 -121
- package/build/cjs/features/Pinning.js.map +1 -1
- package/build/cjs/features/RowSelection.js +92 -111
- package/build/cjs/features/RowSelection.js.map +1 -1
- package/build/cjs/features/Rows.js +32 -22
- package/build/cjs/features/Rows.js.map +1 -1
- package/build/cjs/features/Sorting.js +49 -68
- package/build/cjs/features/Sorting.js.map +1 -1
- package/build/cjs/features/Visibility.js +43 -87
- package/build/cjs/features/Visibility.js.map +1 -1
- package/build/cjs/filterFns.js +48 -72
- package/build/cjs/filterFns.js.map +1 -1
- package/build/cjs/index.js +13 -13
- package/build/cjs/sortingFns.js +21 -21
- package/build/cjs/sortingFns.js.map +1 -1
- package/build/cjs/utils/filterRowsUtils.js +49 -55
- package/build/cjs/utils/filterRowsUtils.js.map +1 -1
- package/build/cjs/utils/getCoreRowModel.js +98 -0
- package/build/cjs/utils/getCoreRowModel.js.map +1 -0
- package/build/cjs/utils/getExpandedRowModel.js +17 -21
- package/build/cjs/utils/getExpandedRowModel.js.map +1 -1
- package/build/cjs/utils/getFacetedMinMaxValues.js +48 -0
- package/build/cjs/utils/getFacetedMinMaxValues.js.map +1 -0
- package/build/cjs/utils/getFacetedRowModel.js +50 -0
- package/build/cjs/utils/getFacetedRowModel.js.map +1 -0
- package/build/cjs/utils/getFacetedUniqueValues.js +48 -0
- package/build/cjs/utils/getFacetedUniqueValues.js.map +1 -0
- package/build/cjs/utils/getFilteredRowModel.js +130 -0
- package/build/cjs/utils/getFilteredRowModel.js.map +1 -0
- package/build/cjs/utils/getGroupedRowModel.js +126 -136
- package/build/cjs/utils/getGroupedRowModel.js.map +1 -1
- package/build/cjs/utils/getPaginationRowModel.js +39 -39
- package/build/cjs/utils/getPaginationRowModel.js.map +1 -1
- package/build/cjs/utils/getSortedRowModel.js +112 -0
- package/build/cjs/utils/getSortedRowModel.js.map +1 -0
- package/build/cjs/utils.js +36 -207
- package/build/cjs/utils.js.map +1 -1
- package/build/esm/index.js +1729 -2313
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +421 -481
- package/build/types/core.d.ts +3 -5
- package/build/types/features/Cells.d.ts +1 -1
- package/build/types/features/Columns.d.ts +1 -1
- package/build/types/features/Filters.d.ts +10 -5
- package/build/types/features/Grouping.d.ts +4 -3
- package/build/types/features/Rows.d.ts +4 -3
- package/build/types/index.d.ts +6 -4
- package/build/types/types.d.ts +3 -13
- package/build/types/utils/filterRowsUtils.d.ts +3 -3
- package/build/types/utils/getCoreRowModel.d.ts +2 -0
- package/build/types/utils/getFacetedMinMaxValues.d.ts +2 -0
- package/build/types/utils/getFacetedRowModel.d.ts +2 -0
- package/build/types/utils/getFacetedUniqueValues.d.ts +2 -0
- package/build/types/utils/{getCoreRowModelSync.d.ts → getFilteredRowModel.d.ts} +1 -1
- package/build/types/utils/getGroupedRowModel.d.ts +1 -1
- package/build/types/utils/getSortedRowModel.d.ts +2 -0
- package/build/types/utils.d.ts +1 -17
- package/build/umd/index.development.js +1730 -2316
- package/build/umd/index.development.js.map +1 -1
- package/build/umd/index.production.js +1 -1
- package/build/umd/index.production.js.map +1 -1
- package/package.json +1 -1
- package/src/core.ts +197 -45
- package/src/features/Cells.ts +7 -11
- package/src/features/ColumnSizing.ts +6 -5
- package/src/features/Columns.ts +4 -8
- package/src/features/Filters.ts +95 -156
- package/src/features/Grouping.ts +16 -20
- package/src/features/Rows.ts +21 -6
- package/src/features/Sorting.ts +2 -2
- package/src/filterFns.ts +9 -9
- package/src/index.ts +12 -4
- package/src/sortingFns.ts +11 -11
- package/src/types.ts +3 -16
- package/src/utils/filterRowsUtils.ts +47 -68
- package/src/utils/{getCoreRowModelSync.ts → getCoreRowModel.ts} +2 -8
- package/src/utils/getFacetedMinMaxValues.ts +37 -0
- package/src/utils/getFacetedRowModel.ts +50 -0
- package/src/utils/getFacetedUniqueValues.ts +37 -0
- package/src/utils/{getFilteredRowModelSync.ts → getFilteredRowModel.ts} +29 -20
- package/src/utils/getGroupedRowModel.ts +52 -61
- package/src/utils/{getSortedRowModelSync.ts → getSortedRowModel.ts} +3 -3
- package/src/utils.ts +28 -236
- package/build/cjs/_virtual/_rollupPluginBabelHelpers.js +0 -112
- package/build/cjs/_virtual/_rollupPluginBabelHelpers.js.map +0 -1
- package/build/cjs/utils/getCoreRowModelAsync.js +0 -125
- package/build/cjs/utils/getCoreRowModelAsync.js.map +0 -1
- package/build/cjs/utils/getCoreRowModelSync.js +0 -102
- package/build/cjs/utils/getCoreRowModelSync.js.map +0 -1
- package/build/cjs/utils/getFilteredRowModelSync.js +0 -125
- package/build/cjs/utils/getFilteredRowModelSync.js.map +0 -1
- package/build/cjs/utils/getSortedRowModelSync.js +0 -118
- package/build/cjs/utils/getSortedRowModelSync.js.map +0 -1
- package/build/types/utils/getCoreRowModelAsync.d.ts +0 -4
- package/build/types/utils/getFilteredRowModelAsync.d.ts +0 -4
- package/build/types/utils/getFilteredRowModelSync.d.ts +0 -2
- package/build/types/utils/getSortedRowModelAsync.d.ts +0 -13
- package/build/types/utils/getSortedRowModelSync.d.ts +0 -2
- package/src/utils/getCoreRowModelAsync.ts +0 -104
- package/src/utils/getFilteredRowModelAsync.ts +0 -157
- package/src/utils/getSortedRowModelAsync.ts +0 -200
package/build/stats-html.html
CHANGED
|
@@ -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":"a584-1","name":"utils.ts"},{"name":"features","children":[{"uid":"a584-3","name":"Columns.ts"},{"uid":"a584-5","name":"Rows.ts"},{"uid":"a584-7","name":"Cells.ts"},{"uid":"a584-9","name":"ColumnSizing.ts"},{"uid":"a584-11","name":"Expanding.ts"},{"uid":"a584-15","name":"Filters.ts"},{"uid":"a584-19","name":"Grouping.ts"},{"uid":"a584-21","name":"Ordering.ts"},{"uid":"a584-23","name":"Pagination.ts"},{"uid":"a584-25","name":"Pinning.ts"},{"uid":"a584-27","name":"RowSelection.ts"},{"uid":"a584-31","name":"Sorting.ts"},{"uid":"a584-33","name":"Visibility.ts"},{"uid":"a584-35","name":"Headers.ts"}]},{"uid":"a584-13","name":"filterFns.ts"},{"uid":"a584-17","name":"aggregationFns.ts"},{"uid":"a584-29","name":"sortingFns.ts"},{"uid":"a584-37","name":"core.ts"},{"uid":"a584-39","name":"createTable.ts"},{"name":"utils","children":[{"uid":"a584-41","name":"getCoreRowModel.ts"},{"uid":"a584-43","name":"filterRowsUtils.ts"},{"uid":"a584-45","name":"getFilteredRowModel.ts"},{"uid":"a584-47","name":"getFacetedRowModel.ts"},{"uid":"a584-49","name":"getFacetedUniqueValues.ts"},{"uid":"a584-51","name":"getFacetedMinMaxValues.ts"},{"uid":"a584-53","name":"getSortedRowModel.ts"},{"uid":"a584-55","name":"getGroupedRowModel.ts"},{"uid":"a584-57","name":"getExpandedRowModel.ts"},{"uid":"a584-59","name":"getPaginationRowModel.ts"}]},{"uid":"a584-61","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"a584-1":{"renderedLength":2201,"gzipLength":800,"brotliLength":0,"mainUid":"a584-0"},"a584-3":{"renderedLength":6485,"gzipLength":1337,"brotliLength":0,"mainUid":"a584-2"},"a584-5":{"renderedLength":2312,"gzipLength":753,"brotliLength":0,"mainUid":"a584-4"},"a584-7":{"renderedLength":2169,"gzipLength":627,"brotliLength":0,"mainUid":"a584-6"},"a584-9":{"renderedLength":9838,"gzipLength":2168,"brotliLength":0,"mainUid":"a584-8"},"a584-11":{"renderedLength":5431,"gzipLength":1253,"brotliLength":0,"mainUid":"a584-10"},"a584-13":{"renderedLength":2743,"gzipLength":666,"brotliLength":0,"mainUid":"a584-12"},"a584-15":{"renderedLength":10167,"gzipLength":1880,"brotliLength":0,"mainUid":"a584-14"},"a584-17":{"renderedLength":2146,"gzipLength":642,"brotliLength":0,"mainUid":"a584-16"},"a584-19":{"renderedLength":5281,"gzipLength":1338,"brotliLength":0,"mainUid":"a584-18"},"a584-21":{"renderedLength":2201,"gzipLength":755,"brotliLength":0,"mainUid":"a584-20"},"a584-23":{"renderedLength":5339,"gzipLength":1198,"brotliLength":0,"mainUid":"a584-22"},"a584-25":{"renderedLength":7764,"gzipLength":1326,"brotliLength":0,"mainUid":"a584-24"},"a584-27":{"renderedLength":12803,"gzipLength":2432,"brotliLength":0,"mainUid":"a584-26"},"a584-29":{"renderedLength":2712,"gzipLength":830,"brotliLength":0,"mainUid":"a584-28"},"a584-31":{"renderedLength":8483,"gzipLength":1999,"brotliLength":0,"mainUid":"a584-30"},"a584-33":{"renderedLength":4796,"gzipLength":1056,"brotliLength":0,"mainUid":"a584-32"},"a584-35":{"renderedLength":16052,"gzipLength":2629,"brotliLength":0,"mainUid":"a584-34"},"a584-37":{"renderedLength":7030,"gzipLength":1872,"brotliLength":0,"mainUid":"a584-36"},"a584-39":{"renderedLength":1457,"gzipLength":527,"brotliLength":0,"mainUid":"a584-38"},"a584-41":{"renderedLength":2198,"gzipLength":763,"brotliLength":0,"mainUid":"a584-40"},"a584-43":{"renderedLength":2626,"gzipLength":639,"brotliLength":0,"mainUid":"a584-42"},"a584-45":{"renderedLength":3779,"gzipLength":1058,"brotliLength":0,"mainUid":"a584-44"},"a584-47":{"renderedLength":1209,"gzipLength":506,"brotliLength":0,"mainUid":"a584-46"},"a584-49":{"renderedLength":1068,"gzipLength":422,"brotliLength":0,"mainUid":"a584-48"},"a584-51":{"renderedLength":1429,"gzipLength":449,"brotliLength":0,"mainUid":"a584-50"},"a584-53":{"renderedLength":3143,"gzipLength":1017,"brotliLength":0,"mainUid":"a584-52"},"a584-55":{"renderedLength":5412,"gzipLength":1484,"brotliLength":0,"mainUid":"a584-54"},"a584-57":{"renderedLength":1265,"gzipLength":498,"brotliLength":0,"mainUid":"a584-56"},"a584-59":{"renderedLength":1030,"gzipLength":396,"brotliLength":0,"mainUid":"a584-58"},"a584-61":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"a584-60"}},"nodeMetas":{"a584-0":{"id":"/packages/table-core/src/utils.ts","moduleParts":{"index.production.js":"a584-1"},"imported":[],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"},{"uid":"a584-8"},{"uid":"a584-10"},{"uid":"a584-14"},{"uid":"a584-18"},{"uid":"a584-34"},{"uid":"a584-20"},{"uid":"a584-22"},{"uid":"a584-24"},{"uid":"a584-26"},{"uid":"a584-30"},{"uid":"a584-32"},{"uid":"a584-40"},{"uid":"a584-44"},{"uid":"a584-46"},{"uid":"a584-48"},{"uid":"a584-50"},{"uid":"a584-52"},{"uid":"a584-54"},{"uid":"a584-56"},{"uid":"a584-58"},{"uid":"a584-2"},{"uid":"a584-4"},{"uid":"a584-6"}]},"a584-2":{"id":"/packages/table-core/src/features/Columns.ts","moduleParts":{"index.production.js":"a584-3"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-36"}]},"a584-4":{"id":"/packages/table-core/src/features/Rows.ts","moduleParts":{"index.production.js":"a584-5"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-36"}]},"a584-6":{"id":"/packages/table-core/src/features/Cells.ts","moduleParts":{"index.production.js":"a584-7"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-36"}]},"a584-8":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"a584-9"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"}]},"a584-10":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"a584-11"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"}]},"a584-12":{"id":"/packages/table-core/src/filterFns.ts","moduleParts":{"index.production.js":"a584-13"},"imported":[],"importedBy":[{"uid":"a584-14"}]},"a584-14":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"a584-15"},"imported":[{"uid":"a584-12"},{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"}]},"a584-16":{"id":"/packages/table-core/src/aggregationFns.ts","moduleParts":{"index.production.js":"a584-17"},"imported":[],"importedBy":[{"uid":"a584-18"}]},"a584-18":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"a584-19"},"imported":[{"uid":"a584-16"},{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"},{"uid":"a584-20"}]},"a584-20":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"a584-21"},"imported":[{"uid":"a584-0"},{"uid":"a584-18"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"}]},"a584-22":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"a584-23"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"}]},"a584-24":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"a584-25"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"}]},"a584-26":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"a584-27"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"}]},"a584-28":{"id":"/packages/table-core/src/sortingFns.ts","moduleParts":{"index.production.js":"a584-29"},"imported":[],"importedBy":[{"uid":"a584-30"}]},"a584-30":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"a584-31"},"imported":[{"uid":"a584-28"},{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"}]},"a584-32":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"a584-33"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"}]},"a584-34":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"a584-35"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-36"}]},"a584-36":{"id":"/packages/table-core/src/core.ts","moduleParts":{"index.production.js":"a584-37"},"imported":[{"uid":"a584-0"},{"uid":"a584-2"},{"uid":"a584-4"},{"uid":"a584-6"},{"uid":"a584-8"},{"uid":"a584-10"},{"uid":"a584-14"},{"uid":"a584-18"},{"uid":"a584-20"},{"uid":"a584-22"},{"uid":"a584-24"},{"uid":"a584-26"},{"uid":"a584-30"},{"uid":"a584-32"},{"uid":"a584-34"}],"importedBy":[{"uid":"a584-60"}]},"a584-38":{"id":"/packages/table-core/src/createTable.ts","moduleParts":{"index.production.js":"a584-39"},"imported":[],"importedBy":[{"uid":"a584-60"}]},"a584-40":{"id":"/packages/table-core/src/utils/getCoreRowModel.ts","moduleParts":{"index.production.js":"a584-41"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"}]},"a584-42":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"a584-43"},"imported":[],"importedBy":[{"uid":"a584-44"},{"uid":"a584-46"}]},"a584-44":{"id":"/packages/table-core/src/utils/getFilteredRowModel.ts","moduleParts":{"index.production.js":"a584-45"},"imported":[{"uid":"a584-0"},{"uid":"a584-42"}],"importedBy":[{"uid":"a584-60"}]},"a584-46":{"id":"/packages/table-core/src/utils/getFacetedRowModel.ts","moduleParts":{"index.production.js":"a584-47"},"imported":[{"uid":"a584-0"},{"uid":"a584-42"}],"importedBy":[{"uid":"a584-60"}]},"a584-48":{"id":"/packages/table-core/src/utils/getFacetedUniqueValues.ts","moduleParts":{"index.production.js":"a584-49"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"}]},"a584-50":{"id":"/packages/table-core/src/utils/getFacetedMinMaxValues.ts","moduleParts":{"index.production.js":"a584-51"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"}]},"a584-52":{"id":"/packages/table-core/src/utils/getSortedRowModel.ts","moduleParts":{"index.production.js":"a584-53"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"}]},"a584-54":{"id":"/packages/table-core/src/utils/getGroupedRowModel.ts","moduleParts":{"index.production.js":"a584-55"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"}]},"a584-56":{"id":"/packages/table-core/src/utils/getExpandedRowModel.ts","moduleParts":{"index.production.js":"a584-57"},"imported":[{"uid":"a584-0"}],"importedBy":[{"uid":"a584-60"},{"uid":"a584-58"}]},"a584-58":{"id":"/packages/table-core/src/utils/getPaginationRowModel.ts","moduleParts":{"index.production.js":"a584-59"},"imported":[{"uid":"a584-0"},{"uid":"a584-56"}],"importedBy":[{"uid":"a584-60"}]},"a584-60":{"id":"/packages/table-core/src/index.ts","moduleParts":{"index.production.js":"a584-61"},"imported":[{"uid":"a584-36"},{"uid":"a584-62"},{"uid":"a584-38"},{"uid":"a584-8"},{"uid":"a584-10"},{"uid":"a584-14"},{"uid":"a584-18"},{"uid":"a584-34"},{"uid":"a584-20"},{"uid":"a584-22"},{"uid":"a584-24"},{"uid":"a584-26"},{"uid":"a584-30"},{"uid":"a584-32"},{"uid":"a584-0"},{"uid":"a584-40"},{"uid":"a584-44"},{"uid":"a584-46"},{"uid":"a584-48"},{"uid":"a584-50"},{"uid":"a584-52"},{"uid":"a584-54"},{"uid":"a584-56"},{"uid":"a584-58"}],"importedBy":[],"isEntry":true},"a584-62":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"a584-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;
|