Sync progress circle

This commit is contained in:
Zef Hemel
2023-06-14 20:58:08 +02:00
parent 604329b02a
commit a2bba5a7ab
6 changed files with 88 additions and 23 deletions
+3 -1
View File
@@ -52,6 +52,7 @@ export type AppViewState = {
showCommandPaletteContext?: string;
unsavedChanges: boolean;
synced: boolean;
progressPerc?: number;
panels: { [key: string]: PanelConfig };
allPages: PageMeta[];
commands: Map<string, AppCommand>;
@@ -162,4 +163,5 @@ export type Action =
callback: (value: boolean) => void;
}
| { type: "hide-confirm" }
| { type: "set-ui-option"; key: string; value: any };
| { type: "set-ui-option"; key: string; value: any }
| { type: "set-progress"; progressPerc?: number };