@node-projects/web-component-designer 0.1.110 → 0.1.111
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.
|
@@ -626,6 +626,8 @@ export class DesignerCanvas extends BaseCustomWebComponentLazyAppend {
|
|
|
626
626
|
this._resizeBackgroundGrid();
|
|
627
627
|
});
|
|
628
628
|
}
|
|
629
|
+
if (this.isConnected)
|
|
630
|
+
this.extensionManager.connected();
|
|
629
631
|
}
|
|
630
632
|
connectedCallback() {
|
|
631
633
|
if (!this._firstConnect) {
|
|
@@ -652,7 +654,8 @@ export class DesignerCanvas extends BaseCustomWebComponentLazyAppend {
|
|
|
652
654
|
this.canvasOffset = newCanvasOffset;
|
|
653
655
|
});
|
|
654
656
|
}
|
|
655
|
-
this.extensionManager
|
|
657
|
+
if (this.extensionManager)
|
|
658
|
+
this.extensionManager.connected();
|
|
656
659
|
}
|
|
657
660
|
disconnectedCallback() {
|
|
658
661
|
this.extensionManager.disconnected();
|
package/package.json
CHANGED