feat: pro: drop top/bottom split, keep side-by-side only

This commit is contained in:
Linus Rath
2026-05-18 19:51:43 +02:00
parent 2b3094a4ef
commit c3b4707f85
2 changed files with 29 additions and 102 deletions
+6 -1
View File
@@ -7,7 +7,12 @@ export type ProTabKind =
| 'compose' | 'email';
export type ProPaneId = 'main' | 'split';
export type ProSplitOrientation = 'horizontal' | 'vertical';
/**
* Pro split layout. Only side-by-side is supported — the pane that "splits
* off" always lives next to the main pane on the horizontal axis. Kept as
* a type alias to leave room for future layouts without churning callers.
*/
export type ProSplitOrientation = 'vertical';
export type ProComposerMode = 'compose' | 'reply' | 'replyAll' | 'forward';