@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
|
@@ -27740,10 +27740,15 @@ System.register(["tslib", "@web-atoms/core/dist/di/DISingleton", "@web-atoms/cor
|
|
|
27740
27740
|
for (const a of Array.from(msg.querySelectorAll(`a[hash-tag]`))) {
|
|
27741
27741
|
const tag = a.getAttribute("hash-tag");
|
|
27742
27742
|
const tokens = tag.toLowerCase().split("/");
|
|
27743
|
-
|
|
27743
|
+
const [name, price, currency] = tokens;
|
|
27744
|
+
if (name !== "#price") {
|
|
27744
27745
|
continue;
|
|
27745
27746
|
}
|
|
27747
|
+
email.price = price;
|
|
27748
|
+
email.currency = currency;
|
|
27746
27749
|
root.setAttribute("enable-buy", "true");
|
|
27750
|
+
root.setAttribute("price", tokens[2]);
|
|
27751
|
+
root.setAttribute("currency", tokens[1]);
|
|
27747
27752
|
}
|
|
27748
27753
|
if (/img|video/i.test(firstVisibleElement === null || firstVisibleElement === void 0 ? void 0 : firstVisibleElement.tagName)) {
|
|
27749
27754
|
root.setAttribute("has-poster", "true");
|