canvas-editor-engine 2.1.2 → 2.1.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.
- package/dist/index.mjs +6 -10
- package/dist/web-component.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1604,16 +1604,12 @@ var WebComponent = function(_super) {
|
|
|
1604
1604
|
}));
|
|
1605
1605
|
return _this;
|
|
1606
1606
|
}
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
},
|
|
1614
|
-
enumerable: false,
|
|
1615
|
-
configurable: true
|
|
1616
|
-
});
|
|
1607
|
+
WebComponent.prototype.initial = function() {
|
|
1608
|
+
return {
|
|
1609
|
+
editorElement: this.canvasElement,
|
|
1610
|
+
canvasSelector: this.canvasComponent.getCanvasSelector()
|
|
1611
|
+
};
|
|
1612
|
+
};
|
|
1617
1613
|
return WebComponent;
|
|
1618
1614
|
}(HTMLElement);
|
|
1619
1615
|
|
package/dist/web-component.d.ts
CHANGED