@tanstack/table-core 8.0.0-alpha.82 → 8.0.0-alpha.85
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 +50 -51
- package/build/cjs/aggregationFns.js.map +1 -1
- package/build/cjs/core/cell.js +38 -0
- package/build/cjs/core/cell.js.map +1 -0
- package/build/cjs/core/column.js +88 -0
- package/build/cjs/core/column.js.map +1 -0
- package/build/cjs/{features/Headers.js → core/headers.js} +54 -66
- package/build/cjs/core/headers.js.map +1 -0
- package/build/cjs/core/instance.js +255 -0
- package/build/cjs/core/instance.js.map +1 -0
- package/build/cjs/core/row.js +77 -0
- package/build/cjs/core/row.js.map +1 -0
- package/build/cjs/createTable.js +3 -2
- package/build/cjs/createTable.js.map +1 -1
- package/build/cjs/features/ColumnSizing.js +5 -5
- package/build/cjs/features/ColumnSizing.js.map +1 -1
- package/build/cjs/features/Expanding.js.map +1 -1
- package/build/cjs/features/Filters.js +11 -8
- package/build/cjs/features/Filters.js.map +1 -1
- package/build/cjs/features/Grouping.js +10 -10
- package/build/cjs/features/Grouping.js.map +1 -1
- package/build/cjs/features/Ordering.js.map +1 -1
- package/build/cjs/features/Pagination.js.map +1 -1
- package/build/cjs/features/Pinning.js +17 -11
- package/build/cjs/features/Pinning.js.map +1 -1
- package/build/cjs/features/RowSelection.js.map +1 -1
- package/build/cjs/features/Sorting.js +8 -8
- package/build/cjs/features/Sorting.js.map +1 -1
- package/build/cjs/features/Visibility.js +3 -3
- package/build/cjs/features/Visibility.js.map +1 -1
- package/build/cjs/index.js +9 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/utils/filterRowsUtils.js +23 -21
- package/build/cjs/utils/filterRowsUtils.js.map +1 -1
- package/build/cjs/utils/getCoreRowModel.js +9 -8
- package/build/cjs/utils/getCoreRowModel.js.map +1 -1
- package/build/cjs/utils/getGroupedRowModel.js +13 -20
- package/build/cjs/utils/getGroupedRowModel.js.map +1 -1
- package/build/cjs/utils/getSortedRowModel.js +2 -2
- package/build/cjs/utils/getSortedRowModel.js.map +1 -1
- package/build/esm/index.js +764 -865
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +404 -381
- package/build/types/aggregationFns.d.ts +10 -19
- package/build/types/core/cell.d.ts +9 -0
- package/build/types/{features/Columns.d.ts → core/column.d.ts} +3 -17
- package/build/types/{features/Headers.d.ts → core/headers.d.ts} +26 -11
- package/build/types/core/instance.d.ts +57 -0
- package/build/types/core/row.d.ts +15 -0
- package/build/types/createTable.d.ts +4 -4
- package/build/types/features/ColumnSizing.d.ts +2 -1
- package/build/types/features/Expanding.d.ts +2 -1
- package/build/types/features/Filters.d.ts +2 -3
- package/build/types/features/Grouping.d.ts +8 -9
- package/build/types/features/Ordering.d.ts +2 -1
- package/build/types/features/Pagination.d.ts +2 -1
- package/build/types/features/Pinning.d.ts +3 -2
- package/build/types/features/RowSelection.d.ts +2 -1
- package/build/types/features/Sorting.d.ts +2 -1
- package/build/types/features/Visibility.d.ts +2 -1
- package/build/types/index.d.ts +4 -2
- package/build/types/sortingFns.d.ts +4 -4
- package/build/types/types.d.ts +12 -53
- package/build/umd/index.development.js +767 -863
- 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/aggregationFns.ts +44 -40
- package/src/core/cell.ts +47 -0
- package/src/core/column.ts +148 -0
- package/src/{features/Headers.ts → core/headers.ts} +98 -99
- package/src/core/instance.ts +361 -0
- package/src/core/row.ts +85 -0
- package/src/createTable.ts +7 -4
- package/src/features/ColumnSizing.ts +6 -6
- package/src/features/Expanding.ts +1 -2
- package/src/features/Filters.ts +9 -10
- package/src/features/Grouping.ts +20 -22
- package/src/features/Ordering.ts +1 -1
- package/src/features/Pagination.ts +1 -1
- package/src/features/Pinning.ts +18 -9
- package/src/features/RowSelection.ts +1 -1
- package/src/features/Sorting.ts +10 -10
- package/src/features/Visibility.ts +3 -3
- package/src/index.ts +4 -8
- package/src/types.ts +16 -64
- package/src/utils/filterRowsUtils.ts +4 -2
- package/src/utils/getCoreRowModel.ts +4 -2
- package/src/utils/getGroupedRowModel.ts +14 -22
- package/src/utils/getSortedRowModel.ts +2 -2
- package/build/cjs/core.js +0 -168
- package/build/cjs/core.js.map +0 -1
- package/build/cjs/features/Cells.js +0 -101
- package/build/cjs/features/Cells.js.map +0 -1
- package/build/cjs/features/Columns.js +0 -189
- package/build/cjs/features/Columns.js.map +0 -1
- package/build/cjs/features/Headers.js.map +0 -1
- package/build/cjs/features/Rows.js +0 -94
- package/build/cjs/features/Rows.js.map +0 -1
- package/build/types/core.d.ts +0 -30
- package/build/types/features/Cells.d.ts +0 -13
- package/build/types/features/Rows.d.ts +0 -28
- package/src/core.ts +0 -246
- package/src/features/Cells.ts +0 -128
- package/src/features/Columns.ts +0 -289
- package/src/features/Rows.ts +0 -142
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":[{"name":"packages/table-core/src","children":[{"uid":"1e4f-1","name":"utils.ts"},{"name":"features","children":[{"uid":"1e4f-3","name":"Columns.ts"},{"uid":"1e4f-5","name":"Rows.ts"},{"uid":"1e4f-7","name":"Cells.ts"},{"uid":"1e4f-9","name":"ColumnSizing.ts"},{"uid":"1e4f-11","name":"Expanding.ts"},{"uid":"1e4f-15","name":"Filters.ts"},{"uid":"1e4f-19","name":"Grouping.ts"},{"uid":"1e4f-21","name":"Ordering.ts"},{"uid":"1e4f-23","name":"Pagination.ts"},{"uid":"1e4f-25","name":"Pinning.ts"},{"uid":"1e4f-27","name":"RowSelection.ts"},{"uid":"1e4f-31","name":"Sorting.ts"},{"uid":"1e4f-33","name":"Visibility.ts"},{"uid":"1e4f-35","name":"Headers.ts"}]},{"uid":"1e4f-13","name":"filterFns.ts"},{"uid":"1e4f-17","name":"aggregationFns.ts"},{"uid":"1e4f-29","name":"sortingFns.ts"},{"uid":"1e4f-37","name":"core.ts"},{"uid":"1e4f-39","name":"createTable.ts"},{"name":"utils","children":[{"uid":"1e4f-41","name":"getCoreRowModel.ts"},{"uid":"1e4f-43","name":"filterRowsUtils.ts"},{"uid":"1e4f-45","name":"getFilteredRowModel.ts"},{"uid":"1e4f-47","name":"getFacetedRowModel.ts"},{"uid":"1e4f-49","name":"getFacetedUniqueValues.ts"},{"uid":"1e4f-51","name":"getFacetedMinMaxValues.ts"},{"uid":"1e4f-53","name":"getSortedRowModel.ts"},{"uid":"1e4f-55","name":"getGroupedRowModel.ts"},{"uid":"1e4f-57","name":"getExpandedRowModel.ts"},{"uid":"1e4f-59","name":"getPaginationRowModel.ts"}]},{"uid":"1e4f-61","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"1e4f-1":{"renderedLength":2201,"gzipLength":800,"brotliLength":0,"mainUid":"1e4f-0"},"1e4f-3":{"renderedLength":6485,"gzipLength":1337,"brotliLength":0,"mainUid":"1e4f-2"},"1e4f-5":{"renderedLength":2311,"gzipLength":760,"brotliLength":0,"mainUid":"1e4f-4"},"1e4f-7":{"renderedLength":2170,"gzipLength":628,"brotliLength":0,"mainUid":"1e4f-6"},"1e4f-9":{"renderedLength":9977,"gzipLength":2208,"brotliLength":0,"mainUid":"1e4f-8"},"1e4f-11":{"renderedLength":5686,"gzipLength":1314,"brotliLength":0,"mainUid":"1e4f-10"},"1e4f-13":{"renderedLength":2743,"gzipLength":666,"brotliLength":0,"mainUid":"1e4f-12"},"1e4f-15":{"renderedLength":10251,"gzipLength":1899,"brotliLength":0,"mainUid":"1e4f-14"},"1e4f-17":{"renderedLength":2146,"gzipLength":642,"brotliLength":0,"mainUid":"1e4f-16"},"1e4f-19":{"renderedLength":5312,"gzipLength":1351,"brotliLength":0,"mainUid":"1e4f-18"},"1e4f-21":{"renderedLength":2231,"gzipLength":767,"brotliLength":0,"mainUid":"1e4f-20"},"1e4f-23":{"renderedLength":6265,"gzipLength":1382,"brotliLength":0,"mainUid":"1e4f-22"},"1e4f-25":{"renderedLength":7888,"gzipLength":1365,"brotliLength":0,"mainUid":"1e4f-24"},"1e4f-27":{"renderedLength":12833,"gzipLength":2446,"brotliLength":0,"mainUid":"1e4f-26"},"1e4f-29":{"renderedLength":2712,"gzipLength":830,"brotliLength":0,"mainUid":"1e4f-28"},"1e4f-31":{"renderedLength":8529,"gzipLength":2016,"brotliLength":0,"mainUid":"1e4f-30"},"1e4f-33":{"renderedLength":5057,"gzipLength":1101,"brotliLength":0,"mainUid":"1e4f-32"},"1e4f-35":{"renderedLength":16531,"gzipLength":2703,"brotliLength":0,"mainUid":"1e4f-34"},"1e4f-37":{"renderedLength":4084,"gzipLength":1234,"brotliLength":0,"mainUid":"1e4f-36"},"1e4f-39":{"renderedLength":1495,"gzipLength":534,"brotliLength":0,"mainUid":"1e4f-38"},"1e4f-41":{"renderedLength":2000,"gzipLength":771,"brotliLength":0,"mainUid":"1e4f-40"},"1e4f-43":{"renderedLength":2622,"gzipLength":636,"brotliLength":0,"mainUid":"1e4f-42"},"1e4f-45":{"renderedLength":4104,"gzipLength":1090,"brotliLength":0,"mainUid":"1e4f-44"},"1e4f-47":{"renderedLength":1207,"gzipLength":503,"brotliLength":0,"mainUid":"1e4f-46"},"1e4f-49":{"renderedLength":1068,"gzipLength":422,"brotliLength":0,"mainUid":"1e4f-48"},"1e4f-51":{"renderedLength":1238,"gzipLength":443,"brotliLength":0,"mainUid":"1e4f-50"},"1e4f-53":{"renderedLength":3098,"gzipLength":1007,"brotliLength":0,"mainUid":"1e4f-52"},"1e4f-55":{"renderedLength":5413,"gzipLength":1484,"brotliLength":0,"mainUid":"1e4f-54"},"1e4f-57":{"renderedLength":1265,"gzipLength":498,"brotliLength":0,"mainUid":"1e4f-56"},"1e4f-59":{"renderedLength":1030,"gzipLength":396,"brotliLength":0,"mainUid":"1e4f-58"},"1e4f-61":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"1e4f-60"}},"nodeMetas":{"1e4f-0":{"id":"/packages/table-core/src/utils.ts","moduleParts":{"index.production.js":"1e4f-1"},"imported":[],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"},{"uid":"1e4f-8"},{"uid":"1e4f-10"},{"uid":"1e4f-14"},{"uid":"1e4f-18"},{"uid":"1e4f-34"},{"uid":"1e4f-20"},{"uid":"1e4f-22"},{"uid":"1e4f-24"},{"uid":"1e4f-26"},{"uid":"1e4f-30"},{"uid":"1e4f-32"},{"uid":"1e4f-40"},{"uid":"1e4f-44"},{"uid":"1e4f-46"},{"uid":"1e4f-48"},{"uid":"1e4f-50"},{"uid":"1e4f-52"},{"uid":"1e4f-54"},{"uid":"1e4f-56"},{"uid":"1e4f-58"},{"uid":"1e4f-2"},{"uid":"1e4f-4"},{"uid":"1e4f-6"}]},"1e4f-2":{"id":"/packages/table-core/src/features/Columns.ts","moduleParts":{"index.production.js":"1e4f-3"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-36"}]},"1e4f-4":{"id":"/packages/table-core/src/features/Rows.ts","moduleParts":{"index.production.js":"1e4f-5"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-36"}]},"1e4f-6":{"id":"/packages/table-core/src/features/Cells.ts","moduleParts":{"index.production.js":"1e4f-7"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-36"}]},"1e4f-8":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"1e4f-9"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"}]},"1e4f-10":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"1e4f-11"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"}]},"1e4f-12":{"id":"/packages/table-core/src/filterFns.ts","moduleParts":{"index.production.js":"1e4f-13"},"imported":[],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-14"}]},"1e4f-14":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"1e4f-15"},"imported":[{"uid":"1e4f-12"},{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"}]},"1e4f-16":{"id":"/packages/table-core/src/aggregationFns.ts","moduleParts":{"index.production.js":"1e4f-17"},"imported":[],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-18"}]},"1e4f-18":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"1e4f-19"},"imported":[{"uid":"1e4f-16"},{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"},{"uid":"1e4f-20"}]},"1e4f-20":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"1e4f-21"},"imported":[{"uid":"1e4f-0"},{"uid":"1e4f-18"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"}]},"1e4f-22":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"1e4f-23"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"}]},"1e4f-24":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"1e4f-25"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"}]},"1e4f-26":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"1e4f-27"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"}]},"1e4f-28":{"id":"/packages/table-core/src/sortingFns.ts","moduleParts":{"index.production.js":"1e4f-29"},"imported":[],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-30"}]},"1e4f-30":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"1e4f-31"},"imported":[{"uid":"1e4f-28"},{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"}]},"1e4f-32":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"1e4f-33"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"}]},"1e4f-34":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"1e4f-35"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-36"}]},"1e4f-36":{"id":"/packages/table-core/src/core.ts","moduleParts":{"index.production.js":"1e4f-37"},"imported":[{"uid":"1e4f-0"},{"uid":"1e4f-2"},{"uid":"1e4f-4"},{"uid":"1e4f-6"},{"uid":"1e4f-8"},{"uid":"1e4f-10"},{"uid":"1e4f-14"},{"uid":"1e4f-18"},{"uid":"1e4f-20"},{"uid":"1e4f-22"},{"uid":"1e4f-24"},{"uid":"1e4f-26"},{"uid":"1e4f-30"},{"uid":"1e4f-32"},{"uid":"1e4f-34"}],"importedBy":[{"uid":"1e4f-60"}]},"1e4f-38":{"id":"/packages/table-core/src/createTable.ts","moduleParts":{"index.production.js":"1e4f-39"},"imported":[],"importedBy":[{"uid":"1e4f-60"}]},"1e4f-40":{"id":"/packages/table-core/src/utils/getCoreRowModel.ts","moduleParts":{"index.production.js":"1e4f-41"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"}]},"1e4f-42":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"1e4f-43"},"imported":[],"importedBy":[{"uid":"1e4f-44"},{"uid":"1e4f-46"}]},"1e4f-44":{"id":"/packages/table-core/src/utils/getFilteredRowModel.ts","moduleParts":{"index.production.js":"1e4f-45"},"imported":[{"uid":"1e4f-0"},{"uid":"1e4f-42"}],"importedBy":[{"uid":"1e4f-60"}]},"1e4f-46":{"id":"/packages/table-core/src/utils/getFacetedRowModel.ts","moduleParts":{"index.production.js":"1e4f-47"},"imported":[{"uid":"1e4f-0"},{"uid":"1e4f-42"}],"importedBy":[{"uid":"1e4f-60"}]},"1e4f-48":{"id":"/packages/table-core/src/utils/getFacetedUniqueValues.ts","moduleParts":{"index.production.js":"1e4f-49"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"}]},"1e4f-50":{"id":"/packages/table-core/src/utils/getFacetedMinMaxValues.ts","moduleParts":{"index.production.js":"1e4f-51"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"}]},"1e4f-52":{"id":"/packages/table-core/src/utils/getSortedRowModel.ts","moduleParts":{"index.production.js":"1e4f-53"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"}]},"1e4f-54":{"id":"/packages/table-core/src/utils/getGroupedRowModel.ts","moduleParts":{"index.production.js":"1e4f-55"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"}]},"1e4f-56":{"id":"/packages/table-core/src/utils/getExpandedRowModel.ts","moduleParts":{"index.production.js":"1e4f-57"},"imported":[{"uid":"1e4f-0"}],"importedBy":[{"uid":"1e4f-60"},{"uid":"1e4f-58"}]},"1e4f-58":{"id":"/packages/table-core/src/utils/getPaginationRowModel.ts","moduleParts":{"index.production.js":"1e4f-59"},"imported":[{"uid":"1e4f-0"},{"uid":"1e4f-56"}],"importedBy":[{"uid":"1e4f-60"}]},"1e4f-60":{"id":"/packages/table-core/src/index.ts","moduleParts":{"index.production.js":"1e4f-61"},"imported":[{"uid":"1e4f-36"},{"uid":"1e4f-62"},{"uid":"1e4f-38"},{"uid":"1e4f-8"},{"uid":"1e4f-10"},{"uid":"1e4f-14"},{"uid":"1e4f-18"},{"uid":"1e4f-34"},{"uid":"1e4f-20"},{"uid":"1e4f-22"},{"uid":"1e4f-24"},{"uid":"1e4f-26"},{"uid":"1e4f-30"},{"uid":"1e4f-32"},{"uid":"1e4f-12"},{"uid":"1e4f-28"},{"uid":"1e4f-16"},{"uid":"1e4f-0"},{"uid":"1e4f-40"},{"uid":"1e4f-44"},{"uid":"1e4f-46"},{"uid":"1e4f-48"},{"uid":"1e4f-50"},{"uid":"1e4f-52"},{"uid":"1e4f-54"},{"uid":"1e4f-56"},{"uid":"1e4f-58"}],"importedBy":[],"isEntry":true},"1e4f-62":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"1e4f-60"}]}},"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":"ddcf-1","name":"utils.ts"},{"name":"core","children":[{"uid":"ddcf-3","name":"column.ts"},{"uid":"ddcf-5","name":"headers.ts"},{"uid":"ddcf-33","name":"instance.ts"},{"uid":"ddcf-37","name":"cell.ts"},{"uid":"ddcf-39","name":"row.ts"}]},{"name":"features","children":[{"uid":"ddcf-7","name":"ColumnSizing.ts"},{"uid":"ddcf-9","name":"Expanding.ts"},{"uid":"ddcf-13","name":"Filters.ts"},{"uid":"ddcf-17","name":"Grouping.ts"},{"uid":"ddcf-19","name":"Ordering.ts"},{"uid":"ddcf-21","name":"Pagination.ts"},{"uid":"ddcf-23","name":"Pinning.ts"},{"uid":"ddcf-25","name":"RowSelection.ts"},{"uid":"ddcf-29","name":"Sorting.ts"},{"uid":"ddcf-31","name":"Visibility.ts"}]},{"uid":"ddcf-11","name":"filterFns.ts"},{"uid":"ddcf-15","name":"aggregationFns.ts"},{"uid":"ddcf-27","name":"sortingFns.ts"},{"uid":"ddcf-35","name":"createTable.ts"},{"name":"utils","children":[{"uid":"ddcf-41","name":"getCoreRowModel.ts"},{"uid":"ddcf-43","name":"filterRowsUtils.ts"},{"uid":"ddcf-45","name":"getFilteredRowModel.ts"},{"uid":"ddcf-47","name":"getFacetedRowModel.ts"},{"uid":"ddcf-49","name":"getFacetedUniqueValues.ts"},{"uid":"ddcf-51","name":"getFacetedMinMaxValues.ts"},{"uid":"ddcf-53","name":"getSortedRowModel.ts"},{"uid":"ddcf-55","name":"getGroupedRowModel.ts"},{"uid":"ddcf-57","name":"getExpandedRowModel.ts"},{"uid":"ddcf-59","name":"getPaginationRowModel.ts"}]},{"uid":"ddcf-61","name":"index.ts"}]}]}],"isRoot":true},"nodeParts":{"ddcf-1":{"renderedLength":2201,"gzipLength":800,"brotliLength":0,"mainUid":"ddcf-0"},"ddcf-3":{"renderedLength":2268,"gzipLength":742,"brotliLength":0,"mainUid":"ddcf-2"},"ddcf-5":{"renderedLength":15972,"gzipLength":2637,"brotliLength":0,"mainUid":"ddcf-4"},"ddcf-7":{"renderedLength":10056,"gzipLength":2221,"brotliLength":0,"mainUid":"ddcf-6"},"ddcf-9":{"renderedLength":5686,"gzipLength":1314,"brotliLength":0,"mainUid":"ddcf-8"},"ddcf-11":{"renderedLength":2743,"gzipLength":666,"brotliLength":0,"mainUid":"ddcf-10"},"ddcf-13":{"renderedLength":10342,"gzipLength":1904,"brotliLength":0,"mainUid":"ddcf-12"},"ddcf-15":{"renderedLength":2366,"gzipLength":652,"brotliLength":0,"mainUid":"ddcf-14"},"ddcf-17":{"renderedLength":5316,"gzipLength":1365,"brotliLength":0,"mainUid":"ddcf-16"},"ddcf-19":{"renderedLength":2231,"gzipLength":767,"brotliLength":0,"mainUid":"ddcf-18"},"ddcf-21":{"renderedLength":6265,"gzipLength":1382,"brotliLength":0,"mainUid":"ddcf-20"},"ddcf-23":{"renderedLength":8249,"gzipLength":1442,"brotliLength":0,"mainUid":"ddcf-22"},"ddcf-25":{"renderedLength":12833,"gzipLength":2446,"brotliLength":0,"mainUid":"ddcf-24"},"ddcf-27":{"renderedLength":2712,"gzipLength":830,"brotliLength":0,"mainUid":"ddcf-26"},"ddcf-29":{"renderedLength":8615,"gzipLength":2026,"brotliLength":0,"mainUid":"ddcf-28"},"ddcf-31":{"renderedLength":5073,"gzipLength":1113,"brotliLength":0,"mainUid":"ddcf-30"},"ddcf-33":{"renderedLength":7546,"gzipLength":1790,"brotliLength":0,"mainUid":"ddcf-32"},"ddcf-35":{"renderedLength":1546,"gzipLength":551,"brotliLength":0,"mainUid":"ddcf-34"},"ddcf-37":{"renderedLength":587,"gzipLength":284,"brotliLength":0,"mainUid":"ddcf-36"},"ddcf-39":{"renderedLength":1887,"gzipLength":636,"brotliLength":0,"mainUid":"ddcf-38"},"ddcf-41":{"renderedLength":2002,"gzipLength":773,"brotliLength":0,"mainUid":"ddcf-40"},"ddcf-43":{"renderedLength":2624,"gzipLength":635,"brotliLength":0,"mainUid":"ddcf-42"},"ddcf-45":{"renderedLength":4104,"gzipLength":1090,"brotliLength":0,"mainUid":"ddcf-44"},"ddcf-47":{"renderedLength":1207,"gzipLength":503,"brotliLength":0,"mainUid":"ddcf-46"},"ddcf-49":{"renderedLength":1068,"gzipLength":422,"brotliLength":0,"mainUid":"ddcf-48"},"ddcf-51":{"renderedLength":1238,"gzipLength":443,"brotliLength":0,"mainUid":"ddcf-50"},"ddcf-53":{"renderedLength":3118,"gzipLength":1011,"brotliLength":0,"mainUid":"ddcf-52"},"ddcf-55":{"renderedLength":5100,"gzipLength":1424,"brotliLength":0,"mainUid":"ddcf-54"},"ddcf-57":{"renderedLength":1265,"gzipLength":498,"brotliLength":0,"mainUid":"ddcf-56"},"ddcf-59":{"renderedLength":1030,"gzipLength":396,"brotliLength":0,"mainUid":"ddcf-58"},"ddcf-61":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"ddcf-60"}},"nodeMetas":{"ddcf-0":{"id":"/packages/table-core/src/utils.ts","moduleParts":{"index.production.js":"ddcf-1"},"imported":[],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"},{"uid":"ddcf-2"},{"uid":"ddcf-4"},{"uid":"ddcf-38"},{"uid":"ddcf-6"},{"uid":"ddcf-8"},{"uid":"ddcf-12"},{"uid":"ddcf-16"},{"uid":"ddcf-18"},{"uid":"ddcf-20"},{"uid":"ddcf-22"},{"uid":"ddcf-24"},{"uid":"ddcf-28"},{"uid":"ddcf-30"},{"uid":"ddcf-40"},{"uid":"ddcf-44"},{"uid":"ddcf-46"},{"uid":"ddcf-48"},{"uid":"ddcf-50"},{"uid":"ddcf-52"},{"uid":"ddcf-54"},{"uid":"ddcf-56"},{"uid":"ddcf-58"}]},"ddcf-2":{"id":"/packages/table-core/src/core/column.ts","moduleParts":{"index.production.js":"ddcf-3"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-4":{"id":"/packages/table-core/src/core/headers.ts","moduleParts":{"index.production.js":"ddcf-5"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-6":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"ddcf-7"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-8":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"ddcf-9"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-10":{"id":"/packages/table-core/src/filterFns.ts","moduleParts":{"index.production.js":"ddcf-11"},"imported":[],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-12"}]},"ddcf-12":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"ddcf-13"},"imported":[{"uid":"ddcf-10"},{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-14":{"id":"/packages/table-core/src/aggregationFns.ts","moduleParts":{"index.production.js":"ddcf-15"},"imported":[],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-16"}]},"ddcf-16":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"ddcf-17"},"imported":[{"uid":"ddcf-14"},{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"},{"uid":"ddcf-18"}]},"ddcf-18":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"ddcf-19"},"imported":[{"uid":"ddcf-0"},{"uid":"ddcf-16"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-20":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"ddcf-21"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-22":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"ddcf-23"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-24":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"ddcf-25"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-26":{"id":"/packages/table-core/src/sortingFns.ts","moduleParts":{"index.production.js":"ddcf-27"},"imported":[],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-28"}]},"ddcf-28":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"ddcf-29"},"imported":[{"uid":"ddcf-26"},{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-30":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"ddcf-31"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-32"}]},"ddcf-32":{"id":"/packages/table-core/src/core/instance.ts","moduleParts":{"index.production.js":"ddcf-33"},"imported":[{"uid":"ddcf-0"},{"uid":"ddcf-2"},{"uid":"ddcf-4"},{"uid":"ddcf-6"},{"uid":"ddcf-8"},{"uid":"ddcf-12"},{"uid":"ddcf-16"},{"uid":"ddcf-18"},{"uid":"ddcf-20"},{"uid":"ddcf-22"},{"uid":"ddcf-24"},{"uid":"ddcf-28"},{"uid":"ddcf-30"}],"importedBy":[{"uid":"ddcf-60"}]},"ddcf-34":{"id":"/packages/table-core/src/createTable.ts","moduleParts":{"index.production.js":"ddcf-35"},"imported":[],"importedBy":[{"uid":"ddcf-60"}]},"ddcf-36":{"id":"/packages/table-core/src/core/cell.ts","moduleParts":{"index.production.js":"ddcf-37"},"imported":[],"importedBy":[{"uid":"ddcf-38"}]},"ddcf-38":{"id":"/packages/table-core/src/core/row.ts","moduleParts":{"index.production.js":"ddcf-39"},"imported":[{"uid":"ddcf-0"},{"uid":"ddcf-36"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-40"},{"uid":"ddcf-54"},{"uid":"ddcf-42"}]},"ddcf-40":{"id":"/packages/table-core/src/utils/getCoreRowModel.ts","moduleParts":{"index.production.js":"ddcf-41"},"imported":[{"uid":"ddcf-38"},{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"}]},"ddcf-42":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"ddcf-43"},"imported":[{"uid":"ddcf-38"}],"importedBy":[{"uid":"ddcf-44"},{"uid":"ddcf-46"}]},"ddcf-44":{"id":"/packages/table-core/src/utils/getFilteredRowModel.ts","moduleParts":{"index.production.js":"ddcf-45"},"imported":[{"uid":"ddcf-0"},{"uid":"ddcf-42"}],"importedBy":[{"uid":"ddcf-60"}]},"ddcf-46":{"id":"/packages/table-core/src/utils/getFacetedRowModel.ts","moduleParts":{"index.production.js":"ddcf-47"},"imported":[{"uid":"ddcf-0"},{"uid":"ddcf-42"}],"importedBy":[{"uid":"ddcf-60"}]},"ddcf-48":{"id":"/packages/table-core/src/utils/getFacetedUniqueValues.ts","moduleParts":{"index.production.js":"ddcf-49"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"}]},"ddcf-50":{"id":"/packages/table-core/src/utils/getFacetedMinMaxValues.ts","moduleParts":{"index.production.js":"ddcf-51"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"}]},"ddcf-52":{"id":"/packages/table-core/src/utils/getSortedRowModel.ts","moduleParts":{"index.production.js":"ddcf-53"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"}]},"ddcf-54":{"id":"/packages/table-core/src/utils/getGroupedRowModel.ts","moduleParts":{"index.production.js":"ddcf-55"},"imported":[{"uid":"ddcf-38"},{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"}]},"ddcf-56":{"id":"/packages/table-core/src/utils/getExpandedRowModel.ts","moduleParts":{"index.production.js":"ddcf-57"},"imported":[{"uid":"ddcf-0"}],"importedBy":[{"uid":"ddcf-60"},{"uid":"ddcf-58"}]},"ddcf-58":{"id":"/packages/table-core/src/utils/getPaginationRowModel.ts","moduleParts":{"index.production.js":"ddcf-59"},"imported":[{"uid":"ddcf-0"},{"uid":"ddcf-56"}],"importedBy":[{"uid":"ddcf-60"}]},"ddcf-60":{"id":"/packages/table-core/src/index.ts","moduleParts":{"index.production.js":"ddcf-61"},"imported":[{"uid":"ddcf-32"},{"uid":"ddcf-62"},{"uid":"ddcf-34"},{"uid":"ddcf-2"},{"uid":"ddcf-4"},{"uid":"ddcf-38"},{"uid":"ddcf-6"},{"uid":"ddcf-8"},{"uid":"ddcf-12"},{"uid":"ddcf-16"},{"uid":"ddcf-18"},{"uid":"ddcf-20"},{"uid":"ddcf-22"},{"uid":"ddcf-24"},{"uid":"ddcf-28"},{"uid":"ddcf-30"},{"uid":"ddcf-10"},{"uid":"ddcf-26"},{"uid":"ddcf-14"},{"uid":"ddcf-0"},{"uid":"ddcf-40"},{"uid":"ddcf-44"},{"uid":"ddcf-46"},{"uid":"ddcf-48"},{"uid":"ddcf-50"},{"uid":"ddcf-52"},{"uid":"ddcf-54"},{"uid":"ddcf-56"},{"uid":"ddcf-58"}],"importedBy":[],"isEntry":true},"ddcf-62":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"ddcf-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;
|