@xh/hoist 52.0.0 → 52.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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## v52.0.0 - 2022-10-10
3
+ ## v52.0.1 - 2022-10-10
4
4
 
5
5
  ### 🎁 New Features
6
6
 
package/data/Store.js CHANGED
@@ -774,6 +774,7 @@ export class Store extends HoistBase {
774
774
 
775
775
  /** Destroy this store, cleaning up any resources used. */
776
776
  destroy() {
777
+ super.destroy();
777
778
  Store._unregisterInstance(this);
778
779
  }
779
780
 
package/data/cube/Cube.js CHANGED
@@ -241,6 +241,7 @@ export class Cube extends HoistBase {
241
241
 
242
242
  destroy() {
243
243
  this._connectedViews.forEach(v => v.disconnect());
244
+ super.destroy();
244
245
  }
245
246
  }
246
247
 
package/data/cube/View.js CHANGED
@@ -412,6 +412,7 @@ export class View extends HoistBase {
412
412
 
413
413
  destroy() {
414
414
  this.disconnect();
415
+ super.destroy();
415
416
  }
416
417
  }
417
418
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "52.0.0",
3
+ "version": "52.0.1",
4
4
  "description": "Hoist add-on for building and deploying React Applications.",
5
5
  "repository": "github:xh/hoist-react",
6
6
  "homepage": "https://xh.io",