@social-mail/social-mail-client 1.8.277 → 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 (57) 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/properties/groups/EffectGroup.d.ts.map +1 -1
  27. package/dist/site-editor/properties/groups/EffectGroup.js +3 -0
  28. package/dist/site-editor/properties/groups/EffectGroup.js.map +1 -1
  29. package/dist/site-editor/suggestions/editorSuggestions.d.ts +4 -0
  30. package/dist/site-editor/suggestions/editorSuggestions.d.ts.map +1 -1
  31. package/dist/site-editor/suggestions/properties/effects.d.ts +4 -0
  32. package/dist/site-editor/suggestions/properties/effects.d.ts.map +1 -1
  33. package/dist/site-editor/suggestions/properties/effects.js +3 -1
  34. package/dist/site-editor/suggestions/properties/effects.js.map +1 -1
  35. package/dist/site-editor-app/SiteEditorApp.pack.js +12 -2
  36. package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
  37. package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
  38. package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
  39. package/dist/tsconfig.tsbuildinfo +1 -1
  40. package/dist/web/AppIndex.pack.js +6 -1
  41. package/dist/web/AppIndex.pack.js.map +1 -1
  42. package/dist/web/AppIndex.pack.min.js +1 -1
  43. package/dist/web/AppIndex.pack.min.js.map +1 -1
  44. package/dist/web/page/mails/service/ConversationService.d.ts.map +1 -1
  45. package/dist/web/page/mails/service/ConversationService.js +6 -1
  46. package/dist/web/page/mails/service/ConversationService.js.map +1 -1
  47. package/package.json +1 -1
  48. package/src/public/channel/UrlService.ts +14 -0
  49. package/src/public/channel/controls/channel-post/ChannelPost.tsx +2 -2
  50. package/src/public/channel/pages/posts/ChannelPage.tsx +17 -2
  51. package/src/public/contact-us/ContactUsApp.tsx +6 -0
  52. package/src/site-editor/properties/groups/EffectGroup.tsx +4 -0
  53. package/src/site-editor/suggestions/properties/effects.ts +17 -0
  54. package/src/web/page/mails/service/ConversationService.tsx +6 -1
  55. package/styler-lite/styler.css +1 -1
  56. package/styler-lite/styler.css.map +1 -1
  57. package/styler-lite/styles/properties/effects/filter.css +3 -0
@@ -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
- if (tokens[0] !== "#price") {
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");