backend.ai-ui 25.18.0-canary-ee47c4e58-20251222 → 25.18.0-canary-261223018-20251223
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -8,5 +8,5 @@ export interface BAIDynamicUnitInputNumberWithSliderProps extends BAIDynamicUnit
|
|
|
8
8
|
step?: number;
|
|
9
9
|
inputMinWidth?: number;
|
|
10
10
|
}
|
|
11
|
-
declare const
|
|
12
|
-
export default
|
|
11
|
+
declare const BAIDynamicUnitInputNumberWithSlider: React.FC<BAIDynamicUnitInputNumberWithSliderProps>;
|
|
12
|
+
export default BAIDynamicUnitInputNumberWithSlider;
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ export declare const useResourceSlotsDetails: (resourceGroupName?: string) => {
|
|
|
50
50
|
"warboy.device"?: ResourceSlotDetail | undefined;
|
|
51
51
|
"rngd.device"?: ResourceSlotDetail | undefined;
|
|
52
52
|
"hyperaccel-lpu.device"?: ResourceSlotDetail | undefined;
|
|
53
|
-
};
|
|
53
|
+
} | undefined;
|
|
54
54
|
deviceMetaData: import('../components').DeviceMetaData;
|
|
55
55
|
mergedResourceSlots: import('../components').DeviceMetaData & {
|
|
56
56
|
cpu?: ResourceSlotDetail | undefined;
|
|
@@ -69,7 +69,7 @@ export declare const useResourceSlotsDetails: (resourceGroupName?: string) => {
|
|
|
69
69
|
"hyperaccel-lpu.device"?: ResourceSlotDetail | undefined;
|
|
70
70
|
};
|
|
71
71
|
refresh: (newValue?: string | undefined) => void;
|
|
72
|
-
isLoading:
|
|
72
|
+
isLoading: boolean;
|
|
73
73
|
};
|
|
74
74
|
export declare function useMutationWithPromise<T extends MutationParameters>(mutation: GraphQLTaggedNode): (variables: T["variables"]) => Promise<T["response"]>;
|
|
75
75
|
export declare const baiSignedRequestWithPromise: ({ method, url, body, client, }: {
|