@bobfrankston/rmfmail 1.2.315 → 1.2.317
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/.commitmsg +35 -15
- package/.llm/trusted-lists.md +11 -0
- package/client/android-bootstrap.bundle.js +3 -0
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +124 -51
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +12 -0
- package/client/app.js.map +1 -1
- package/client/app.ts +11 -0
- package/client/components/calendar-sidebar.js +160 -77
- package/client/components/calendar-sidebar.js.map +1 -1
- package/client/components/calendar-sidebar.ts +147 -70
- package/client/compose/compose.bundle.js +4 -0
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/index.html +6 -6
- package/client/lib/api-client.js +6 -0
- package/client/lib/api-client.js.map +1 -1
- package/client/lib/api-client.ts +6 -0
- package/client/lib/mailxapi.js +4 -1
- package/npmchanges.md +55 -0
- package/package.json +5 -5
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +1 -1
- package/packages/mailx-service/index.d.ts +14 -0
- package/packages/mailx-service/index.d.ts.map +1 -1
- package/packages/mailx-service/index.js +31 -0
- package/packages/mailx-service/index.js.map +1 -1
- package/packages/mailx-service/index.ts +29 -0
- package/packages/mailx-service/jsonrpc.js +2 -0
- package/packages/mailx-service/jsonrpc.js.map +1 -1
- package/packages/mailx-service/jsonrpc.ts +2 -0
- package/packages/mailx-service/package.json +1 -1
- package/packages/mailx-settings/package.json +1 -1
- package/packages/mailx-store/package.json +1 -1
- package/packages/mailx-store-web/package.json +1 -1
- package/packages/mailx-store-web/web-service.d.ts +4 -0
- package/packages/mailx-store-web/web-service.d.ts.map +1 -1
- package/packages/mailx-store-web/web-service.js +1 -0
- package/packages/mailx-store-web/web-service.js.map +1 -1
- package/packages/mailx-store-web/web-service.ts +1 -0
- package/packages/mailx-types/mailx-api.d.ts +5 -0
- package/packages/mailx-types/mailx-api.d.ts.map +1 -1
- package/packages/mailx-types/mailx-api.ts +2 -0
- package/packages/mailx-types/package.json +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
|