@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
|
@@ -23247,15 +23247,19 @@ System.register(["tslib", "@web-atoms/core/dist/core/XNode", "@web-atoms/web-con
|
|
|
23247
23247
|
_export("default", HomePage = class HomePage extends ContentPage {
|
|
23248
23248
|
init() {
|
|
23249
23249
|
return __awaiter(this, void 0, void 0, function* () {
|
|
23250
|
-
this.renderer = XNode.create("div", null, XNode.create("home-page", null));
|
|
23251
23250
|
if (PositronInBrowser.isAvailable || isMobileView) {
|
|
23251
|
+
this.renderer = XNode.create("div", null, XNode.create("div", {
|
|
23252
|
+
"data-layout": "center-all"
|
|
23253
|
+
}, XNode.create("div", null, "Opening mailbox....")));
|
|
23252
23254
|
const menuService = this.resolve(MenuService);
|
|
23253
23255
|
yield menuService.firstSearch;
|
|
23254
23256
|
const id = menuService.mailboxes[0].mailboxID;
|
|
23255
23257
|
AppCommands.openMailbox.dispatch({
|
|
23256
23258
|
id
|
|
23257
23259
|
});
|
|
23260
|
+
return;
|
|
23258
23261
|
}
|
|
23262
|
+
this.renderer = XNode.create("div", null, XNode.create("home-page", null));
|
|
23259
23263
|
});
|
|
23260
23264
|
}
|
|
23261
23265
|
});
|