dockview-core 1.15.1 → 1.15.3
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/dockview/dockviewComponent.js +2 -0
- package/dist/cjs/gridview/baseComponentGridview.js +1 -1
- package/dist/dockview-core.amd.js +5 -3
- 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 +4 -2
- package/dist/dockview-core.amd.noStyle.js.map +1 -1
- package/dist/dockview-core.cjs.js +5 -3
- package/dist/dockview-core.cjs.js.map +1 -1
- package/dist/dockview-core.esm.js +5 -3
- 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 +5 -3
- 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 +4 -2
- package/dist/dockview-core.noStyle.js.map +1 -1
- package/dist/esm/dockview/dockviewComponent.js +2 -0
- package/dist/esm/gridview/baseComponentGridview.js +1 -1
- package/dist/styles/dockview.css +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* dockview-core
|
|
3
|
-
* @version 1.15.
|
|
3
|
+
* @version 1.15.3
|
|
4
4
|
* @link https://github.com/mathuo/dockview
|
|
5
5
|
* @license MIT
|
|
6
6
|
*/
|
|
@@ -2772,7 +2772,7 @@
|
|
|
2772
2772
|
this.doSetGroupActive(next);
|
|
2773
2773
|
}
|
|
2774
2774
|
layout(width, height, forceResize) {
|
|
2775
|
-
const different = forceResize
|
|
2775
|
+
const different = forceResize || width !== this.width || height !== this.height;
|
|
2776
2776
|
if (!different) {
|
|
2777
2777
|
return;
|
|
2778
2778
|
}
|
|
@@ -7899,6 +7899,8 @@
|
|
|
7899
7899
|
const group = createGroupFromSerializedState(data);
|
|
7900
7900
|
this.addFloatingGroup(group, {
|
|
7901
7901
|
position: position,
|
|
7902
|
+
width: position.width,
|
|
7903
|
+
height: position.height,
|
|
7902
7904
|
skipRemoveGroup: true,
|
|
7903
7905
|
inDragMode: false,
|
|
7904
7906
|
});
|