@tanstack/svelte-table 8.5.24 → 8.5.26
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 +3 -3
- package/build/cjs/table-core/build/esm/index.js.map +1 -1
- package/build/esm/index.js +3 -3
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +47 -47
- package/build/umd/index.development.js +3 -3
- 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/esm/index.js
CHANGED
|
@@ -866,12 +866,12 @@ const Expanding = {
|
|
|
866
866
|
const includesString = (row, columnId, filterValue) => {
|
|
867
867
|
var _row$getValue;
|
|
868
868
|
const search = filterValue.toLowerCase();
|
|
869
|
-
return (_row$getValue = row.getValue(columnId)) == null ? void 0 : _row$getValue.toLowerCase().includes(search);
|
|
869
|
+
return Boolean((_row$getValue = row.getValue(columnId)) == null ? void 0 : _row$getValue.toLowerCase().includes(search));
|
|
870
870
|
};
|
|
871
871
|
includesString.autoRemove = val => testFalsey(val);
|
|
872
872
|
const includesStringSensitive = (row, columnId, filterValue) => {
|
|
873
873
|
var _row$getValue2;
|
|
874
|
-
return (_row$getValue2 = row.getValue(columnId)) == null ? void 0 : _row$getValue2.includes(filterValue);
|
|
874
|
+
return Boolean((_row$getValue2 = row.getValue(columnId)) == null ? void 0 : _row$getValue2.includes(filterValue));
|
|
875
875
|
};
|
|
876
876
|
includesStringSensitive.autoRemove = val => testFalsey(val);
|
|
877
877
|
const equalsString = (row, columnId, filterValue) => {
|
|
@@ -1479,7 +1479,7 @@ const Pagination = {
|
|
|
1479
1479
|
table.setPagination(old => {
|
|
1480
1480
|
let pageIndex = functionalUpdate(updater, old.pageIndex);
|
|
1481
1481
|
const maxPageIndex = typeof table.options.pageCount === 'undefined' || table.options.pageCount === -1 ? Number.MAX_SAFE_INTEGER : table.options.pageCount - 1;
|
|
1482
|
-
pageIndex = Math.
|
|
1482
|
+
pageIndex = Math.max(0, Math.min(pageIndex, maxPageIndex));
|
|
1483
1483
|
return {
|
|
1484
1484
|
...old,
|
|
1485
1485
|
pageIndex
|