@social-mail/social-mail-client 1.8.327 → 1.8.329

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 (30) hide show
  1. package/dist/admin/AdminAppIndex.pack.js +10 -3
  2. package/dist/admin/AdminAppIndex.pack.js.map +1 -1
  3. package/dist/admin/AdminAppIndex.pack.local.css +1 -1
  4. package/dist/admin/AdminAppIndex.pack.local.css.map +1 -1
  5. package/dist/admin/AdminAppIndex.pack.min.js +1 -1
  6. package/dist/admin/AdminAppIndex.pack.min.js.map +1 -1
  7. package/dist/site-editor-app/SiteEditorApp.pack.js +10 -3
  8. package/dist/site-editor-app/SiteEditorApp.pack.js.map +1 -1
  9. package/dist/site-editor-app/SiteEditorApp.pack.local.css +1 -1
  10. package/dist/site-editor-app/SiteEditorApp.pack.local.css.map +1 -1
  11. package/dist/site-editor-app/SiteEditorApp.pack.min.js +1 -1
  12. package/dist/site-editor-app/SiteEditorApp.pack.min.js.map +1 -1
  13. package/dist/tsconfig.tsbuildinfo +1 -1
  14. package/dist/web/AppIndex.pack.js +10 -3
  15. package/dist/web/AppIndex.pack.js.map +1 -1
  16. package/dist/web/AppIndex.pack.local.css +1 -1
  17. package/dist/web/AppIndex.pack.local.css.map +1 -1
  18. package/dist/web/AppIndex.pack.min.js +1 -1
  19. package/dist/web/AppIndex.pack.min.js.map +1 -1
  20. package/dist/web/page/mails/detail/MailDetailPage.d.ts +1 -1
  21. package/dist/web/page/mails/detail/MailDetailPage.d.ts.map +1 -1
  22. package/dist/web/page/mails/detail/MailDetailPage.js +10 -3
  23. package/dist/web/page/mails/detail/MailDetailPage.js.map +1 -1
  24. package/dist/web/page/mails/detail/MailDetailPage.local.css +2 -0
  25. package/dist/web/page/mails/detail/MailDetailPage.local.css.map +1 -0
  26. package/package.json +1 -1
  27. package/src/web/page/mails/detail/{mail-detail-page.local.css → MailDetailPage.local.css} +7 -0
  28. package/src/web/page/mails/detail/MailDetailPage.tsx +7 -8
  29. package/dist/web/page/mails/detail/mail-detail-page.local.css +0 -2
  30. package/dist/web/page/mails/detail/mail-detail-page.local.css.map +0 -1
@@ -29872,7 +29872,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
29872
29872
 
29873
29873
  AmdLoader.instance.setup("@social-mail/social-mail-client/dist/web/page/mails/detail/MailDetailPage");
29874
29874
 
29875
- System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "../../../../model/model", "@web-atoms/core/dist/core/XNode", "../../../../common/date/DateFormats", "@web-atoms/core/dist/core/InjectProperty", "../service/MailService", "./mail-detail-page.local.css"], function (_export, _context) {
29875
+ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "../../../../model/model", "@web-atoms/core/dist/core/XNode", "../../../../common/date/DateFormats", "@web-atoms/core/dist/core/InjectProperty", "../service/MailService", "./MailDetailPage.local.css"], function (_export, _context) {
29876
29876
  "use strict";
29877
29877
 
29878
29878
  var __awaiter, __decorate, __metadata, PopupWindowPage, EmailRecipient, XNode, DateFormats, InjectProperty, MailService, MailDetailPage, displayRecipient, css;
@@ -29894,7 +29894,7 @@ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "
29894
29894
  InjectProperty = _webAtomsCoreDistCoreInjectProperty.default;
29895
29895
  }, function (_serviceMailService) {
29896
29896
  MailService = _serviceMailService.default;
29897
- }, function (_mailDetailPageLocalCss) {}],
29897
+ }, function (_MailDetailPageLocalCss) {}],
29898
29898
  execute: function () {
29899
29899
  displayRecipient = ({
29900
29900
  name,
@@ -29965,8 +29965,15 @@ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "
29965
29965
  this.headerRenderer = () => {
29966
29966
  var _a;
29967
29967
  return XNode.create("div", {
29968
+ class: "mail-detail-page-header",
29968
29969
  "data-padding": "auto"
29969
- }, XNode.create("table", null, from && XNode.create("tr", null, XNode.create("td", null, "From:"), XNode.create("td", null, from)), to.length && XNode.create("tr", null, XNode.create("td", null, "To:"), XNode.create("td", null, ...to)), cc.length && XNode.create("tr", null, XNode.create("td", null, "Cc:"), XNode.create("td", null, ...cc)), bcc.length && XNode.create("tr", null, XNode.create("td", null, "Bcc:"), XNode.create("td", null, ...bcc)), XNode.create("tr", null, XNode.create("td", null, "Subject:"), XNode.create("td", null, model.subject)), XNode.create("tr", null, XNode.create("td", null, "Date:"), XNode.create("td", null, DateFormats.withWeekDayAndTime((_a = model.dateReceived) !== null && _a !== void 0 ? _a : model.dateCreated)))));
29970
+ }, XNode.create("table", null, from && XNode.create("tr", null, XNode.create("td", null, "From:"), XNode.create("td", null, from)), to.length && XNode.create("tr", null, XNode.create("td", null, "To:"), XNode.create("td", null, " ", XNode.create("div", {
29971
+ class: "address-list"
29972
+ }, ...to))), cc.length && XNode.create("tr", null, XNode.create("td", null, "Cc:"), XNode.create("td", null, XNode.create("div", {
29973
+ class: "address-list"
29974
+ }, ...cc, " "), " ")), bcc.length && XNode.create("tr", null, XNode.create("td", null, "Bcc:"), XNode.create("td", null, XNode.create("div", {
29975
+ class: "address-list"
29976
+ }, ...bcc, " "), " ")), XNode.create("tr", null, XNode.create("td", null, "Subject:"), XNode.create("td", null, model.subject)), XNode.create("tr", null, XNode.create("td", null, "Date:"), XNode.create("td", null, DateFormats.withWeekDayAndTime((_a = model.dateReceived) !== null && _a !== void 0 ? _a : model.dateCreated)))));
29970
29977
  };
29971
29978
  this.renderer = XNode.create("div", {
29972
29979
  class: css,