@tanstack/react-table 8.0.0-beta.6 → 8.0.0-beta.9
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/table-core/build/esm/index.js +35 -30
- package/build/cjs/table-core/build/esm/index.js.map +1 -1
- package/build/esm/index.js +35 -30
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +17 -17
- package/build/umd/index.development.js +35 -30
- 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
|
@@ -983,38 +983,54 @@ const Expanding = {
|
|
|
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);
|
|
@@ -1544,7 +1560,7 @@ const Grouping = {
|
|
|
1544
1560
|
getIsAggregated: () => {
|
|
1545
1561
|
var _row$subRows;
|
|
1546
1562
|
|
|
1547
|
-
return !cell.getIsGrouped() && !cell.getIsPlaceholder() && ((_row$subRows = row.subRows)
|
|
1563
|
+
return !cell.getIsGrouped() && !cell.getIsPlaceholder() && !!((_row$subRows = row.subRows) != null && _row$subRows.length);
|
|
1548
1564
|
},
|
|
1549
1565
|
renderAggregatedCell: () => {
|
|
1550
1566
|
if (process.env.NODE_ENV === 'development') {
|
|
@@ -1699,7 +1715,7 @@ const Pagination = {
|
|
|
1699
1715
|
setPageIndex: updater => {
|
|
1700
1716
|
instance.setPagination(old => {
|
|
1701
1717
|
let pageIndex = functionalUpdate(updater, old.pageIndex);
|
|
1702
|
-
const maxPageIndex = typeof
|
|
1718
|
+
const maxPageIndex = typeof instance.options.pageCount === 'undefined' || instance.options.pageCount === -1 ? Number.MAX_SAFE_INTEGER : instance.options.pageCount - 1;
|
|
1703
1719
|
pageIndex = Math.min(Math.max(0, pageIndex), maxPageIndex);
|
|
1704
1720
|
return { ...old,
|
|
1705
1721
|
pageIndex
|
|
@@ -1728,9 +1744,9 @@ const Pagination = {
|
|
|
1728
1744
|
});
|
|
1729
1745
|
},
|
|
1730
1746
|
setPageCount: updater => instance.setPagination(old => {
|
|
1731
|
-
var
|
|
1747
|
+
var _instance$options$pag;
|
|
1732
1748
|
|
|
1733
|
-
let newPageCount = functionalUpdate(updater, (
|
|
1749
|
+
let newPageCount = functionalUpdate(updater, (_instance$options$pag = instance.options.pageCount) != null ? _instance$options$pag : -1);
|
|
1734
1750
|
|
|
1735
1751
|
if (typeof newPageCount === 'number') {
|
|
1736
1752
|
newPageCount = Math.max(-1, newPageCount);
|
|
@@ -1740,7 +1756,7 @@ const Pagination = {
|
|
|
1740
1756
|
pageCount: newPageCount
|
|
1741
1757
|
};
|
|
1742
1758
|
}),
|
|
1743
|
-
getPageOptions: memo(() => [instance.
|
|
1759
|
+
getPageOptions: memo(() => [instance.getPageCount()], pageCount => {
|
|
1744
1760
|
let pageOptions = [];
|
|
1745
1761
|
|
|
1746
1762
|
if (pageCount && pageCount > 0) {
|
|
@@ -1794,15 +1810,9 @@ const Pagination = {
|
|
|
1794
1810
|
return instance._getPaginationRowModel();
|
|
1795
1811
|
},
|
|
1796
1812
|
getPageCount: () => {
|
|
1797
|
-
|
|
1798
|
-
pageCount
|
|
1799
|
-
} = instance.getState().pagination;
|
|
1813
|
+
var _instance$options$pag2;
|
|
1800
1814
|
|
|
1801
|
-
|
|
1802
|
-
return pageCount;
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
return Math.ceil(instance.getPrePaginationRowModel().rows.length / instance.getState().pagination.pageSize);
|
|
1815
|
+
return (_instance$options$pag2 = instance.options.pageCount) != null ? _instance$options$pag2 : Math.ceil(instance.getPrePaginationRowModel().rows.length / instance.getState().pagination.pageSize);
|
|
1806
1816
|
}
|
|
1807
1817
|
};
|
|
1808
1818
|
}
|
|
@@ -3237,8 +3247,6 @@ function filterRows(rows, filterRowImpl, instance) {
|
|
|
3237
3247
|
function filterRowModelFromLeafs(rowsToFilter, filterRow, instance) {
|
|
3238
3248
|
const newFilteredFlatRows = [];
|
|
3239
3249
|
const newFilteredRowsById = {};
|
|
3240
|
-
let row;
|
|
3241
|
-
let newRow;
|
|
3242
3250
|
|
|
3243
3251
|
const recurseFilterRows = function (rowsToFilter, depth) {
|
|
3244
3252
|
if (depth === void 0) {
|
|
@@ -3250,10 +3258,10 @@ function filterRowModelFromLeafs(rowsToFilter, filterRow, instance) {
|
|
|
3250
3258
|
for (let i = 0; i < rowsToFilter.length; i++) {
|
|
3251
3259
|
var _row$subRows;
|
|
3252
3260
|
|
|
3253
|
-
row = rowsToFilter[i];
|
|
3261
|
+
let row = rowsToFilter[i];
|
|
3254
3262
|
|
|
3255
3263
|
if ((_row$subRows = row.subRows) != null && _row$subRows.length) {
|
|
3256
|
-
newRow = createRow(instance, row.id, row.original, row.index, row.depth);
|
|
3264
|
+
const newRow = createRow(instance, row.id, row.original, row.index, row.depth);
|
|
3257
3265
|
newRow.columnFilters = row.columnFilters;
|
|
3258
3266
|
newRow.subRows = recurseFilterRows(row.subRows, depth + 1);
|
|
3259
3267
|
|
|
@@ -3282,10 +3290,7 @@ function filterRowModelFromLeafs(rowsToFilter, filterRow, instance) {
|
|
|
3282
3290
|
}
|
|
3283
3291
|
function filterRowModelFromRoot(rowsToFilter, filterRow, instance) {
|
|
3284
3292
|
const newFilteredFlatRows = [];
|
|
3285
|
-
const newFilteredRowsById = {};
|
|
3286
|
-
let rows;
|
|
3287
|
-
let row;
|
|
3288
|
-
let newRow; // Filters top level and nested rows
|
|
3293
|
+
const newFilteredRowsById = {}; // Filters top level and nested rows
|
|
3289
3294
|
|
|
3290
3295
|
const recurseFilterRows = function (rowsToFilter, depth) {
|
|
3291
3296
|
if (depth === void 0) {
|
|
@@ -3293,17 +3298,17 @@ function filterRowModelFromRoot(rowsToFilter, filterRow, instance) {
|
|
|
3293
3298
|
}
|
|
3294
3299
|
|
|
3295
3300
|
// Filter from parents downward first
|
|
3296
|
-
rows = []; // Apply the filter to any subRows
|
|
3301
|
+
const rows = []; // Apply the filter to any subRows
|
|
3297
3302
|
|
|
3298
3303
|
for (let i = 0; i < rowsToFilter.length; i++) {
|
|
3299
|
-
row = rowsToFilter[i];
|
|
3304
|
+
let row = rowsToFilter[i];
|
|
3300
3305
|
const pass = filterRow(row);
|
|
3301
3306
|
|
|
3302
3307
|
if (pass) {
|
|
3303
3308
|
var _row$subRows2;
|
|
3304
3309
|
|
|
3305
3310
|
if ((_row$subRows2 = row.subRows) != null && _row$subRows2.length) {
|
|
3306
|
-
newRow = createRow(instance, row.id, row.original, row.index, row.depth);
|
|
3311
|
+
const newRow = createRow(instance, row.id, row.original, row.index, row.depth);
|
|
3307
3312
|
newRow.subRows = recurseFilterRows(row.subRows, depth + 1);
|
|
3308
3313
|
row = newRow;
|
|
3309
3314
|
}
|