dockview 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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * dockview
3
- * @version 1.8.0
3
+ * @version 1.8.1
4
4
  * @link https://github.com/mathuo/dockview
5
5
  * @license MIT
6
6
  */
@@ -5612,6 +5612,14 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
5612
5612
  return true;
5613
5613
  }
5614
5614
  if (this.options.showDndOverlay) {
5615
+ if (position === 'center') {
5616
+ /**
5617
+ * for external events only show the four-corner drag overlays, disable
5618
+ * the center position so that external drag events can fall through to the group
5619
+ * and panel drop target handlers
5620
+ */
5621
+ return false;
5622
+ }
5615
5623
  return this.options.showDndOverlay({
5616
5624
  nativeEvent: event,
5617
5625
  position: position,