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
  */
@@ -11115,6 +11115,7 @@
11115
11115
  }
11116
11116
  dockviewRef.current = api;
11117
11117
  return () => {
11118
+ dockviewRef.current = undefined;
11118
11119
  api.dispose();
11119
11120
  };
11120
11121
  }, []);
@@ -11350,6 +11351,7 @@
11350
11351
  }
11351
11352
  splitviewRef.current = api;
11352
11353
  return () => {
11354
+ splitviewRef.current = undefined;
11353
11355
  api.dispose();
11354
11356
  };
11355
11357
  }, []);
@@ -11433,6 +11435,7 @@
11433
11435
  }
11434
11436
  gridviewRef.current = api;
11435
11437
  return () => {
11438
+ gridviewRef.current = undefined;
11436
11439
  api.dispose();
11437
11440
  };
11438
11441
  }, []);
@@ -11538,6 +11541,7 @@
11538
11541
  }
11539
11542
  paneviewRef.current = api;
11540
11543
  return () => {
11544
+ paneviewRef.current = undefined;
11541
11545
  api.dispose();
11542
11546
  };
11543
11547
  }, []);