dockview-core 1.15.1 → 1.15.2

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.
@@ -268,7 +268,7 @@ var BaseGrid = /** @class */ (function (_super) {
268
268
  this.doSetGroupActive(next);
269
269
  };
270
270
  BaseGrid.prototype.layout = function (width, height, forceResize) {
271
- var different = forceResize !== null && forceResize !== void 0 ? forceResize : (width !== this.width || height !== this.height);
271
+ var different = forceResize || width !== this.width || height !== this.height;
272
272
  if (!different) {
273
273
  return;
274
274
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * dockview-core
3
- * @version 1.15.1
3
+ * @version 1.15.2
4
4
  * @link https://github.com/mathuo/dockview
5
5
  * @license MIT
6
6
  */
@@ -2798,7 +2798,7 @@ define(['exports'], (function (exports) { 'use strict';
2798
2798
  this.doSetGroupActive(next);
2799
2799
  }
2800
2800
  layout(width, height, forceResize) {
2801
- const different = forceResize !== null && forceResize !== void 0 ? forceResize : (width !== this.width || height !== this.height);
2801
+ const different = forceResize || width !== this.width || height !== this.height;
2802
2802
  if (!different) {
2803
2803
  return;
2804
2804
  }