@bobfrankston/mailx-types 0.1.53 → 0.1.55
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/index.d.ts +8 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -253,10 +253,17 @@ export interface MailxSettings {
|
|
|
253
253
|
accounts: AccountConfig[];
|
|
254
254
|
ui: {
|
|
255
255
|
theme: "system" | "dark" | "light";
|
|
256
|
-
editor: "quill" | "tiptap";
|
|
256
|
+
editor: "quill" | "tiptap" | "tinymce";
|
|
257
257
|
folderWidth: number;
|
|
258
258
|
listViewerSplit: number; /** Percentage for message list height */
|
|
259
|
+
/** Root font-size in px — scales the whole app chrome (rem-based CSS). */
|
|
259
260
|
fontSize: number;
|
|
261
|
+
/** Editor body font-size in px. DISPLAY ONLY — it reaches the editors as
|
|
262
|
+
* a content stylesheet / CSS var and is never serialized into outgoing
|
|
263
|
+
* mail, so changing it cannot affect recipients. Distinct from
|
|
264
|
+
* `fontSize` above, which is the app chrome. Was read by app.ts and
|
|
265
|
+
* compose.ts but never declared here (Bob 2026-08-19). */
|
|
266
|
+
composeFontSize: number;
|
|
260
267
|
};
|
|
261
268
|
sync: {
|
|
262
269
|
intervalMinutes: number;
|