feat: allow user to multi-select regions.

This commit is contained in:
Xiaohan-Tian
2026-05-04 17:59:35 -07:00
parent bc7db712aa
commit 6d952b5b0b
10 changed files with 121 additions and 54 deletions
+5 -1
View File
@@ -18,6 +18,10 @@ export interface RegionUI {
name: string;
}
export interface RegionClickOptions {
shiftKey: boolean;
}
// Define resize action types
export type ResizeAction = 'none' | 'start' | 'end';
@@ -39,4 +43,4 @@ export interface RegionDragState {
initialY: number;
initialBarNumber: number;
initialTrackIndex: number;
}
}