@bobfrankston/rmfmail 1.2.209 → 1.2.211
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/bin/mailx.js +30 -8
- package/bin/mailx.js.map +1 -1
- package/bin/mailx.ts +28 -4
- package/client/android-bootstrap.bundle.js +8 -1
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +24 -3
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +15 -0
- package/client/app.js.map +1 -1
- package/client/app.ts +13 -0
- package/client/components/folder-tree.js +45 -3
- package/client/components/folder-tree.js.map +1 -1
- package/client/components/folder-tree.ts +42 -3
- package/client/index.html +1 -1
- package/package.json +5 -5
- package/packages/mailx-store-web/android-bootstrap.d.ts.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.js +20 -1
- package/packages/mailx-store-web/android-bootstrap.js.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.ts +20 -1
- package/packages/mailx-store-web/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-35212 → node_modules.npmglobalize-stash-1872}/.package-lock.json +0 -0
package/client/app.js
CHANGED
|
@@ -3310,6 +3310,21 @@ onWsEvent((event) => {
|
|
|
3310
3310
|
const slot = document.querySelector(".folder-loading");
|
|
3311
3311
|
if (slot)
|
|
3312
3312
|
slot.textContent = msg;
|
|
3313
|
+
// The message-list pane too — on a phone the folder tree is
|
|
3314
|
+
// off-canvas and the viewer pane is behind the list, so the
|
|
3315
|
+
// tree/viewer slots above are both invisible at boot. This is
|
|
3316
|
+
// the pane the user is actually staring at (Bob 2026-08-01:
|
|
3317
|
+
// "blank screen and 'syncing' at the bottom"). `.ml-empty`
|
|
3318
|
+
// exists only while the list has no rows, so live message
|
|
3319
|
+
// rows are never overwritten.
|
|
3320
|
+
const mlEmpty = document.querySelector("#ml-body .ml-empty");
|
|
3321
|
+
if (mlEmpty)
|
|
3322
|
+
mlEmpty.textContent = msg;
|
|
3323
|
+
// Zero-account welcome pane (the visible one on a phone until
|
|
3324
|
+
// accounts land) — folder-tree.ts renders this slot.
|
|
3325
|
+
const narrationSlot = document.getElementById("bootstrap-narration");
|
|
3326
|
+
if (narrationSlot)
|
|
3327
|
+
narrationSlot.textContent = msg;
|
|
3313
3328
|
}
|
|
3314
3329
|
break;
|
|
3315
3330
|
}
|