@tanstack/table-core 8.0.0-alpha.30 → 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.
- package/build/cjs/aggregationTypes.js +1 -0
- package/build/cjs/aggregationTypes.js.map +1 -1
- package/build/cjs/core.js +22 -78
- package/build/cjs/core.js.map +1 -1
- package/build/cjs/createTable.js.map +1 -1
- package/build/cjs/features/ColumnSizing.js.map +1 -1
- package/build/cjs/features/Expanding.js +12 -16
- package/build/cjs/features/Expanding.js.map +1 -1
- package/build/cjs/features/Filters.js +28 -81
- package/build/cjs/features/Filters.js.map +1 -1
- package/build/cjs/features/Grouping.js +10 -16
- package/build/cjs/features/Grouping.js.map +1 -1
- package/build/cjs/features/Headers.js.map +1 -1
- package/build/cjs/features/Ordering.js.map +1 -1
- package/build/cjs/features/Pagination.js +8 -13
- package/build/cjs/features/Pagination.js.map +1 -1
- package/build/cjs/features/Pinning.js.map +1 -1
- package/build/cjs/features/RowSelection.js.map +1 -1
- package/build/cjs/features/Sorting.js +10 -16
- package/build/cjs/features/Sorting.js.map +1 -1
- package/build/cjs/features/Visibility.js.map +1 -1
- package/build/cjs/filterTypes.js.map +1 -1
- package/build/cjs/index.js +19 -12
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/sortTypes.js.map +1 -1
- package/build/cjs/utils/filterRowsUtils.js.map +1 -1
- package/build/cjs/utils/getColumnFilteredRowModelSync.js +113 -0
- package/build/cjs/utils/getColumnFilteredRowModelSync.js.map +1 -0
- package/build/cjs/utils/getCoreRowModelAsync.js +125 -0
- package/build/cjs/utils/getCoreRowModelAsync.js.map +1 -0
- package/build/cjs/utils/getCoreRowModelSync.js +102 -0
- package/build/cjs/utils/getCoreRowModelSync.js.map +1 -0
- package/build/cjs/utils/getExpandedRowModel.js +61 -0
- package/build/cjs/utils/getExpandedRowModel.js.map +1 -0
- package/build/cjs/utils/getGlobalFilteredRowModelSync.js +89 -0
- package/build/cjs/utils/getGlobalFilteredRowModelSync.js.map +1 -0
- package/build/cjs/utils/getGroupedRowModel.js +174 -0
- package/build/cjs/utils/getGroupedRowModel.js.map +1 -0
- package/build/cjs/utils/getPaginationRowModel.js +61 -0
- package/build/cjs/utils/getPaginationRowModel.js.map +1 -0
- package/build/cjs/utils/getSortedRowModelSync.js +116 -0
- package/build/cjs/utils/getSortedRowModelSync.js.map +1 -0
- package/build/cjs/utils.js +155 -16
- package/build/cjs/utils.js.map +1 -1
- package/build/esm/index.js +841 -491
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +406 -298
- package/build/types/aggregationTypes.d.ts +1 -1
- package/build/types/core.d.ts +7 -1
- package/build/types/features/Expanding.d.ts +2 -1
- package/build/types/features/Filters.d.ts +6 -2
- package/build/types/features/Grouping.d.ts +3 -2
- package/build/types/features/Pagination.d.ts +2 -1
- package/build/types/features/Sorting.d.ts +2 -1
- package/build/types/index.d.ts +8 -6
- package/build/types/types.d.ts +2 -2
- package/build/types/utils/getColumnFilteredRowModelAsync.d.ts +4 -0
- package/build/types/utils/getColumnFilteredRowModelSync.d.ts +2 -0
- package/build/types/utils/getCoreRowModelAsync.d.ts +4 -0
- package/build/types/utils/getCoreRowModelSync.d.ts +2 -0
- package/build/types/utils/getExpandedRowModel.d.ts +7 -0
- package/build/types/utils/getGlobalFilteredRowModelAsync.d.ts +4 -0
- package/build/types/utils/getGlobalFilteredRowModelSync.d.ts +2 -0
- package/build/types/utils/getGroupedRowModel.d.ts +2 -0
- package/build/types/utils/getPaginationRowModel.d.ts +4 -0
- package/build/types/utils/{sortRowsQuicksortFn.d.ts → getSortedRowModelAsync.d.ts} +3 -1
- package/build/types/utils/getSortedRowModelSync.d.ts +2 -0
- package/build/types/utils.d.ts +16 -0
- package/build/umd/index.development.js +851 -496
- 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/aggregationTypes.ts +1 -1
- package/src/core.tsx +33 -97
- package/src/features/Expanding.ts +19 -27
- package/src/features/Filters.ts +52 -99
- package/src/features/Grouping.ts +19 -21
- package/src/features/Pagination.ts +17 -20
- package/src/features/Sorting.ts +19 -23
- package/src/index.tsx +8 -6
- package/src/types.ts +3 -1
- package/src/utils/getColumnFilteredRowModelAsync.ts +117 -0
- package/src/utils/getColumnFilteredRowModelSync.ts +97 -0
- package/src/utils/getCoreRowModelAsync.ts +103 -0
- package/src/utils/getCoreRowModelSync.ts +105 -0
- package/src/utils/getExpandedRowModel.ts +58 -0
- package/src/utils/getGlobalFilteredRowModelAsync.ts +95 -0
- package/src/utils/getGlobalFilteredRowModelSync.ts +74 -0
- package/src/utils/getGroupedRowModel.ts +187 -0
- package/src/utils/getPaginationRowModel.ts +45 -0
- package/src/utils/getSortedRowModelAsync.ts +199 -0
- package/src/utils/getSortedRowModelSync.ts +116 -0
- package/src/utils.tsx +189 -16
- package/build/cjs/utils/columnFilterRowsFn.js +0 -73
- package/build/cjs/utils/columnFilterRowsFn.js.map +0 -1
- package/build/cjs/utils/expandRowsFn.js +0 -37
- package/build/cjs/utils/expandRowsFn.js.map +0 -1
- package/build/cjs/utils/globalFilterRowsFn.js +0 -49
- package/build/cjs/utils/globalFilterRowsFn.js.map +0 -1
- package/build/cjs/utils/groupRowsFn.js +0 -155
- package/build/cjs/utils/groupRowsFn.js.map +0 -1
- package/build/cjs/utils/paginateRowsFn.js +0 -44
- package/build/cjs/utils/paginateRowsFn.js.map +0 -1
- package/build/cjs/utils/sortRowsFn.js +0 -94
- package/build/cjs/utils/sortRowsFn.js.map +0 -1
- package/build/types/utils/columnFilterRowsFn.d.ts +0 -2
- package/build/types/utils/expandRowsFn.d.ts +0 -2
- package/build/types/utils/globalFilterRowsFn.d.ts +0 -2
- package/build/types/utils/groupRowsFn.d.ts +0 -2
- package/build/types/utils/paginateRowsFn.d.ts +0 -2
- package/build/types/utils/sortRowsFn.d.ts +0 -2
- package/src/utils/columnFilterRowsFn.ts +0 -56
- package/src/utils/expandRowsFn.ts +0 -34
- package/src/utils/globalFilterRowsFn.ts +0 -39
- package/src/utils/groupRowsFn.ts +0 -174
- package/src/utils/paginateRowsFn.ts +0 -28
- package/src/utils/sortRowsFn.ts +0 -99
- package/src/utils/sortRowsQuicksortFn.ts +0 -174
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":"134a-1","name":"\u0000rollupPluginBabelHelpers.js"},{"name":"packages/table-core/src","children":[{"uid":"134a-3","name":"utils.tsx"},{"name":"features","children":[{"uid":"134a-5","name":"ColumnSizing.ts"},{"uid":"134a-7","name":"Expanding.ts"},{"uid":"134a-11","name":"Filters.ts"},{"uid":"134a-15","name":"Grouping.ts"},{"uid":"134a-17","name":"Ordering.ts"},{"uid":"134a-19","name":"Pagination.ts"},{"uid":"134a-21","name":"Pinning.ts"},{"uid":"134a-23","name":"RowSelection.ts"},{"uid":"134a-27","name":"Sorting.ts"},{"uid":"134a-29","name":"Visibility.ts"},{"uid":"134a-31","name":"Headers.ts"}]},{"uid":"134a-9","name":"filterTypes.ts"},{"uid":"134a-13","name":"aggregationTypes.ts"},{"uid":"134a-25","name":"sortTypes.ts"},{"uid":"134a-33","name":"core.tsx"},{"uid":"134a-35","name":"createTable.tsx"},{"name":"utils","children":[{"uid":"134a-37","name":"filterRowsUtils.ts"},{"uid":"134a-39","name":"columnFilterRowsFn.ts"},{"uid":"134a-41","name":"globalFilterRowsFn.ts"},{"uid":"134a-43","name":"sortRowsFn.ts"},{"uid":"134a-45","name":"groupRowsFn.ts"},{"uid":"134a-47","name":"expandRowsFn.ts"},{"uid":"134a-49","name":"paginateRowsFn.ts"}]},{"uid":"134a-51","name":"index.tsx"}]}]}],"isRoot":true},"nodeParts":{"134a-1":{"renderedLength":2695,"gzipLength":1065,"brotliLength":0,"mainUid":"134a-0"},"134a-3":{"renderedLength":3878,"gzipLength":1354,"brotliLength":0,"mainUid":"134a-2"},"134a-5":{"renderedLength":11667,"gzipLength":2272,"brotliLength":0,"mainUid":"134a-4"},"134a-7":{"renderedLength":7769,"gzipLength":1701,"brotliLength":0,"mainUid":"134a-6"},"134a-9":{"renderedLength":4437,"gzipLength":786,"brotliLength":0,"mainUid":"134a-8"},"134a-11":{"renderedLength":16529,"gzipLength":2897,"brotliLength":0,"mainUid":"134a-10"},"134a-13":{"renderedLength":2674,"gzipLength":773,"brotliLength":0,"mainUid":"134a-12"},"134a-15":{"renderedLength":8356,"gzipLength":1802,"brotliLength":0,"mainUid":"134a-14"},"134a-17":{"renderedLength":2639,"gzipLength":799,"brotliLength":0,"mainUid":"134a-16"},"134a-19":{"renderedLength":6200,"gzipLength":1261,"brotliLength":0,"mainUid":"134a-18"},"134a-21":{"renderedLength":5842,"gzipLength":1084,"brotliLength":0,"mainUid":"134a-20"},"134a-23":{"renderedLength":18035,"gzipLength":3049,"brotliLength":0,"mainUid":"134a-22"},"134a-25":{"renderedLength":2752,"gzipLength":846,"brotliLength":0,"mainUid":"134a-24"},"134a-27":{"renderedLength":12121,"gzipLength":2593,"brotliLength":0,"mainUid":"134a-26"},"134a-29":{"renderedLength":6367,"gzipLength":1219,"brotliLength":0,"mainUid":"134a-28"},"134a-31":{"renderedLength":23655,"gzipLength":3372,"brotliLength":0,"mainUid":"134a-30"},"134a-33":{"renderedLength":17596,"gzipLength":3408,"brotliLength":0,"mainUid":"134a-32"},"134a-35":{"renderedLength":1613,"gzipLength":444,"brotliLength":0,"mainUid":"134a-34"},"134a-37":{"renderedLength":2457,"gzipLength":568,"brotliLength":0,"mainUid":"134a-36"},"134a-39":{"renderedLength":1362,"gzipLength":472,"brotliLength":0,"mainUid":"134a-38"},"134a-41":{"renderedLength":807,"gzipLength":291,"brotliLength":0,"mainUid":"134a-40"},"134a-43":{"renderedLength":2482,"gzipLength":823,"brotliLength":0,"mainUid":"134a-42"},"134a-45":{"renderedLength":4752,"gzipLength":1344,"brotliLength":0,"mainUid":"134a-44"},"134a-47":{"renderedLength":556,"gzipLength":265,"brotliLength":0,"mainUid":"134a-46"},"134a-49":{"renderedLength":720,"gzipLength":281,"brotliLength":0,"mainUid":"134a-48"},"134a-51":{"renderedLength":0,"gzipLength":0,"brotliLength":0,"mainUid":"134a-50"}},"nodeMetas":{"134a-0":{"id":"\u0000rollupPluginBabelHelpers.js","moduleParts":{"index.production.js":"134a-1"},"imported":[],"importedBy":[{"uid":"134a-32"},{"uid":"134a-34"},{"uid":"134a-4"},{"uid":"134a-6"},{"uid":"134a-18"},{"uid":"134a-22"},{"uid":"134a-26"},{"uid":"134a-28"},{"uid":"134a-2"},{"uid":"134a-12"}]},"134a-2":{"id":"/packages/table-core/src/utils.tsx","moduleParts":{"index.production.js":"134a-3"},"imported":[{"uid":"134a-0"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"},{"uid":"134a-4"},{"uid":"134a-6"},{"uid":"134a-10"},{"uid":"134a-14"},{"uid":"134a-30"},{"uid":"134a-16"},{"uid":"134a-18"},{"uid":"134a-20"},{"uid":"134a-22"},{"uid":"134a-26"},{"uid":"134a-28"},{"uid":"134a-44"}]},"134a-4":{"id":"/packages/table-core/src/features/ColumnSizing.ts","moduleParts":{"index.production.js":"134a-5"},"imported":[{"uid":"134a-0"},{"uid":"134a-2"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"},{"uid":"134a-30"}]},"134a-6":{"id":"/packages/table-core/src/features/Expanding.ts","moduleParts":{"index.production.js":"134a-7"},"imported":[{"uid":"134a-0"},{"uid":"134a-2"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"}]},"134a-8":{"id":"/packages/table-core/src/filterTypes.ts","moduleParts":{"index.production.js":"134a-9"},"imported":[],"importedBy":[{"uid":"134a-10"}]},"134a-10":{"id":"/packages/table-core/src/features/Filters.ts","moduleParts":{"index.production.js":"134a-11"},"imported":[{"uid":"134a-8"},{"uid":"134a-2"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"}]},"134a-12":{"id":"/packages/table-core/src/aggregationTypes.ts","moduleParts":{"index.production.js":"134a-13"},"imported":[{"uid":"134a-0"}],"importedBy":[{"uid":"134a-14"}]},"134a-14":{"id":"/packages/table-core/src/features/Grouping.ts","moduleParts":{"index.production.js":"134a-15"},"imported":[{"uid":"134a-12"},{"uid":"134a-2"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"},{"uid":"134a-16"}]},"134a-16":{"id":"/packages/table-core/src/features/Ordering.ts","moduleParts":{"index.production.js":"134a-17"},"imported":[{"uid":"134a-2"},{"uid":"134a-14"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"}]},"134a-18":{"id":"/packages/table-core/src/features/Pagination.ts","moduleParts":{"index.production.js":"134a-19"},"imported":[{"uid":"134a-0"},{"uid":"134a-2"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"}]},"134a-20":{"id":"/packages/table-core/src/features/Pinning.ts","moduleParts":{"index.production.js":"134a-21"},"imported":[{"uid":"134a-2"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"}]},"134a-22":{"id":"/packages/table-core/src/features/RowSelection.ts","moduleParts":{"index.production.js":"134a-23"},"imported":[{"uid":"134a-0"},{"uid":"134a-2"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"}]},"134a-24":{"id":"/packages/table-core/src/sortTypes.ts","moduleParts":{"index.production.js":"134a-25"},"imported":[],"importedBy":[{"uid":"134a-26"}]},"134a-26":{"id":"/packages/table-core/src/features/Sorting.ts","moduleParts":{"index.production.js":"134a-27"},"imported":[{"uid":"134a-0"},{"uid":"134a-24"},{"uid":"134a-2"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"}]},"134a-28":{"id":"/packages/table-core/src/features/Visibility.ts","moduleParts":{"index.production.js":"134a-29"},"imported":[{"uid":"134a-0"},{"uid":"134a-2"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"}]},"134a-30":{"id":"/packages/table-core/src/features/Headers.ts","moduleParts":{"index.production.js":"134a-31"},"imported":[{"uid":"134a-2"},{"uid":"134a-4"}],"importedBy":[{"uid":"134a-50"},{"uid":"134a-32"}]},"134a-32":{"id":"/packages/table-core/src/core.tsx","moduleParts":{"index.production.js":"134a-33"},"imported":[{"uid":"134a-0"},{"uid":"134a-2"},{"uid":"134a-4"},{"uid":"134a-6"},{"uid":"134a-10"},{"uid":"134a-14"},{"uid":"134a-16"},{"uid":"134a-18"},{"uid":"134a-20"},{"uid":"134a-22"},{"uid":"134a-26"},{"uid":"134a-28"},{"uid":"134a-30"}],"importedBy":[{"uid":"134a-50"}]},"134a-34":{"id":"/packages/table-core/src/createTable.tsx","moduleParts":{"index.production.js":"134a-35"},"imported":[{"uid":"134a-0"}],"importedBy":[{"uid":"134a-50"}]},"134a-36":{"id":"/packages/table-core/src/utils/filterRowsUtils.ts","moduleParts":{"index.production.js":"134a-37"},"imported":[],"importedBy":[{"uid":"134a-38"},{"uid":"134a-40"}]},"134a-38":{"id":"/packages/table-core/src/utils/columnFilterRowsFn.ts","moduleParts":{"index.production.js":"134a-39"},"imported":[{"uid":"134a-36"}],"importedBy":[{"uid":"134a-50"}]},"134a-40":{"id":"/packages/table-core/src/utils/globalFilterRowsFn.ts","moduleParts":{"index.production.js":"134a-41"},"imported":[{"uid":"134a-36"}],"importedBy":[{"uid":"134a-50"}]},"134a-42":{"id":"/packages/table-core/src/utils/sortRowsFn.ts","moduleParts":{"index.production.js":"134a-43"},"imported":[],"importedBy":[{"uid":"134a-50"}]},"134a-44":{"id":"/packages/table-core/src/utils/groupRowsFn.ts","moduleParts":{"index.production.js":"134a-45"},"imported":[{"uid":"134a-2"}],"importedBy":[{"uid":"134a-50"}]},"134a-46":{"id":"/packages/table-core/src/utils/expandRowsFn.ts","moduleParts":{"index.production.js":"134a-47"},"imported":[],"importedBy":[{"uid":"134a-50"},{"uid":"134a-48"}]},"134a-48":{"id":"/packages/table-core/src/utils/paginateRowsFn.ts","moduleParts":{"index.production.js":"134a-49"},"imported":[{"uid":"134a-46"}],"importedBy":[{"uid":"134a-50"}]},"134a-50":{"id":"/packages/table-core/src/index.tsx","moduleParts":{"index.production.js":"134a-51"},"imported":[{"uid":"134a-32"},{"uid":"134a-52"},{"uid":"134a-34"},{"uid":"134a-4"},{"uid":"134a-6"},{"uid":"134a-10"},{"uid":"134a-14"},{"uid":"134a-30"},{"uid":"134a-16"},{"uid":"134a-18"},{"uid":"134a-20"},{"uid":"134a-22"},{"uid":"134a-26"},{"uid":"134a-28"},{"uid":"134a-2"},{"uid":"134a-38"},{"uid":"134a-40"},{"uid":"134a-42"},{"uid":"134a-44"},{"uid":"134a-46"},{"uid":"134a-48"}],"importedBy":[],"isEntry":true},"134a-52":{"id":"/packages/table-core/src/types.ts","moduleParts":{},"imported":[],"importedBy":[{"uid":"134a-50"}]}},"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;
|