@gridsheet/react-core 3.0.0-rc.5 → 3.0.0-rc.6
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/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/lib/sheet.d.ts.map +1 -1
- package/dist/types.d.ts +2 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3468,11 +3468,11 @@ class Ne {
|
|
|
3468
3468
|
const e = {}, t = this.numCols, n = this.numRows;
|
|
3469
3469
|
for (let l = 1; l <= t; l++) {
|
|
3470
3470
|
const c = (r = this.idMatrix[0]) == null ? void 0 : r[l];
|
|
3471
|
-
c != null && (e[c] = { filter: (o = this.registry.data[c]) == null ? void 0 : o.filter });
|
|
3471
|
+
c != null && (e[c] = { filter: ((o = this.registry.data[c]) == null ? void 0 : o.filter) ?? null });
|
|
3472
3472
|
}
|
|
3473
3473
|
for (let l = 1; l <= n; l++) {
|
|
3474
3474
|
const c = (i = this.idMatrix[l]) == null ? void 0 : i[0];
|
|
3475
|
-
c != null && (e[c] = { filtered: (a = this.registry.data[c]) == null ? void 0 : a.filtered });
|
|
3475
|
+
c != null && (e[c] = { filtered: ((a = this.registry.data[c]) == null ? void 0 : a.filtered) ?? !1 });
|
|
3476
3476
|
}
|
|
3477
3477
|
return e;
|
|
3478
3478
|
}
|