feat(mermaid): add basic support for vertical layout

This commit is contained in:
Elian Doran
2025-03-22 10:27:42 +02:00
parent 91dca2df35
commit cf874b5ee8
6 changed files with 82 additions and 6 deletions

View File

@@ -45,6 +45,7 @@ export interface OptionDefinitions extends KeyboardShortcutsOptions<KeyboardActi
passwordVerificationSalt: string;
passwordDerivedKeySalt: string;
encryptedDataKey: string;
hoistedNoteId: string;
lastSyncedPull: number;
lastSyncedPush: number;
@@ -73,6 +74,9 @@ export interface OptionDefinitions extends KeyboardShortcutsOptions<KeyboardActi
firstDayOfWeek: number;
languages: string;
// Appearance
splitEditorOrientation: "horziontal" | "vertical";
initialized: boolean;
isPasswordSet: boolean;
overrideThemeFonts: boolean;