dockview 4.2.1 → 4.2.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.
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * dockview
3
- * @version 4.2.1
3
+ * @version 4.2.3
4
4
  * @link https://github.com/mathuo/dockview
5
5
  * @license MIT
6
6
  */
@@ -11111,6 +11111,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11111
11111
  }
11112
11112
  dockviewRef.current = api;
11113
11113
  return () => {
11114
+ dockviewRef.current = undefined;
11114
11115
  api.dispose();
11115
11116
  };
11116
11117
  }, []);
@@ -11369,6 +11370,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11369
11370
  }
11370
11371
  splitviewRef.current = api;
11371
11372
  return () => {
11373
+ splitviewRef.current = undefined;
11372
11374
  api.dispose();
11373
11375
  };
11374
11376
  }, []);
@@ -11452,6 +11454,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11452
11454
  }
11453
11455
  gridviewRef.current = api;
11454
11456
  return () => {
11457
+ gridviewRef.current = undefined;
11455
11458
  api.dispose();
11456
11459
  };
11457
11460
  }, []);
@@ -11557,6 +11560,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11557
11560
  }
11558
11561
  paneviewRef.current = api;
11559
11562
  return () => {
11563
+ paneviewRef.current = undefined;
11560
11564
  api.dispose();
11561
11565
  };
11562
11566
  }, []);