@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.
Files changed (37) hide show
  1. package/client/android-bootstrap.bundle.js +24 -2
  2. package/client/android-bootstrap.bundle.js.map +2 -2
  3. package/client/app.bundle.js +59 -5
  4. package/client/app.bundle.js.map +3 -3
  5. package/client/app.js +6 -1
  6. package/client/app.js.map +1 -1
  7. package/client/app.ts +6 -1
  8. package/client/components/message-list.js +13 -2
  9. package/client/components/message-list.js.map +1 -1
  10. package/client/components/message-list.ts +13 -2
  11. package/client/components/message-viewer.js +110 -3
  12. package/client/components/message-viewer.js.map +1 -1
  13. package/client/components/message-viewer.ts +123 -3
  14. package/client/compose/compose.bundle.js +14 -0
  15. package/client/compose/compose.bundle.js.map +2 -2
  16. package/client/compose/compose.css +11 -0
  17. package/client/lib/rmf-tiny.js +14 -0
  18. package/package.json +7 -7
  19. package/packages/mailx-imap/index.d.ts +9 -0
  20. package/packages/mailx-imap/index.d.ts.map +1 -1
  21. package/packages/mailx-imap/index.js +86 -0
  22. package/packages/mailx-imap/index.js.map +1 -1
  23. package/packages/mailx-imap/index.ts +73 -0
  24. package/packages/mailx-imap/package-lock.json +2 -2
  25. package/packages/mailx-imap/package.json +1 -1
  26. package/packages/mailx-service/index.d.ts.map +1 -1
  27. package/packages/mailx-service/index.js +37 -4
  28. package/packages/mailx-service/index.js.map +1 -1
  29. package/packages/mailx-service/index.ts +34 -4
  30. package/packages/mailx-types/mime-inline-images.d.ts +0 -4
  31. package/packages/mailx-types/mime-inline-images.d.ts.map +1 -1
  32. package/packages/mailx-types/mime-inline-images.js +48 -4
  33. package/packages/mailx-types/mime-inline-images.js.map +1 -1
  34. package/packages/mailx-types/mime-inline-images.ts +45 -5
  35. package/packages/mailx-types/package.json +1 -1
  36. package/packages/mailx-types/test/inline-images.test.mjs +79 -0
  37. /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