@bobfrankston/rmfmail 1.1.206 → 1.1.208
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/compose/compose.bundle.js +9 -3
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/lib/rmf-tiny.js +9 -2
- package/package.json +3 -3
- package/packages/mailx-imap/index.d.ts.map +1 -1
- package/packages/mailx-imap/index.js +11 -1
- package/packages/mailx-imap/index.js.map +1 -1
- package/packages/mailx-imap/index.ts +11 -1
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +1 -1
- package/packages/mailx-store/db.d.ts +1 -1
- package/packages/mailx-store/db.d.ts.map +1 -1
- package/packages/mailx-store/db.js +12 -2
- package/packages/mailx-store/db.js.map +1 -1
- package/packages/mailx-store/db.ts +13 -3
- package/packages/mailx-store/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-13904 → node_modules.npmglobalize-stash-33420}/.package-lock.json +0 -0
|
@@ -1859,8 +1859,6 @@ async function loadTinymce(opts) {
|
|
|
1859
1859
|
}),
|
|
1860
1860
|
import("tinymce/models/dom").catch(() => {
|
|
1861
1861
|
}),
|
|
1862
|
-
import("tinymce/plugins/paste").catch(() => {
|
|
1863
|
-
}),
|
|
1864
1862
|
import("tinymce/plugins/lists").catch(() => {
|
|
1865
1863
|
}),
|
|
1866
1864
|
import("tinymce/plugins/link").catch(() => {
|
|
@@ -1929,7 +1927,15 @@ async function createTinyMceEditor(container2, opts = {}) {
|
|
|
1929
1927
|
// All free / OSS plugins bundled in the jsDelivr tinymce@6 script.
|
|
1930
1928
|
// No premium plugins listed — listing one without an API key
|
|
1931
1929
|
// triggers TinyMCE's upsell dialog on every load.
|
|
1932
|
-
|
|
1930
|
+
// NOTE: no "paste" plugin — it was REMOVED in TinyMCE 6 (paste,
|
|
1931
|
+
// including Word-paste fidelity, is now built into core). We're on
|
|
1932
|
+
// v8; listing "paste" makes TinyMCE's loader fetch the nonexistent
|
|
1933
|
+
// plugins/paste/plugin.min.js over msger's custom protocol, which
|
|
1934
|
+
// returns an error body the WebView tries to eval → "Uncaught
|
|
1935
|
+
// SyntaxError: Unexpected identifier 'Not'" → init fails → compose
|
|
1936
|
+
// falls back to a stub editor and Reply/Reply-All break (Bob
|
|
1937
|
+
// 2026-06-01). The paste_* OPTIONS below remain valid (core).
|
|
1938
|
+
plugins: "lists advlist link table code codesample image searchreplace autolink wordcount emoticons charmap insertdatetime quickbars nonbreaking directionality help",
|
|
1933
1939
|
toolbar: [
|
|
1934
1940
|
"undo redo | bold italic underline strikethrough | forecolor backcolor",
|
|
1935
1941
|
"bullist numlist outdent indent | link table image code rmfcode | emoticons charmap | help"
|