@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.
@@ -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) {