@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
|
@@ -24226,10 +24226,15 @@ System.register(["tslib", "@web-atoms/core/dist/di/DISingleton", "@web-atoms/cor
|
|
|
24226
24226
|
for (const a of Array.from(msg.querySelectorAll(`a[hash-tag]`))) {
|
|
24227
24227
|
const tag = a.getAttribute("hash-tag");
|
|
24228
24228
|
const tokens = tag.toLowerCase().split("/");
|
|
24229
|
-
|
|
24229
|
+
const [name, price, currency] = tokens;
|
|
24230
|
+
if (name !== "#price") {
|
|
24230
24231
|
continue;
|
|
24231
24232
|
}
|
|
24233
|
+
email.price = price;
|
|
24234
|
+
email.currency = currency;
|
|
24232
24235
|
root.setAttribute("enable-buy", "true");
|
|
24236
|
+
root.setAttribute("price", tokens[2]);
|
|
24237
|
+
root.setAttribute("currency", tokens[1]);
|
|
24233
24238
|
}
|
|
24234
24239
|
if (/img|video/i.test(firstVisibleElement === null || firstVisibleElement === void 0 ? void 0 : firstVisibleElement.tagName)) {
|
|
24235
24240
|
root.setAttribute("has-poster", "true");
|