@social-mail/social-mail-client 1.4.72 → 1.4.74
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/public/channel/ChannelApp.pack.js +4 -4
- package/dist/public/channel/ChannelApp.pack.js.map +1 -1
- package/dist/public/channel/ChannelApp.pack.min.js +1 -1
- package/dist/public/channel/ChannelApp.pack.min.js.map +1 -1
- package/dist/site-editor/blocks/InlineSvg.d.ts +9 -0
- package/dist/site-editor/blocks/InlineSvg.d.ts.map +1 -0
- package/dist/site-editor/blocks/InlineSvg.js +20 -0
- package/dist/site-editor/blocks/InlineSvg.js.map +1 -0
- package/dist/site-editor/editor/HtmlPageEditor.d.ts.map +1 -1
- package/dist/site-editor/editor/HtmlPageEditor.js +6 -4
- package/dist/site-editor/editor/HtmlPageEditor.js.map +1 -1
- package/dist/site-editor/editor/webComponentsPath.js +4 -4
- package/dist/site-editor/editor/webComponentsPath.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +34 -9
- package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js +3 -3
- package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/site-editor/blocks/InlineSvg.tsx +20 -0
- package/src/site-editor/editor/HtmlPageEditor.tsx +4 -2
- package/src/site-editor/editor/webComponentsPath.ts +4 -4
|
@@ -26138,15 +26138,15 @@ System.register(["tslib", "@web-atoms/core/dist/core/sleep", "@web-atoms/core/di
|
|
|
26138
26138
|
}
|
|
26139
26139
|
doc[webComponentsInstalled] = true;
|
|
26140
26140
|
const url = this.path + "/dist/editable.js";
|
|
26141
|
-
const
|
|
26141
|
+
const cssUrl = location.protocol + this.path + "/dist/editable.less.css";
|
|
26142
26142
|
const win = doc.defaultView;
|
|
26143
|
-
win["
|
|
26143
|
+
win["__web_components_css_path__"] = cssUrl;
|
|
26144
26144
|
frame.sandbox.add("allow-scripts");
|
|
26145
26145
|
const text = yield FetchBuilder.get(url).asText();
|
|
26146
26146
|
const proxy = new CustomElementsProxy();
|
|
26147
26147
|
const globals = {
|
|
26148
26148
|
window: win,
|
|
26149
|
-
|
|
26149
|
+
__web_components_css_path__: cssUrl,
|
|
26150
26150
|
document: win.document,
|
|
26151
26151
|
Object: win.Object,
|
|
26152
26152
|
Promise,
|
|
@@ -26256,7 +26256,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/sleep", "@web-atoms/core/di
|
|
|
26256
26256
|
});
|
|
26257
26257
|
}
|
|
26258
26258
|
});
|
|
26259
|
-
WebComponents.path = `//cdn.jsdelivr.net/npm/@social-mail/web-components@1.0.
|
|
26259
|
+
WebComponents.path = `//cdn.jsdelivr.net/npm/@social-mail/web-components@1.0.174`;
|
|
26260
26260
|
}
|
|
26261
26261
|
};
|
|
26262
26262
|
});
|