@bobfrankston/rmfmail 1.2.314 → 1.2.316

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 (47) hide show
  1. package/.commitmsg +29 -24
  2. package/.llm/trusted-lists.md +10 -0
  3. package/client/android-bootstrap.bundle.js +21 -1
  4. package/client/android-bootstrap.bundle.js.map +2 -2
  5. package/client/app.bundle.js +51 -3
  6. package/client/app.bundle.js.map +2 -2
  7. package/client/app.js +12 -0
  8. package/client/app.js.map +1 -1
  9. package/client/app.ts +11 -0
  10. package/client/components/calendar-sidebar.js +59 -3
  11. package/client/components/calendar-sidebar.js.map +1 -1
  12. package/client/components/calendar-sidebar.ts +50 -3
  13. package/client/compose/compose.bundle.js +4 -0
  14. package/client/compose/compose.bundle.js.map +2 -2
  15. package/client/lib/api-client.js +6 -0
  16. package/client/lib/api-client.js.map +1 -1
  17. package/client/lib/api-client.ts +6 -0
  18. package/client/lib/mailxapi.js +4 -1
  19. package/npmchanges.md +50 -0
  20. package/package.json +5 -5
  21. package/packages/mailx-imap/package-lock.json +2 -2
  22. package/packages/mailx-imap/package.json +1 -1
  23. package/packages/mailx-service/index.d.ts +14 -0
  24. package/packages/mailx-service/index.d.ts.map +1 -1
  25. package/packages/mailx-service/index.js +31 -0
  26. package/packages/mailx-service/index.js.map +1 -1
  27. package/packages/mailx-service/index.ts +29 -0
  28. package/packages/mailx-service/jsonrpc.js +2 -0
  29. package/packages/mailx-service/jsonrpc.js.map +1 -1
  30. package/packages/mailx-service/jsonrpc.ts +2 -0
  31. package/packages/mailx-service/package.json +1 -1
  32. package/packages/mailx-settings/docs/spam-false-positives.md +1 -1
  33. package/packages/mailx-settings/package.json +1 -1
  34. package/packages/mailx-store/package.json +1 -1
  35. package/packages/mailx-store-web/package.json +1 -1
  36. package/packages/mailx-store-web/web-service.d.ts +4 -0
  37. package/packages/mailx-store-web/web-service.d.ts.map +1 -1
  38. package/packages/mailx-store-web/web-service.js +1 -0
  39. package/packages/mailx-store-web/web-service.js.map +1 -1
  40. package/packages/mailx-store-web/web-service.ts +1 -0
  41. package/packages/mailx-types/mailx-api.d.ts +5 -0
  42. package/packages/mailx-types/mailx-api.d.ts.map +1 -1
  43. package/packages/mailx-types/mailx-api.ts +2 -0
  44. package/packages/mailx-types/package.json +1 -1
  45. package/packages/mailx-types/trust.d.ts.map +1 -1
  46. package/packages/mailx-types/trust.js +33 -1
  47. package/packages/mailx-types/trust.js.map +1 -1
package/client/app.js CHANGED
@@ -142,6 +142,18 @@ window.__btick && window.__btick("app.ts module body executing");
142
142
  // called preventDefault.
143
143
  if (e.defaultPrevented)
144
144
  return;
145
+ // A plain text control keeps the NATIVE menu. Chromium's spelling
146
+ // suggestions and "Add to dictionary" exist only there and are
147
+ // unreachable from JS, and the native menu already carries Cut /
148
+ // Copy / Paste / Select all for a text field — so the mailx block
149
+ // below would only be a poorer copy of it. Bob 2026-09-10, the New
150
+ // event box: "spelling correct didn't work" — the word was
151
+ // underlined, the right-click showed our Cut/Copy/Paste, and the
152
+ // suggestions never had a menu to live in. (Claude Code)
153
+ const t = e.target;
154
+ const tag = t?.tagName;
155
+ if (tag === "TEXTAREA" || (tag === "INPUT" && !["checkbox", "radio", "button", "submit", "range", "color", "file"].includes(t.type)))
156
+ return;
145
157
  e.preventDefault();
146
158
  // …but suppressing the native menu means the search box, the folder
147
159
  // rename field, the task title, and every other plain input in the