@social-mail/social-mail-client 1.9.47 → 1.9.48
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 +47 -51
- 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 +8 -12
- 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.js +47 -51
- 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.js +8 -12
- package/dist/web/page/home/HomePage.js.map +1 -1
- package/package.json +1 -1
- package/src/web/page/home/HomePage.tsx +2 -2
|
@@ -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", "
|
|
29657
|
+
System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-controls/dist/mobile-app/MobileApp", "./HomePage.global.css", "../../../common/menu/MenuService", "../../commands/AppCommands"], function (_export, _context) {
|
|
29658
29658
|
"use strict";
|
|
29659
29659
|
|
|
29660
|
-
var __awaiter, XNode, ContentPage,
|
|
29660
|
+
var __awaiter, XNode, ContentPage, MenuService, AppCommands, HomePage;
|
|
29661
29661
|
_export("default", void 0);
|
|
29662
29662
|
return {
|
|
29663
29663
|
setters: [function (_tslib) {
|
|
@@ -29666,8 +29666,6 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
29666
29666
|
XNode = _webAtomsCoreDistCoreXNode.default;
|
|
29667
29667
|
}, function (_webAtomsWebControlsDistMobileAppMobileApp) {
|
|
29668
29668
|
ContentPage = _webAtomsWebControlsDistMobileAppMobileApp.ContentPage;
|
|
29669
|
-
}, function (_positronJsContextDistPositronInBrowser) {
|
|
29670
|
-
PositronInBrowser = _positronJsContextDistPositronInBrowser.default;
|
|
29671
29669
|
}, function (_HomePageGlobalCss) {}, function (_commonMenuMenuService) {
|
|
29672
29670
|
MenuService = _commonMenuMenuService.default;
|
|
29673
29671
|
}, function (_commandsAppCommands) {
|
|
@@ -29678,14 +29676,12 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
29678
29676
|
init() {
|
|
29679
29677
|
return __awaiter(this, void 0, void 0, function* () {
|
|
29680
29678
|
this.renderer = XNode.create("div", null, XNode.create("home-page", null));
|
|
29681
|
-
|
|
29682
|
-
|
|
29683
|
-
|
|
29684
|
-
|
|
29685
|
-
|
|
29686
|
-
|
|
29687
|
-
});
|
|
29688
|
-
}
|
|
29679
|
+
const menuService = this.resolve(MenuService);
|
|
29680
|
+
yield menuService.firstSearch;
|
|
29681
|
+
const id = menuService.mailboxes[0].mailboxID;
|
|
29682
|
+
AppCommands.openMailbox.dispatch({
|
|
29683
|
+
id
|
|
29684
|
+
});
|
|
29689
29685
|
});
|
|
29690
29686
|
}
|
|
29691
29687
|
});
|