@social-mail/social-mail-client 1.9.49 → 1.9.51
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 +5 -1
- 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 +5 -1
- 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 +5 -1
- 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 +5 -1
- package/dist/web/page/home/HomePage.js.map +1 -1
- package/package.json +1 -1
- package/src/web/page/home/HomePage.tsx +11 -7
|
@@ -29678,15 +29678,19 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
29678
29678
|
_export("default", HomePage = class HomePage extends ContentPage {
|
|
29679
29679
|
init() {
|
|
29680
29680
|
return __awaiter(this, void 0, void 0, function* () {
|
|
29681
|
-
this.renderer = XNode.create("div", null, XNode.create("home-page", null));
|
|
29682
29681
|
if (PositronInBrowser.isAvailable || isMobileView) {
|
|
29682
|
+
this.renderer = XNode.create("div", null, XNode.create("div", {
|
|
29683
|
+
"data-layout": "center-all"
|
|
29684
|
+
}, XNode.create("div", null, "Opening mailbox....")));
|
|
29683
29685
|
const menuService = this.resolve(MenuService);
|
|
29684
29686
|
yield menuService.firstSearch;
|
|
29685
29687
|
const id = menuService.mailboxes[0].mailboxID;
|
|
29686
29688
|
AppCommands.openMailbox.dispatch({
|
|
29687
29689
|
id
|
|
29688
29690
|
});
|
|
29691
|
+
return;
|
|
29689
29692
|
}
|
|
29693
|
+
this.renderer = XNode.create("div", null, XNode.create("home-page", null));
|
|
29690
29694
|
});
|
|
29691
29695
|
}
|
|
29692
29696
|
});
|