@tanstack/react-table 8.5.25 → 8.5.27
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 +5 -5
- package/build/cjs/table-core/build/esm/index.js.map +1 -1
- package/build/esm/index.js +5 -5
- 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 +5 -5
- 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
|
@@ -867,12 +867,12 @@ const Expanding = {
|
|
|
867
867
|
const includesString = (row, columnId, filterValue) => {
|
|
868
868
|
var _row$getValue;
|
|
869
869
|
const search = filterValue.toLowerCase();
|
|
870
|
-
return (_row$getValue = row.getValue(columnId)) == null ? void 0 : _row$getValue.toLowerCase().includes(search);
|
|
870
|
+
return Boolean((_row$getValue = row.getValue(columnId)) == null ? void 0 : _row$getValue.toLowerCase().includes(search));
|
|
871
871
|
};
|
|
872
872
|
includesString.autoRemove = val => testFalsey(val);
|
|
873
873
|
const includesStringSensitive = (row, columnId, filterValue) => {
|
|
874
874
|
var _row$getValue2;
|
|
875
|
-
return (_row$getValue2 = row.getValue(columnId)) == null ? void 0 : _row$getValue2.includes(filterValue);
|
|
875
|
+
return Boolean((_row$getValue2 = row.getValue(columnId)) == null ? void 0 : _row$getValue2.includes(filterValue));
|
|
876
876
|
};
|
|
877
877
|
includesStringSensitive.autoRemove = val => testFalsey(val);
|
|
878
878
|
const equalsString = (row, columnId, filterValue) => {
|
|
@@ -3152,11 +3152,11 @@ function getSortedRowModel() {
|
|
|
3152
3152
|
|
|
3153
3153
|
// If there are sub-rows, sort them
|
|
3154
3154
|
sortedData.forEach(row => {
|
|
3155
|
+
var _row$subRows;
|
|
3155
3156
|
sortedFlatRows.push(row);
|
|
3156
|
-
if (
|
|
3157
|
-
|
|
3157
|
+
if ((_row$subRows = row.subRows) != null && _row$subRows.length) {
|
|
3158
|
+
row.subRows = sortData(row.subRows);
|
|
3158
3159
|
}
|
|
3159
|
-
row.subRows = sortData(row.subRows);
|
|
3160
3160
|
});
|
|
3161
3161
|
return sortedData;
|
|
3162
3162
|
};
|