@revolist/revogrid 4.9.40 → 4.9.41

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/hydrate/index.js CHANGED
@@ -11761,8 +11761,8 @@ class SortingPlugin extends BasePlugin {
11761
11761
  }
11762
11762
  defaultCellCompare(prop, a, b) {
11763
11763
  var _a, _b;
11764
- const av = (_a = a[prop]) === null || _a === void 0 ? void 0 : _a.toString().toLowerCase();
11765
- const bv = (_b = b[prop]) === null || _b === void 0 ? void 0 : _b.toString().toLowerCase();
11764
+ const av = (_a = a === null || a === void 0 ? void 0 : a[prop]) === null || _a === void 0 ? void 0 : _a.toString().toLowerCase();
11765
+ const bv = (_b = b === null || b === void 0 ? void 0 : b[prop]) === null || _b === void 0 ? void 0 : _b.toString().toLowerCase();
11766
11766
  return av == bv ? 0 : av > bv ? 1 : -1;
11767
11767
  }
11768
11768
  descCellCompare(cmp) {
package/hydrate/index.mjs CHANGED
@@ -11757,8 +11757,8 @@ class SortingPlugin extends BasePlugin {
11757
11757
  }
11758
11758
  defaultCellCompare(prop, a, b) {
11759
11759
  var _a, _b;
11760
- const av = (_a = a[prop]) === null || _a === void 0 ? void 0 : _a.toString().toLowerCase();
11761
- const bv = (_b = b[prop]) === null || _b === void 0 ? void 0 : _b.toString().toLowerCase();
11760
+ const av = (_a = a === null || a === void 0 ? void 0 : a[prop]) === null || _a === void 0 ? void 0 : _a.toString().toLowerCase();
11761
+ const bv = (_b = b === null || b === void 0 ? void 0 : b[prop]) === null || _b === void 0 ? void 0 : _b.toString().toLowerCase();
11762
11762
  return av == bv ? 0 : av > bv ? 1 : -1;
11763
11763
  }
11764
11764
  descCellCompare(cmp) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolist/revogrid",
3
- "version": "4.9.40",
3
+ "version": "4.9.41",
4
4
  "type": "module",
5
5
  "description": "Virtual reactive data grid spreadsheet component - RevoGrid.",
6
6
  "license": "MIT",
@@ -2434,8 +2434,8 @@ class SortingPlugin extends BasePlugin {
2434
2434
  }
2435
2435
  defaultCellCompare(prop, a, b) {
2436
2436
  var _a, _b;
2437
- const av = (_a = a[prop]) === null || _a === void 0 ? void 0 : _a.toString().toLowerCase();
2438
- const bv = (_b = b[prop]) === null || _b === void 0 ? void 0 : _b.toString().toLowerCase();
2437
+ const av = (_a = a === null || a === void 0 ? void 0 : a[prop]) === null || _a === void 0 ? void 0 : _a.toString().toLowerCase();
2438
+ const bv = (_b = b === null || b === void 0 ? void 0 : b[prop]) === null || _b === void 0 ? void 0 : _b.toString().toLowerCase();
2439
2439
  return av == bv ? 0 : av > bv ? 1 : -1;
2440
2440
  }
2441
2441
  descCellCompare(cmp) {