dockview-react 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-react
3
- * @version 4.2.1
3
+ * @version 4.2.3
4
4
  * @link https://github.com/mathuo/dockview
5
5
  * @license MIT
6
6
  */
@@ -11141,6 +11141,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11141
11141
  }
11142
11142
  dockviewRef.current = api;
11143
11143
  return () => {
11144
+ dockviewRef.current = undefined;
11144
11145
  api.dispose();
11145
11146
  };
11146
11147
  }, []);
@@ -11376,6 +11377,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11376
11377
  }
11377
11378
  splitviewRef.current = api;
11378
11379
  return () => {
11380
+ splitviewRef.current = undefined;
11379
11381
  api.dispose();
11380
11382
  };
11381
11383
  }, []);
@@ -11459,6 +11461,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11459
11461
  }
11460
11462
  gridviewRef.current = api;
11461
11463
  return () => {
11464
+ gridviewRef.current = undefined;
11462
11465
  api.dispose();
11463
11466
  };
11464
11467
  }, []);
@@ -11564,6 +11567,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11564
11567
  }
11565
11568
  paneviewRef.current = api;
11566
11569
  return () => {
11570
+ paneviewRef.current = undefined;
11567
11571
  api.dispose();
11568
11572
  };
11569
11573
  }, []);