dockview-react 3.0.0 → 3.0.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-react
3
- * @version 3.0.0
3
+ * @version 3.0.1
4
4
  * @link https://github.com/mathuo/dockview
5
5
  * @license MIT
6
6
  */
@@ -2802,7 +2802,7 @@ class BaseGrid extends Resizable {
2802
2802
  }
2803
2803
  constructor(parentElement, options) {
2804
2804
  var _a;
2805
- super(document.createElement('div'), options.disableAutoResizing);
2805
+ super(parentElement, options.disableAutoResizing);
2806
2806
  this._id = nextLayoutId$1.next();
2807
2807
  this._groups = new Map();
2808
2808
  this._onDidRemove = new Emitter();
@@ -2821,7 +2821,6 @@ class BaseGrid extends Resizable {
2821
2821
  this.element.style.width = '100%';
2822
2822
  this._classNames = new Classnames(this.element);
2823
2823
  this._classNames.setClassNames((_a = options.className) !== null && _a !== void 0 ? _a : '');
2824
- parentElement.appendChild(this.element);
2825
2824
  this.gridview = new Gridview(!!options.proportionalLayout, options.styles, options.orientation, options.locked, options.margin);
2826
2825
  this.gridview.locked = !!options.locked;
2827
2826
  this.element.appendChild(this.gridview.element);