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.
- package/dist/cjs/gridview/baseComponentGridview.js +1 -1
- package/dist/dockview-core.amd.js +2 -2
- package/dist/dockview-core.amd.js.map +1 -1
- package/dist/dockview-core.amd.min.js +2 -2
- package/dist/dockview-core.amd.min.js.map +1 -1
- package/dist/dockview-core.amd.min.noStyle.js +2 -2
- package/dist/dockview-core.amd.min.noStyle.js.map +1 -1
- package/dist/dockview-core.amd.noStyle.js +2 -2
- package/dist/dockview-core.amd.noStyle.js.map +1 -1
- package/dist/dockview-core.cjs.js +2 -2
- package/dist/dockview-core.cjs.js.map +1 -1
- package/dist/dockview-core.esm.js +2 -2
- package/dist/dockview-core.esm.js.map +1 -1
- package/dist/dockview-core.esm.min.js +2 -2
- package/dist/dockview-core.esm.min.js.map +1 -1
- package/dist/dockview-core.js +2 -2
- package/dist/dockview-core.js.map +1 -1
- package/dist/dockview-core.min.js +2 -2
- package/dist/dockview-core.min.js.map +1 -1
- package/dist/dockview-core.min.noStyle.js +2 -2
- package/dist/dockview-core.min.noStyle.js.map +1 -1
- package/dist/dockview-core.noStyle.js +2 -2
- package/dist/dockview-core.noStyle.js.map +1 -1
- package/dist/esm/gridview/baseComponentGridview.js +1 -1
- package/package.json +1 -1
|
@@ -185,7 +185,7 @@ export class BaseGrid extends Resizable {
|
|
|
185
185
|
this.doSetGroupActive(next);
|
|
186
186
|
}
|
|
187
187
|
layout(width, height, forceResize) {
|
|
188
|
-
const different = forceResize
|
|
188
|
+
const different = forceResize || width !== this.width || height !== this.height;
|
|
189
189
|
if (!different) {
|
|
190
190
|
return;
|
|
191
191
|
}
|