@revolist/revogrid 3.1.6 → 3.1.8
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/custom-element/index.js +3 -0
- package/dist/cjs/revo-grid_11.cjs.entry.js +3 -0
- package/dist/collection/components/revo-grid/revo-grid.js +4 -1
- package/dist/esm/revo-grid_11.entry.js +3 -0
- package/dist/esm-es5/revo-grid_11.entry.js +1 -1
- package/dist/revo-grid/revo-grid_11.entry.js +1 -1
- package/dist/revo-grid/revo-grid_11.system.entry.js +1 -1
- package/dist/types/components.d.ts +2 -2
- package/package.json +1 -1
package/custom-element/index.js
CHANGED
|
@@ -25433,6 +25433,9 @@ const RevoGridComponent = class extends HTMLElement {
|
|
|
25433
25433
|
grPlugin.setGrouping(newVal || {});
|
|
25434
25434
|
}
|
|
25435
25435
|
applyStretch(isStretch) {
|
|
25436
|
+
if (isStretch === 'false') {
|
|
25437
|
+
isStretch = false;
|
|
25438
|
+
}
|
|
25436
25439
|
let stretch = this.internalPlugins.filter(p => isStretchPlugin(p))[0];
|
|
25437
25440
|
if (isStretch) {
|
|
25438
25441
|
if (!stretch) {
|
|
@@ -25079,6 +25079,9 @@ const RevoGridComponent = class {
|
|
|
25079
25079
|
grPlugin.setGrouping(newVal || {});
|
|
25080
25080
|
}
|
|
25081
25081
|
applyStretch(isStretch) {
|
|
25082
|
+
if (isStretch === 'false') {
|
|
25083
|
+
isStretch = false;
|
|
25084
|
+
}
|
|
25082
25085
|
let stretch = this.internalPlugins.filter(p => isStretchPlugin(p))[0];
|
|
25083
25086
|
if (isStretch) {
|
|
25084
25087
|
if (!stretch) {
|
|
@@ -456,6 +456,9 @@ export class RevoGridComponent {
|
|
|
456
456
|
grPlugin.setGrouping(newVal || {});
|
|
457
457
|
}
|
|
458
458
|
applyStretch(isStretch) {
|
|
459
|
+
if (isStretch === 'false') {
|
|
460
|
+
isStretch = false;
|
|
461
|
+
}
|
|
459
462
|
let stretch = this.internalPlugins.filter(p => isStretchPlugin(p))[0];
|
|
460
463
|
if (isStretch) {
|
|
461
464
|
if (!stretch) {
|
|
@@ -1055,7 +1058,7 @@ export class RevoGridComponent {
|
|
|
1055
1058
|
"type": "any",
|
|
1056
1059
|
"mutable": false,
|
|
1057
1060
|
"complexType": {
|
|
1058
|
-
"original": "boolean|string",
|
|
1061
|
+
"original": "boolean | string",
|
|
1059
1062
|
"resolved": "boolean | string",
|
|
1060
1063
|
"references": {}
|
|
1061
1064
|
},
|
|
@@ -25075,6 +25075,9 @@ const RevoGridComponent = class {
|
|
|
25075
25075
|
grPlugin.setGrouping(newVal || {});
|
|
25076
25076
|
}
|
|
25077
25077
|
applyStretch(isStretch) {
|
|
25078
|
+
if (isStretch === 'false') {
|
|
25079
|
+
isStretch = false;
|
|
25080
|
+
}
|
|
25078
25081
|
let stretch = this.internalPlugins.filter(p => isStretchPlugin(p))[0];
|
|
25079
25082
|
if (isStretch) {
|
|
25080
25083
|
if (!stretch) {
|