canvas-editor-engine 2.0.16 → 2.0.18
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 +16 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2111,6 +2111,22 @@ var PullProjectService = function() {
|
|
|
2111
2111
|
return PullProjectService;
|
|
2112
2112
|
}();
|
|
2113
2113
|
|
|
2114
|
+
(function() {
|
|
2115
|
+
if (window.Reflect === undefined || window.customElements === undefined || window.customElements.polyfillWrapFlushCallback) {
|
|
2116
|
+
return;
|
|
2117
|
+
}
|
|
2118
|
+
var BuiltInHTMLElement = HTMLElement;
|
|
2119
|
+
var wrapperForTheName = {
|
|
2120
|
+
HTMLElement: function HTMLElement() {
|
|
2121
|
+
return Reflect.construct(BuiltInHTMLElement, [], this.constructor);
|
|
2122
|
+
}
|
|
2123
|
+
};
|
|
2124
|
+
window.HTMLElement = wrapperForTheName["HTMLElement"];
|
|
2125
|
+
HTMLElement.prototype = BuiltInHTMLElement.prototype;
|
|
2126
|
+
HTMLElement.prototype.constructor = HTMLElement;
|
|
2127
|
+
Object.setPrototypeOf(HTMLElement, BuiltInHTMLElement);
|
|
2128
|
+
})();
|
|
2129
|
+
|
|
2114
2130
|
var CanvasEditorEngine = function() {
|
|
2115
2131
|
function CanvasEditorEngine(webComponentTagName) {
|
|
2116
2132
|
AppConfig.WEB_COMPONENT_TAG_NAME = webComponentTagName;
|