@social-mail/social-mail-client 1.9.50 → 1.9.52
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 +12 -6
- 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/site-editor-app/SiteEditorApp.pack.js +12 -6
- 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.global.css +1 -1
- package/dist/web/AppIndex.pack.global.css.map +1 -1
- package/dist/web/AppIndex.pack.js +6163 -6157
- 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/home/HomePage.d.ts.map +1 -1
- package/dist/web/page/home/HomePage.js +12 -6
- package/dist/web/page/home/HomePage.js.map +1 -1
- package/package.json +1 -1
- package/src/web/page/home/HomePage.tsx +14 -8
|
@@ -29654,10 +29654,10 @@ System.register(["tslib", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "
|
|
|
29654
29654
|
|
|
29655
29655
|
AmdLoader.instance.setup("@social-mail/social-mail-client/dist/web/page/home/HomePage");
|
|
29656
29656
|
|
|
29657
|
-
System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "@positron-js/context/dist/PositronInBrowser", "./HomePage.global.css", "../../../common/menu/MenuService", "
|
|
29657
|
+
System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "@positron-js/context/dist/PositronInBrowser", "./HomePage.global.css", "../../../common/menu/MenuService", "@web-atoms/web-controls/dist/PageNavigator", "../mails/contacts/MailboxContacts"], function (_export, _context) {
|
|
29658
29658
|
"use strict";
|
|
29659
29659
|
|
|
29660
|
-
var __awaiter, XNode, ContentPage, isMobileView, PositronInBrowser, MenuService,
|
|
29660
|
+
var __awaiter, XNode, ContentPage, isMobileView, PositronInBrowser, MenuService, PageNavigator, MailboxContacts, HomePage;
|
|
29661
29661
|
_export("default", void 0);
|
|
29662
29662
|
return {
|
|
29663
29663
|
setters: [function (_tslib) {
|
|
@@ -29671,22 +29671,28 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
29671
29671
|
PositronInBrowser = _positronJsContextDistPositronInBrowser.default;
|
|
29672
29672
|
}, function (_HomePageGlobalCss) {}, function (_commonMenuMenuService) {
|
|
29673
29673
|
MenuService = _commonMenuMenuService.default;
|
|
29674
|
-
}, function (
|
|
29675
|
-
|
|
29674
|
+
}, function (_webAtomsWebControlsDistPageNavigator) {
|
|
29675
|
+
PageNavigator = _webAtomsWebControlsDistPageNavigator.default;
|
|
29676
|
+
}, function (_mailsContactsMailboxContacts) {
|
|
29677
|
+
MailboxContacts = _mailsContactsMailboxContacts.default;
|
|
29676
29678
|
}],
|
|
29677
29679
|
execute: function () {
|
|
29678
29680
|
_export("default", HomePage = class HomePage extends ContentPage {
|
|
29679
29681
|
init() {
|
|
29680
29682
|
return __awaiter(this, void 0, void 0, function* () {
|
|
29681
|
-
this.renderer = XNode.create("div", null, XNode.create("home-page", null));
|
|
29682
29683
|
if (PositronInBrowser.isAvailable || isMobileView) {
|
|
29684
|
+
this.renderer = XNode.create("div", null, XNode.create("div", {
|
|
29685
|
+
"data-layout": "center-all"
|
|
29686
|
+
}, XNode.create("div", null, "Opening mailbox....")));
|
|
29683
29687
|
const menuService = this.resolve(MenuService);
|
|
29684
29688
|
yield menuService.firstSearch;
|
|
29685
29689
|
const id = menuService.mailboxes[0].mailboxID;
|
|
29686
|
-
|
|
29690
|
+
PageNavigator.openPage(MailboxContacts, {
|
|
29687
29691
|
id
|
|
29688
29692
|
});
|
|
29693
|
+
return;
|
|
29689
29694
|
}
|
|
29695
|
+
this.renderer = XNode.create("div", null, XNode.create("home-page", null));
|
|
29690
29696
|
});
|
|
29691
29697
|
}
|
|
29692
29698
|
});
|