@comfyorg/comfyui-frontend-types 1.25.7 → 1.25.8
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.
- package/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -212,9 +212,10 @@ declare interface BaseResolvedConnection {
|
|
|
212
212
|
declare interface BaseSidebarTabExtension {
|
|
213
213
|
id: string;
|
|
214
214
|
title: string;
|
|
215
|
-
icon?: string;
|
|
215
|
+
icon?: string | Component;
|
|
216
216
|
iconBadge?: string | (() => string | null);
|
|
217
217
|
tooltip?: string;
|
|
218
|
+
label?: string;
|
|
218
219
|
}
|
|
219
220
|
|
|
220
221
|
/**
|
|
@@ -1168,6 +1169,7 @@ export declare class ComfyApp {
|
|
|
1168
1169
|
versionAdded?: string;
|
|
1169
1170
|
confirmation?: string;
|
|
1170
1171
|
source?: string;
|
|
1172
|
+
active?: () => boolean;
|
|
1171
1173
|
category?: 'essentials' | 'view-controls';
|
|
1172
1174
|
}
|
|
1173
1175
|
|
|
@@ -13433,7 +13435,7 @@ declare global {
|
|
|
13433
13435
|
}
|
|
13434
13436
|
}
|
|
13435
13437
|
|
|
13436
|
-
|
|
13438
|
+
|
|
13437
13439
|
|
|
13438
13440
|
declare global {
|
|
13439
13441
|
interface Window {
|