@bobfrankston/rmfmail 1.2.241 → 1.2.243
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/client/android-bootstrap.bundle.js +24 -2
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +59 -5
- package/client/app.bundle.js.map +3 -3
- package/client/app.js +6 -1
- package/client/app.js.map +1 -1
- package/client/app.ts +6 -1
- package/client/components/message-list.js +13 -2
- package/client/components/message-list.js.map +1 -1
- package/client/components/message-list.ts +13 -2
- package/client/components/message-viewer.js +110 -3
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +123 -3
- package/client/compose/compose.bundle.js +14 -0
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/compose.css +11 -0
- package/client/lib/rmf-tiny.js +14 -0
- package/package.json +7 -7
- package/packages/mailx-imap/index.d.ts +9 -0
- package/packages/mailx-imap/index.d.ts.map +1 -1
- package/packages/mailx-imap/index.js +86 -0
- package/packages/mailx-imap/index.js.map +1 -1
- package/packages/mailx-imap/index.ts +73 -0
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +1 -1
- package/packages/mailx-service/index.d.ts.map +1 -1
- package/packages/mailx-service/index.js +37 -4
- package/packages/mailx-service/index.js.map +1 -1
- package/packages/mailx-service/index.ts +34 -4
- package/packages/mailx-types/mime-inline-images.d.ts +0 -4
- package/packages/mailx-types/mime-inline-images.d.ts.map +1 -1
- package/packages/mailx-types/mime-inline-images.js +48 -4
- package/packages/mailx-types/mime-inline-images.js.map +1 -1
- package/packages/mailx-types/mime-inline-images.ts +45 -5
- package/packages/mailx-types/package.json +1 -1
- package/packages/mailx-types/test/inline-images.test.mjs +79 -0
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-26520 → node_modules.npmglobalize-stash-17784}/.package-lock.json +0 -0
|
@@ -2645,6 +2645,20 @@ async function createTinyMceEditor(container2, opts = {}) {
|
|
|
2645
2645
|
// 2026-07-28: pasted/inserted text needs a one-click quote.
|
|
2646
2646
|
"blockquote bullist numlist outdent indent | link table image code rmfcode | emoticons charmap | help"
|
|
2647
2647
|
].join(" | "),
|
|
2648
|
+
// Wrap the toolbar onto as many rows as it needs instead of hiding
|
|
2649
|
+
// the overflow behind a "…" that opens a FLOATING popover over the
|
|
2650
|
+
// message body (TinyMCE default is toolbar_mode:"floating").
|
|
2651
|
+
//
|
|
2652
|
+
// Two things were wrong with the popover: it covers the text you
|
|
2653
|
+
// are writing, and it does not dismiss on its own (Bob 2026-08-08:
|
|
2654
|
+
// "you temporarily extend the menu as a popover but that does not
|
|
2655
|
+
// go away on its own. It makes more sense to just wrap the buttons
|
|
2656
|
+
// onto a separate line. That works because the width is stable so
|
|
2657
|
+
// there is not any fibrillation"). Wrapping grows the header, which
|
|
2658
|
+
// is the honest use of the space — the compose window width does
|
|
2659
|
+
// not change while you type, so the row count is stable and there
|
|
2660
|
+
// is no reflow churn.
|
|
2661
|
+
toolbar_mode: "wrap",
|
|
2648
2662
|
// Include "tools" so wordcount and searchreplace are reachable.
|
|
2649
2663
|
menubar: "file edit view insert format tools",
|
|
2650
2664
|
// View menu — append zoom commands. fullscreen omitted: this editor
|