dockview-core 1.8.0 → 1.8.1
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.d.ts.map +1 -1
- package/dist/cjs/dockview/dockviewComponent.js +8 -0
- package/dist/cjs/dockview/dockviewComponent.js.map +1 -1
- package/dist/dockview-core.amd.js +9 -1
- 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 +9 -1
- package/dist/dockview-core.amd.noStyle.js.map +1 -1
- package/dist/dockview-core.cjs.js +9 -1
- package/dist/dockview-core.cjs.js.map +1 -1
- package/dist/dockview-core.esm.js +9 -1
- 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 +9 -1
- 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 +9 -1
- package/dist/dockview-core.noStyle.js.map +1 -1
- package/dist/esm/dockview/dockviewComponent.d.ts.map +1 -1
- package/dist/esm/dockview/dockviewComponent.js +8 -0
- package/dist/esm/dockview/dockviewComponent.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* dockview-core
|
|
3
|
-
* @version 1.8.
|
|
3
|
+
* @version 1.8.1
|
|
4
4
|
* @link https://github.com/mathuo/dockview
|
|
5
5
|
* @license MIT
|
|
6
6
|
*/
|
|
@@ -5592,6 +5592,14 @@ class DockviewComponent extends BaseGrid {
|
|
|
5592
5592
|
return true;
|
|
5593
5593
|
}
|
|
5594
5594
|
if (this.options.showDndOverlay) {
|
|
5595
|
+
if (position === 'center') {
|
|
5596
|
+
/**
|
|
5597
|
+
* for external events only show the four-corner drag overlays, disable
|
|
5598
|
+
* the center position so that external drag events can fall through to the group
|
|
5599
|
+
* and panel drop target handlers
|
|
5600
|
+
*/
|
|
5601
|
+
return false;
|
|
5602
|
+
}
|
|
5595
5603
|
return this.options.showDndOverlay({
|
|
5596
5604
|
nativeEvent: event,
|
|
5597
5605
|
position: position,
|