@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/dist/cjs/revo-grid.cjs.entry.js +2 -2
- package/dist/cjs/revo-grid.cjs.entry.js.map +1 -1
- package/dist/collection/plugins/sorting/sorting.plugin.js +2 -2
- package/dist/collection/plugins/sorting/sorting.plugin.js.map +1 -1
- package/dist/esm/revo-grid.entry.js +2 -2
- package/dist/esm/revo-grid.entry.js.map +1 -1
- package/dist/revo-grid/revo-grid.entry.js +1 -1
- package/dist/revo-grid/revo-grid.entry.js.map +1 -1
- package/hydrate/index.js +2 -2
- package/hydrate/index.mjs +2 -2
- package/package.json +1 -1
- package/standalone/revo-grid.js +2 -2
- package/standalone/revo-grid.js.map +1 -1
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
package/standalone/revo-grid.js
CHANGED
|
@@ -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) {
|