style: add worker ux

This commit is contained in:
jialin
2025-09-16 11:26:17 +08:00
parent f1bb305cbc
commit d9d5ca95df
26 changed files with 436 additions and 119 deletions
+12
View File
@@ -17,6 +17,11 @@ export const regionInstanceTypeListAtom = atom<
{
label: string;
value: string;
description: string;
specInfo: Record<string, any>;
vendor: string;
available: boolean;
regions: string[];
}[]
>([]);
@@ -24,6 +29,11 @@ export const regionOSImageListAtom = atom<
{
label: string;
value: string;
name: string;
description: string;
vendor: string;
specInfo: Record<string, any>;
regions: string[];
}[]
>([]);
@@ -42,3 +52,5 @@ export const allRegionInstanceTypeListAtom = atom<
regions: string[];
}[]
>([]);
export const fromClusterCreationAtom = atom(false);