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
  */
@@ -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
  }, []);
@@ -11346,6 +11347,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11346
11347
  }
11347
11348
  splitviewRef.current = api;
11348
11349
  return () => {
11350
+ splitviewRef.current = undefined;
11349
11351
  api.dispose();
11350
11352
  };
11351
11353
  }, []);
@@ -11429,6 +11431,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11429
11431
  }
11430
11432
  gridviewRef.current = api;
11431
11433
  return () => {
11434
+ gridviewRef.current = undefined;
11432
11435
  api.dispose();
11433
11436
  };
11434
11437
  }, []);
@@ -11534,6 +11537,7 @@ define(['exports', 'react', 'react-dom'], (function (exports, React, ReactDOM) {
11534
11537
  }
11535
11538
  paneviewRef.current = api;
11536
11539
  return () => {
11540
+ paneviewRef.current = undefined;
11537
11541
  api.dispose();
11538
11542
  };
11539
11543
  }, []);