@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.
Files changed (43) hide show
  1. package/dist/admin/AdminAppIndex.pack.js +6 -1
  2. package/dist/admin/AdminAppIndex.pack.js.map +1 -1
  3. package/dist/admin/AdminAppIndex.pack.min.js +1 -1
  4. package/dist/admin/AdminAppIndex.pack.min.js.map +1 -1
  5. package/dist/public/channel/ChannelApp.pack.js +42 -3
  6. package/dist/public/channel/ChannelApp.pack.js.map +1 -1
  7. package/dist/public/channel/ChannelApp.pack.min.js +1 -1
  8. package/dist/public/channel/ChannelApp.pack.min.js.map +1 -1
  9. package/dist/public/channel/UrlService.d.ts +1 -0
  10. package/dist/public/channel/UrlService.d.ts.map +1 -1
  11. package/dist/public/channel/UrlService.js +18 -0
  12. package/dist/public/channel/UrlService.js.map +1 -1
  13. package/dist/public/channel/controls/channel-post/ChannelPost.js +4 -1
  14. package/dist/public/channel/controls/channel-post/ChannelPost.js.map +1 -1
  15. package/dist/public/channel/pages/posts/ChannelPage.d.ts +1 -3
  16. package/dist/public/channel/pages/posts/ChannelPage.d.ts.map +1 -1
  17. package/dist/public/channel/pages/posts/ChannelPage.js +14 -1
  18. package/dist/public/channel/pages/posts/ChannelPage.js.map +1 -1
  19. package/dist/public/contact-us/ContactUsApp.d.ts.map +1 -1
  20. package/dist/public/contact-us/ContactUsApp.js +5 -0
  21. package/dist/public/contact-us/ContactUsApp.js.map +1 -1
  22. package/dist/public/contact-us/ContactUsApp.pack.js +5 -0
  23. package/dist/public/contact-us/ContactUsApp.pack.js.map +1 -1
  24. package/dist/public/contact-us/ContactUsApp.pack.min.js +1 -1
  25. package/dist/public/contact-us/ContactUsApp.pack.min.js.map +1 -1
  26. package/dist/site-editor-app/SiteEditorApp.pack.js +6 -1
  27. package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
  28. package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
  29. package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
  30. package/dist/tsconfig.tsbuildinfo +1 -1
  31. package/dist/web/AppIndex.pack.js +6 -1
  32. package/dist/web/AppIndex.pack.js.map +1 -1
  33. package/dist/web/AppIndex.pack.min.js +1 -1
  34. package/dist/web/AppIndex.pack.min.js.map +1 -1
  35. package/dist/web/page/mails/service/ConversationService.d.ts.map +1 -1
  36. package/dist/web/page/mails/service/ConversationService.js +6 -1
  37. package/dist/web/page/mails/service/ConversationService.js.map +1 -1
  38. package/package.json +1 -1
  39. package/src/public/channel/UrlService.ts +14 -0
  40. package/src/public/channel/controls/channel-post/ChannelPost.tsx +2 -2
  41. package/src/public/channel/pages/posts/ChannelPage.tsx +17 -2
  42. package/src/public/contact-us/ContactUsApp.tsx +6 -0
  43. 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
- if (tokens[0] !== "#price") {
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");