@tanstack/svelte-table 8.0.0-beta.7 → 8.0.3
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/svelte-table/src/index.js.map +1 -1
- package/build/cjs/svelte-table/src/render-component.js.map +1 -1
- package/build/cjs/table-core/build/esm/index.js +41 -42
- package/build/cjs/table-core/build/esm/index.js.map +1 -1
- package/build/esm/index.js +41 -42
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/umd/index.development.js +41 -42
- 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 +2 -2
- package/build/stats-react.json +0 -205
- package/build/types/index.d.ts +0 -11
- package/build/types/placeholder.d.ts +0 -3
- package/build/types/render-component.d.ts +0 -3
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","children":[{"name":"table-core/build/esm/index.js","uid":"
|
|
2672
|
+
const data = {"version":2,"tree":{"name":"root","children":[{"name":"index.production.js","children":[{"name":"packages","children":[{"name":"table-core/build/esm/index.js","uid":"6785-163"},{"name":"svelte-table/src","children":[{"uid":"6785-165","name":"placeholder.svelte"},{"uid":"6785-167","name":"placeholder.ts"},{"uid":"6785-169","name":"render-component.ts"},{"uid":"6785-171","name":"index.ts"}]}]}]}],"isRoot":true},"nodeParts":{"6785-163":{"renderedLength":139119,"gzipLength":23690,"brotliLength":0,"mainUid":"6785-162"},"6785-165":{"renderedLength":927,"gzipLength":445,"brotliLength":0,"mainUid":"6785-164"},"6785-167":{"renderedLength":246,"gzipLength":184,"brotliLength":0,"mainUid":"6785-166"},"6785-169":{"renderedLength":1458,"gzipLength":539,"brotliLength":0,"mainUid":"6785-168"},"6785-171":{"renderedLength":3046,"gzipLength":993,"brotliLength":0,"mainUid":"6785-170"}},"nodeMetas":{"6785-162":{"id":"/packages/table-core/build/esm/index.js","moduleParts":{"index.production.js":"6785-163"},"imported":[],"importedBy":[{"uid":"6785-170"}]},"6785-164":{"id":"/packages/svelte-table/src/placeholder.svelte","moduleParts":{"index.production.js":"6785-165"},"imported":[{"uid":"6785-172"}],"importedBy":[{"uid":"6785-166"}]},"6785-166":{"id":"/packages/svelte-table/src/placeholder.ts","moduleParts":{"index.production.js":"6785-167"},"imported":[{"uid":"6785-172"},{"uid":"6785-164"}],"importedBy":[{"uid":"6785-170"}]},"6785-168":{"id":"/packages/svelte-table/src/render-component.ts","moduleParts":{"index.production.js":"6785-169"},"imported":[{"uid":"6785-172"}],"importedBy":[{"uid":"6785-170"}]},"6785-170":{"id":"/packages/svelte-table/src/index.ts","moduleParts":{"index.production.js":"6785-171"},"imported":[{"uid":"6785-162"},{"uid":"6785-166"},{"uid":"6785-172"},{"uid":"6785-173"},{"uid":"6785-168"}],"importedBy":[],"isEntry":true},"6785-172":{"id":"svelte/internal","moduleParts":{},"imported":[],"importedBy":[{"uid":"6785-170"},{"uid":"6785-166"},{"uid":"6785-168"},{"uid":"6785-164"}],"isExternal":true},"6785-173":{"id":"svelte/store","moduleParts":{},"imported":[],"importedBy":[{"uid":"6785-170"}],"isExternal":true}},"env":{"rollup":"2.75.7"},"options":{"gzip":true,"brotli":false,"sourcemap":false}};
|
|
2673
2673
|
|
|
2674
2674
|
const run = () => {
|
|
2675
2675
|
const width = window.innerWidth;
|
|
@@ -983,38 +983,54 @@
|
|
|
983
983
|
};
|
|
984
984
|
|
|
985
985
|
const includesString = (row, columnId, filterValue) => {
|
|
986
|
+
var _row$getValue;
|
|
987
|
+
|
|
986
988
|
const search = filterValue.toLowerCase();
|
|
987
|
-
return row.getValue(columnId).toLowerCase().includes(search);
|
|
989
|
+
return (_row$getValue = row.getValue(columnId)) == null ? void 0 : _row$getValue.toLowerCase().includes(search);
|
|
988
990
|
};
|
|
989
991
|
|
|
990
992
|
includesString.autoRemove = val => testFalsey(val);
|
|
991
993
|
|
|
992
994
|
const includesStringSensitive = (row, columnId, filterValue) => {
|
|
993
|
-
|
|
995
|
+
var _row$getValue2;
|
|
996
|
+
|
|
997
|
+
return (_row$getValue2 = row.getValue(columnId)) == null ? void 0 : _row$getValue2.includes(filterValue);
|
|
994
998
|
};
|
|
995
999
|
|
|
996
1000
|
includesStringSensitive.autoRemove = val => testFalsey(val);
|
|
997
1001
|
|
|
998
1002
|
const equalsString = (row, columnId, filterValue) => {
|
|
999
|
-
|
|
1003
|
+
var _row$getValue3;
|
|
1004
|
+
|
|
1005
|
+
return ((_row$getValue3 = row.getValue(columnId)) == null ? void 0 : _row$getValue3.toLowerCase()) === filterValue.toLowerCase();
|
|
1000
1006
|
};
|
|
1001
1007
|
|
|
1002
1008
|
equalsString.autoRemove = val => testFalsey(val);
|
|
1003
1009
|
|
|
1004
1010
|
const arrIncludes = (row, columnId, filterValue) => {
|
|
1005
|
-
|
|
1011
|
+
var _row$getValue4;
|
|
1012
|
+
|
|
1013
|
+
return (_row$getValue4 = row.getValue(columnId)) == null ? void 0 : _row$getValue4.includes(filterValue);
|
|
1006
1014
|
};
|
|
1007
1015
|
|
|
1008
1016
|
arrIncludes.autoRemove = val => testFalsey(val) || !(val != null && val.length);
|
|
1009
1017
|
|
|
1010
1018
|
const arrIncludesAll = (row, columnId, filterValue) => {
|
|
1011
|
-
return !filterValue.some(val =>
|
|
1019
|
+
return !filterValue.some(val => {
|
|
1020
|
+
var _row$getValue5;
|
|
1021
|
+
|
|
1022
|
+
return !((_row$getValue5 = row.getValue(columnId)) != null && _row$getValue5.includes(val));
|
|
1023
|
+
});
|
|
1012
1024
|
};
|
|
1013
1025
|
|
|
1014
1026
|
arrIncludesAll.autoRemove = val => testFalsey(val) || !(val != null && val.length);
|
|
1015
1027
|
|
|
1016
1028
|
const arrIncludesSome = (row, columnId, filterValue) => {
|
|
1017
|
-
return filterValue.some(val =>
|
|
1029
|
+
return filterValue.some(val => {
|
|
1030
|
+
var _row$getValue6;
|
|
1031
|
+
|
|
1032
|
+
return (_row$getValue6 = row.getValue(columnId)) == null ? void 0 : _row$getValue6.includes(val);
|
|
1033
|
+
});
|
|
1018
1034
|
};
|
|
1019
1035
|
|
|
1020
1036
|
arrIncludesSome.autoRemove = val => testFalsey(val) || !(val != null && val.length);
|
|
@@ -1319,7 +1335,10 @@
|
|
|
1319
1335
|
const sum = (columnId, _leafRows, childRows) => {
|
|
1320
1336
|
// It's faster to just add the aggregations together instead of
|
|
1321
1337
|
// process leaf nodes individually
|
|
1322
|
-
return childRows.reduce((sum, next) =>
|
|
1338
|
+
return childRows.reduce((sum, next) => {
|
|
1339
|
+
const nextValue = next.getValue(columnId);
|
|
1340
|
+
return sum + (typeof nextValue === 'number' ? nextValue : 0);
|
|
1341
|
+
}, 0);
|
|
1323
1342
|
};
|
|
1324
1343
|
|
|
1325
1344
|
const min = (columnId, _leafRows, childRows) => {
|
|
@@ -1699,7 +1718,7 @@
|
|
|
1699
1718
|
setPageIndex: updater => {
|
|
1700
1719
|
instance.setPagination(old => {
|
|
1701
1720
|
let pageIndex = functionalUpdate(updater, old.pageIndex);
|
|
1702
|
-
const maxPageIndex = typeof
|
|
1721
|
+
const maxPageIndex = typeof instance.options.pageCount === 'undefined' || instance.options.pageCount === -1 ? Number.MAX_SAFE_INTEGER : instance.options.pageCount - 1;
|
|
1703
1722
|
pageIndex = Math.min(Math.max(0, pageIndex), maxPageIndex);
|
|
1704
1723
|
return { ...old,
|
|
1705
1724
|
pageIndex
|
|
@@ -1728,9 +1747,9 @@
|
|
|
1728
1747
|
});
|
|
1729
1748
|
},
|
|
1730
1749
|
setPageCount: updater => instance.setPagination(old => {
|
|
1731
|
-
var
|
|
1750
|
+
var _instance$options$pag;
|
|
1732
1751
|
|
|
1733
|
-
let newPageCount = functionalUpdate(updater, (
|
|
1752
|
+
let newPageCount = functionalUpdate(updater, (_instance$options$pag = instance.options.pageCount) != null ? _instance$options$pag : -1);
|
|
1734
1753
|
|
|
1735
1754
|
if (typeof newPageCount === 'number') {
|
|
1736
1755
|
newPageCount = Math.max(-1, newPageCount);
|
|
@@ -1740,7 +1759,7 @@
|
|
|
1740
1759
|
pageCount: newPageCount
|
|
1741
1760
|
};
|
|
1742
1761
|
}),
|
|
1743
|
-
getPageOptions: memo(() => [instance.
|
|
1762
|
+
getPageOptions: memo(() => [instance.getPageCount()], pageCount => {
|
|
1744
1763
|
let pageOptions = [];
|
|
1745
1764
|
|
|
1746
1765
|
if (pageCount && pageCount > 0) {
|
|
@@ -1794,15 +1813,9 @@
|
|
|
1794
1813
|
return instance._getPaginationRowModel();
|
|
1795
1814
|
},
|
|
1796
1815
|
getPageCount: () => {
|
|
1797
|
-
|
|
1798
|
-
pageCount
|
|
1799
|
-
} = instance.getState().pagination;
|
|
1816
|
+
var _instance$options$pag2;
|
|
1800
1817
|
|
|
1801
|
-
|
|
1802
|
-
return pageCount;
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
return Math.ceil(instance.getPrePaginationRowModel().rows.length / instance.getState().pagination.pageSize);
|
|
1818
|
+
return (_instance$options$pag2 = instance.options.pageCount) != null ? _instance$options$pag2 : Math.ceil(instance.getPrePaginationRowModel().rows.length / instance.getState().pagination.pageSize);
|
|
1806
1819
|
}
|
|
1807
1820
|
};
|
|
1808
1821
|
}
|
|
@@ -2298,9 +2311,6 @@
|
|
|
2298
2311
|
const newSelectedRowsById = {}; // Filters top level and nested rows
|
|
2299
2312
|
|
|
2300
2313
|
const recurseRows = function (rows, depth) {
|
|
2301
|
-
if (depth === void 0) {
|
|
2302
|
-
depth = 0;
|
|
2303
|
-
}
|
|
2304
2314
|
|
|
2305
2315
|
return rows.map(row => {
|
|
2306
2316
|
var _row$subRows2;
|
|
@@ -2314,7 +2324,7 @@
|
|
|
2314
2324
|
|
|
2315
2325
|
if ((_row$subRows2 = row.subRows) != null && _row$subRows2.length) {
|
|
2316
2326
|
row = { ...row,
|
|
2317
|
-
subRows: recurseRows(row.subRows
|
|
2327
|
+
subRows: recurseRows(row.subRows)
|
|
2318
2328
|
};
|
|
2319
2329
|
}
|
|
2320
2330
|
|
|
@@ -3235,25 +3245,20 @@
|
|
|
3235
3245
|
function filterRowModelFromLeafs(rowsToFilter, filterRow, instance) {
|
|
3236
3246
|
const newFilteredFlatRows = [];
|
|
3237
3247
|
const newFilteredRowsById = {};
|
|
3238
|
-
let row;
|
|
3239
|
-
let newRow;
|
|
3240
3248
|
|
|
3241
3249
|
const recurseFilterRows = function (rowsToFilter, depth) {
|
|
3242
|
-
if (depth === void 0) {
|
|
3243
|
-
depth = 0;
|
|
3244
|
-
}
|
|
3245
3250
|
|
|
3246
3251
|
const rows = []; // Filter from children up first
|
|
3247
3252
|
|
|
3248
3253
|
for (let i = 0; i < rowsToFilter.length; i++) {
|
|
3249
3254
|
var _row$subRows;
|
|
3250
3255
|
|
|
3251
|
-
row = rowsToFilter[i];
|
|
3256
|
+
let row = rowsToFilter[i];
|
|
3252
3257
|
|
|
3253
3258
|
if ((_row$subRows = row.subRows) != null && _row$subRows.length) {
|
|
3254
|
-
newRow = createRow(instance, row.id, row.original, row.index, row.depth);
|
|
3259
|
+
const newRow = createRow(instance, row.id, row.original, row.index, row.depth);
|
|
3255
3260
|
newRow.columnFilters = row.columnFilters;
|
|
3256
|
-
newRow.subRows = recurseFilterRows(row.subRows
|
|
3261
|
+
newRow.subRows = recurseFilterRows(row.subRows);
|
|
3257
3262
|
|
|
3258
3263
|
if (!newRow.subRows.length) {
|
|
3259
3264
|
continue;
|
|
@@ -3280,29 +3285,23 @@
|
|
|
3280
3285
|
}
|
|
3281
3286
|
function filterRowModelFromRoot(rowsToFilter, filterRow, instance) {
|
|
3282
3287
|
const newFilteredFlatRows = [];
|
|
3283
|
-
const newFilteredRowsById = {};
|
|
3284
|
-
let rows;
|
|
3285
|
-
let row;
|
|
3286
|
-
let newRow; // Filters top level and nested rows
|
|
3288
|
+
const newFilteredRowsById = {}; // Filters top level and nested rows
|
|
3287
3289
|
|
|
3288
3290
|
const recurseFilterRows = function (rowsToFilter, depth) {
|
|
3289
|
-
if (depth === void 0) {
|
|
3290
|
-
depth = 0;
|
|
3291
|
-
}
|
|
3292
3291
|
|
|
3293
3292
|
// Filter from parents downward first
|
|
3294
|
-
rows = []; // Apply the filter to any subRows
|
|
3293
|
+
const rows = []; // Apply the filter to any subRows
|
|
3295
3294
|
|
|
3296
3295
|
for (let i = 0; i < rowsToFilter.length; i++) {
|
|
3297
|
-
row = rowsToFilter[i];
|
|
3296
|
+
let row = rowsToFilter[i];
|
|
3298
3297
|
const pass = filterRow(row);
|
|
3299
3298
|
|
|
3300
3299
|
if (pass) {
|
|
3301
3300
|
var _row$subRows2;
|
|
3302
3301
|
|
|
3303
3302
|
if ((_row$subRows2 = row.subRows) != null && _row$subRows2.length) {
|
|
3304
|
-
newRow = createRow(instance, row.id, row.original, row.index, row.depth);
|
|
3305
|
-
newRow.subRows = recurseFilterRows(row.subRows
|
|
3303
|
+
const newRow = createRow(instance, row.id, row.original, row.index, row.depth);
|
|
3304
|
+
newRow.subRows = recurseFilterRows(row.subRows);
|
|
3306
3305
|
row = newRow;
|
|
3307
3306
|
}
|
|
3308
3307
|
|