@social-mail/social-mail-client 1.8.278 → 1.8.279
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 +6 -1
- 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/public/channel/ChannelApp.pack.js +42 -3
- 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/public/channel/UrlService.d.ts +1 -0
- package/dist/public/channel/UrlService.d.ts.map +1 -1
- package/dist/public/channel/UrlService.js +18 -0
- package/dist/public/channel/UrlService.js.map +1 -1
- package/dist/public/channel/controls/channel-post/ChannelPost.js +4 -1
- package/dist/public/channel/controls/channel-post/ChannelPost.js.map +1 -1
- package/dist/public/channel/pages/posts/ChannelPage.d.ts +1 -3
- package/dist/public/channel/pages/posts/ChannelPage.d.ts.map +1 -1
- package/dist/public/channel/pages/posts/ChannelPage.js +14 -1
- package/dist/public/channel/pages/posts/ChannelPage.js.map +1 -1
- package/dist/public/contact-us/ContactUsApp.d.ts.map +1 -1
- package/dist/public/contact-us/ContactUsApp.js +5 -0
- package/dist/public/contact-us/ContactUsApp.js.map +1 -1
- package/dist/public/contact-us/ContactUsApp.pack.js +5 -0
- package/dist/public/contact-us/ContactUsApp.pack.js.map +1 -1
- package/dist/public/contact-us/ContactUsApp.pack.min.js +1 -1
- package/dist/public/contact-us/ContactUsApp.pack.min.js.map +1 -1
- package/dist/site-editor-app/SiteEditorApp.pack.js +6 -1
- 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 +6 -1
- 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 +6 -1
- package/dist/web/page/mails/service/ConversationService.js.map +1 -1
- package/package.json +1 -1
- package/src/public/channel/UrlService.ts +14 -0
- package/src/public/channel/controls/channel-post/ChannelPost.tsx +2 -2
- package/src/public/channel/pages/posts/ChannelPage.tsx +17 -2
- package/src/public/contact-us/ContactUsApp.tsx +6 -0
- package/src/web/page/mails/service/ConversationService.tsx +6 -1
|
@@ -28450,10 +28450,15 @@ System.register(["tslib", "@web-atoms/core/dist/di/DISingleton", "@web-atoms/cor
|
|
|
28450
28450
|
for (const a of Array.from(msg.querySelectorAll(`a[hash-tag]`))) {
|
|
28451
28451
|
const tag = a.getAttribute("hash-tag");
|
|
28452
28452
|
const tokens = tag.toLowerCase().split("/");
|
|
28453
|
-
|
|
28453
|
+
const [name, price, currency] = tokens;
|
|
28454
|
+
if (name !== "#price") {
|
|
28454
28455
|
continue;
|
|
28455
28456
|
}
|
|
28457
|
+
email.price = price;
|
|
28458
|
+
email.currency = currency;
|
|
28456
28459
|
root.setAttribute("enable-buy", "true");
|
|
28460
|
+
root.setAttribute("price", tokens[2]);
|
|
28461
|
+
root.setAttribute("currency", tokens[1]);
|
|
28457
28462
|
}
|
|
28458
28463
|
if (/img|video/i.test(firstVisibleElement === null || firstVisibleElement === void 0 ? void 0 : firstVisibleElement.tagName)) {
|
|
28459
28464
|
root.setAttribute("has-poster", "true");
|