dockview-core 2.1.2 → 2.1.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.
@@ -1635,9 +1635,7 @@ var DockviewComponent = /** @class */ (function (_super) {
1635
1635
  this.doRemoveGroup(sourceGroup, { skipActive: true });
1636
1636
  var newGroup_1 = this.createGroupAtLocation(targetLocation);
1637
1637
  this.movingLock(function () {
1638
- return newGroup_1.model.openPanel(removedPanel_2, {
1639
- skipSetActive: true,
1640
- });
1638
+ return newGroup_1.model.openPanel(removedPanel_2);
1641
1639
  });
1642
1640
  this.doSetGroupAndPanelActive(newGroup_1);
1643
1641
  this._onDidMovePanel.fire({
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * dockview-core
3
- * @version 2.1.2
3
+ * @version 2.1.3
4
4
  * @link https://github.com/mathuo/dockview
5
5
  * @license MIT
6
6
  */
@@ -8764,9 +8764,7 @@ define(['exports'], (function (exports) { 'use strict';
8764
8764
  }));
8765
8765
  this.doRemoveGroup(sourceGroup, { skipActive: true });
8766
8766
  const newGroup = this.createGroupAtLocation(targetLocation);
8767
- this.movingLock(() => newGroup.model.openPanel(removedPanel, {
8768
- skipSetActive: true,
8769
- }));
8767
+ this.movingLock(() => newGroup.model.openPanel(removedPanel));
8770
8768
  this.doSetGroupAndPanelActive(newGroup);
8771
8769
  this._onDidMovePanel.fire({
8772
8770
  panel: this.getGroupPanel(sourceItemId),