@social-mail/social-mail-client 1.8.292 → 1.8.294
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/admin/AdminAppIndex.pack.js +10 -5
- package/dist/admin/AdminAppIndex.pack.js.map +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js +1 -1
- package/dist/admin/AdminAppIndex.pack.min.js.map +1 -1
- package/dist/common/pages/websites/detail/WebSiteDetail.js +3 -1
- package/dist/common/pages/websites/detail/WebSiteDetail.js.map +1 -1
- package/dist/public/channel/ChannelApp.pack.js +7 -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-app/SiteEditorApp.pack.js +10 -5
- package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/web/AppIndex.pack.js +10 -5
- package/dist/web/AppIndex.pack.js.map +1 -1
- package/dist/web/AppIndex.pack.min.js +1 -1
- package/dist/web/AppIndex.pack.min.js.map +1 -1
- package/dist/web/page/mails/service/ConversationService.d.ts.map +1 -1
- package/dist/web/page/mails/service/ConversationService.js +7 -4
- package/dist/web/page/mails/service/ConversationService.js.map +1 -1
- package/package.json +1 -1
- package/src/common/pages/websites/detail/WebSiteDetail.tsx +1 -1
- package/src/web/page/mails/service/ConversationService.tsx +8 -4
|
@@ -28397,10 +28397,13 @@ System.register(["tslib", "@web-atoms/core/dist/di/DISingleton", "@web-atoms/cor
|
|
|
28397
28397
|
const iterator = node;
|
|
28398
28398
|
let cid = iterator.getAttribute("data-content-id");
|
|
28399
28399
|
if (cid) {
|
|
28400
|
-
const
|
|
28401
|
-
if (
|
|
28402
|
-
|
|
28403
|
-
a
|
|
28400
|
+
const src = iterator.getAttribute("src");
|
|
28401
|
+
if (!src.includes("/social-mail/c/e/")) {
|
|
28402
|
+
const a = (_b = mail.attachments) === null || _b === void 0 ? void 0 : _b.find(x => x.contentID === cid);
|
|
28403
|
+
if (a) {
|
|
28404
|
+
iterator.setAttribute("src", a.url);
|
|
28405
|
+
a.included = true;
|
|
28406
|
+
}
|
|
28404
28407
|
}
|
|
28405
28408
|
}
|
|
28406
28409
|
if (/^(IMG|VIDEO)$/.test(iterator.tagName)) {
|
|
@@ -45380,7 +45383,9 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
45380
45383
|
href: AppUrlService.editWebSite(this.site),
|
|
45381
45384
|
target: `_web_${this.site.folderID}`
|
|
45382
45385
|
}), XNode.create(InlinePopupButton, {
|
|
45383
|
-
popup: () => XNode.create("div",
|
|
45386
|
+
popup: () => XNode.create("div", {
|
|
45387
|
+
"data-layout": "vertical-flex-stretch-items"
|
|
45388
|
+
}, " ", ...this.site.hosts.map(h => XNode.create("a", {
|
|
45384
45389
|
href: `https://${h.host}`,
|
|
45385
45390
|
target: "_blank"
|
|
45386
45391
|
}, h.host))),
|