refactor(FE-316): Add expandable secondary drawer panel

This commit is contained in:
rstubryan
2025-12-24 17:53:14 +07:00
parent f0eb3fcf52
commit 879702d31d
6 changed files with 106 additions and 9 deletions
+3
View File
@@ -10,6 +10,9 @@ type DrawerUISlice = {
isValid: boolean;
setIsValid: (v: boolean) => void;
subscribeIsValid: (callback: (isValid: boolean) => void) => () => void;
expandedDrawerOpen: boolean;
setExpandedDrawerOpen: (open: boolean) => void;
toggleExpandedDrawer: () => void;
};
export type UIStore = MainUiSlice & DrawerUISlice;