@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
@@ -29105,7 +29105,7 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
29105
29105
 
29106
29106
  AmdLoader.instance.setup("@social-mail/social-mail-client/dist/web/page/mails/detail/MailDetailPage");
29107
29107
 
29108
- 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) {
29108
+ 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) {
29109
29109
  "use strict";
29110
29110
 
29111
29111
  var __awaiter, __decorate, __metadata, PopupWindowPage, EmailRecipient, XNode, DateFormats, InjectProperty, MailService, MailDetailPage, displayRecipient, css;
@@ -29127,7 +29127,7 @@ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "
29127
29127
  InjectProperty = _webAtomsCoreDistCoreInjectProperty.default;
29128
29128
  }, function (_serviceMailService) {
29129
29129
  MailService = _serviceMailService.default;
29130
- }, function (_mailDetailPageLocalCss) {}],
29130
+ }, function (_MailDetailPageLocalCss) {}],
29131
29131
  execute: function () {
29132
29132
  displayRecipient = ({
29133
29133
  name,
@@ -29198,8 +29198,15 @@ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "
29198
29198
  this.headerRenderer = () => {
29199
29199
  var _a;
29200
29200
  return XNode.create("div", {
29201
+ class: "mail-detail-page-header",
29201
29202
  "data-padding": "auto"
29202
- }, 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)))));
29203
+ }, 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", {
29204
+ class: "address-list"
29205
+ }, ...to))), cc.length && XNode.create("tr", null, XNode.create("td", null, "Cc:"), XNode.create("td", null, XNode.create("div", {
29206
+ class: "address-list"
29207
+ }, ...cc, " "), " ")), bcc.length && XNode.create("tr", null, XNode.create("td", null, "Bcc:"), XNode.create("td", null, XNode.create("div", {
29208
+ class: "address-list"
29209
+ }, ...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)))));
29203
29210
  };
29204
29211
  this.renderer = XNode.create("div", {
29205
29212
  class: css,