@comfyorg/comfyui-frontend-types 1.44.11 → 1.44.13
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 +128 -83
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { Component } from 'vue';
|
|
|
5
5
|
import { ComputedRef } from 'vue';
|
|
6
6
|
import { CurveData } from '../../../../components/curve/types';
|
|
7
7
|
import { IFuseOptions } from 'fuse.js';
|
|
8
|
+
import { ModelFile as ModelFile_2 } from '../platform/workflow/validation/schemas/workflowSchema';
|
|
8
9
|
import { NodeId as NodeId_2 } from '../platform/workflow/validation/schemas/workflowSchema';
|
|
9
10
|
import { NodeId as NodeId_3 } from '../workflow/validation/schemas/workflowSchema';
|
|
10
11
|
import { NodeId as NodeId_4 } from '../../validation/schemas/workflowSchema';
|
|
@@ -100,7 +101,7 @@ declare class AssetWidget extends BaseWidget<IAssetWidget> implements IAssetWidg
|
|
|
100
101
|
}
|
|
101
102
|
|
|
102
103
|
declare interface AuthUserInfo {
|
|
103
|
-
id:
|
|
104
|
+
id: UserId;
|
|
104
105
|
}
|
|
105
106
|
|
|
106
107
|
/** Dictionary of calls originating from ComfyUI core */
|
|
@@ -755,7 +756,7 @@ declare interface ClipboardPasteResult {
|
|
|
755
756
|
/** Map: original reroute IDs to newly created reroutes */
|
|
756
757
|
reroutes: Map<RerouteId, Reroute>;
|
|
757
758
|
/** Map: original subgraph IDs to newly created subgraphs */
|
|
758
|
-
subgraphs: Map<
|
|
759
|
+
subgraphs: Map<SubgraphId, Subgraph>;
|
|
759
760
|
}
|
|
760
761
|
|
|
761
762
|
declare type Clipspace = {
|
|
@@ -1392,7 +1393,12 @@ export declare class ComfyApp {
|
|
|
1392
1393
|
silentAssetErrors?: boolean;
|
|
1393
1394
|
}): Promise<void>;
|
|
1394
1395
|
private runMissingModelPipeline;
|
|
1395
|
-
|
|
1396
|
+
refreshMissingModels(options?: {
|
|
1397
|
+
silent?: boolean;
|
|
1398
|
+
}): Promise<{
|
|
1399
|
+
missingModels: ModelFile_2[];
|
|
1400
|
+
confirmedCandidates: MissingModelCandidate[];
|
|
1401
|
+
}>;
|
|
1396
1402
|
private cacheModelCandidates;
|
|
1397
1403
|
private cacheMediaCandidates;
|
|
1398
1404
|
private runMissingMediaPipeline;
|
|
@@ -1442,6 +1448,10 @@ export declare class ComfyApp {
|
|
|
1442
1448
|
* @returns Array of context menu items from all extensions
|
|
1443
1449
|
*/
|
|
1444
1450
|
collectNodeMenuItems(node: LGraphNode): IContextMenuValue[];
|
|
1451
|
+
/**
|
|
1452
|
+
* Reload node definitions and refresh combo lists on all nodes.
|
|
1453
|
+
*/
|
|
1454
|
+
reloadNodeDefs(): Promise<void>;
|
|
1445
1455
|
/**
|
|
1446
1456
|
* Refresh combo list on whole nodes
|
|
1447
1457
|
*/
|
|
@@ -1893,8 +1903,9 @@ export declare class ComfyApp {
|
|
|
1893
1903
|
"interface-panel-selected-surface": ZodOptional<ZodOptional<ZodString>>;
|
|
1894
1904
|
"interface-button-hover-surface": ZodOptional<ZodOptional<ZodString>>;
|
|
1895
1905
|
}, "strip", ZodTypeAny, {
|
|
1896
|
-
"fg-color"?: string | undefined;
|
|
1897
1906
|
"bg-color"?: string | undefined;
|
|
1907
|
+
"border-color"?: string | undefined;
|
|
1908
|
+
"fg-color"?: string | undefined;
|
|
1898
1909
|
"bg-img"?: string | undefined;
|
|
1899
1910
|
"comfy-menu-bg"?: string | undefined;
|
|
1900
1911
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -1903,7 +1914,6 @@ export declare class ComfyApp {
|
|
|
1903
1914
|
"descrip-text"?: string | undefined;
|
|
1904
1915
|
"drag-text"?: string | undefined;
|
|
1905
1916
|
"error-text"?: string | undefined;
|
|
1906
|
-
"border-color"?: string | undefined;
|
|
1907
1917
|
"tr-even-bg-color"?: string | undefined;
|
|
1908
1918
|
"tr-odd-bg-color"?: string | undefined;
|
|
1909
1919
|
"content-bg"?: string | undefined;
|
|
@@ -1920,8 +1930,9 @@ export declare class ComfyApp {
|
|
|
1920
1930
|
"interface-panel-selected-surface"?: string | undefined;
|
|
1921
1931
|
"interface-button-hover-surface"?: string | undefined;
|
|
1922
1932
|
}, {
|
|
1923
|
-
"fg-color"?: string | undefined;
|
|
1924
1933
|
"bg-color"?: string | undefined;
|
|
1934
|
+
"border-color"?: string | undefined;
|
|
1935
|
+
"fg-color"?: string | undefined;
|
|
1925
1936
|
"bg-img"?: string | undefined;
|
|
1926
1937
|
"comfy-menu-bg"?: string | undefined;
|
|
1927
1938
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -1930,7 +1941,6 @@ export declare class ComfyApp {
|
|
|
1930
1941
|
"descrip-text"?: string | undefined;
|
|
1931
1942
|
"drag-text"?: string | undefined;
|
|
1932
1943
|
"error-text"?: string | undefined;
|
|
1933
|
-
"border-color"?: string | undefined;
|
|
1934
1944
|
"tr-even-bg-color"?: string | undefined;
|
|
1935
1945
|
"tr-odd-bg-color"?: string | undefined;
|
|
1936
1946
|
"content-bg"?: string | undefined;
|
|
@@ -1993,8 +2003,9 @@ export declare class ComfyApp {
|
|
|
1993
2003
|
BADGE_BG_COLOR?: string | undefined;
|
|
1994
2004
|
};
|
|
1995
2005
|
comfy_base: {
|
|
1996
|
-
"fg-color"?: string | undefined;
|
|
1997
2006
|
"bg-color"?: string | undefined;
|
|
2007
|
+
"border-color"?: string | undefined;
|
|
2008
|
+
"fg-color"?: string | undefined;
|
|
1998
2009
|
"bg-img"?: string | undefined;
|
|
1999
2010
|
"comfy-menu-bg"?: string | undefined;
|
|
2000
2011
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -2003,7 +2014,6 @@ export declare class ComfyApp {
|
|
|
2003
2014
|
"descrip-text"?: string | undefined;
|
|
2004
2015
|
"drag-text"?: string | undefined;
|
|
2005
2016
|
"error-text"?: string | undefined;
|
|
2006
|
-
"border-color"?: string | undefined;
|
|
2007
2017
|
"tr-even-bg-color"?: string | undefined;
|
|
2008
2018
|
"tr-odd-bg-color"?: string | undefined;
|
|
2009
2019
|
"content-bg"?: string | undefined;
|
|
@@ -2066,8 +2076,9 @@ export declare class ComfyApp {
|
|
|
2066
2076
|
BADGE_BG_COLOR?: string | undefined;
|
|
2067
2077
|
};
|
|
2068
2078
|
comfy_base: {
|
|
2069
|
-
"fg-color"?: string | undefined;
|
|
2070
2079
|
"bg-color"?: string | undefined;
|
|
2080
|
+
"border-color"?: string | undefined;
|
|
2081
|
+
"fg-color"?: string | undefined;
|
|
2071
2082
|
"bg-img"?: string | undefined;
|
|
2072
2083
|
"comfy-menu-bg"?: string | undefined;
|
|
2073
2084
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -2076,7 +2087,6 @@ export declare class ComfyApp {
|
|
|
2076
2087
|
"descrip-text"?: string | undefined;
|
|
2077
2088
|
"drag-text"?: string | undefined;
|
|
2078
2089
|
"error-text"?: string | undefined;
|
|
2079
|
-
"border-color"?: string | undefined;
|
|
2080
2090
|
"tr-even-bg-color"?: string | undefined;
|
|
2081
2091
|
"tr-odd-bg-color"?: string | undefined;
|
|
2082
2092
|
"content-bg"?: string | undefined;
|
|
@@ -2133,6 +2143,7 @@ export declare class ComfyApp {
|
|
|
2133
2143
|
'Comfy.ModelLibrary.AutoLoadAll'?: boolean | undefined;
|
|
2134
2144
|
'Comfy.ModelLibrary.NameFormat'?: "title" | "filename" | undefined;
|
|
2135
2145
|
'Comfy.NodeSearchBoxImpl.NodePreview'?: boolean | undefined;
|
|
2146
|
+
'Comfy.NodeSearchBoxImpl.FollowCursor'?: boolean | undefined;
|
|
2136
2147
|
'Comfy.NodeSearchBoxImpl'?: "default" | "v1 (legacy)" | "litegraph (legacy)" | undefined;
|
|
2137
2148
|
'Comfy.NodeSearchBoxImpl.ShowCategory'?: boolean | undefined;
|
|
2138
2149
|
'Comfy.NodeSearchBoxImpl.ShowIdName'?: boolean | undefined;
|
|
@@ -2438,7 +2449,7 @@ export declare class ComfyApp {
|
|
|
2438
2449
|
/** Links */
|
|
2439
2450
|
declare interface ConnectingLink extends IInputOrOutput {
|
|
2440
2451
|
node: LGraphNode;
|
|
2441
|
-
slot:
|
|
2452
|
+
slot: SlotIndex;
|
|
2442
2453
|
pos: Point;
|
|
2443
2454
|
direction?: LinkDirection;
|
|
2444
2455
|
afterRerouteId?: RerouteId;
|
|
@@ -2883,7 +2894,7 @@ export declare class ComfyApp {
|
|
|
2883
2894
|
/** The graph that this node is a part of. */
|
|
2884
2895
|
readonly graph: LGraph | Subgraph;
|
|
2885
2896
|
inputs: {
|
|
2886
|
-
linkId:
|
|
2897
|
+
linkId: LinkId | null;
|
|
2887
2898
|
name: string;
|
|
2888
2899
|
type: ISlotType;
|
|
2889
2900
|
}[];
|
|
@@ -2994,7 +3005,7 @@ export declare class ComfyApp {
|
|
|
2994
3005
|
* The ID of the actual subgraph definition.
|
|
2995
3006
|
* @see {@link ExportedSubgraph.subgraphs}
|
|
2996
3007
|
*/
|
|
2997
|
-
type:
|
|
3008
|
+
type: SubgraphId;
|
|
2998
3009
|
/** Custom properties for this subgraph instance */
|
|
2999
3010
|
properties?: Dictionary<NodeProperty | undefined>;
|
|
3000
3011
|
}
|
|
@@ -3077,7 +3088,7 @@ export declare class ComfyApp {
|
|
|
3077
3088
|
readonly fromSlot: INodeOutputSlot | INodeInputSlot;
|
|
3078
3089
|
readonly fromPos: Point;
|
|
3079
3090
|
readonly fromDirection: LinkDirection;
|
|
3080
|
-
readonly fromSlotIndex:
|
|
3091
|
+
readonly fromSlotIndex: SlotIndex;
|
|
3081
3092
|
readonly outputNodeId: NodeId;
|
|
3082
3093
|
readonly outputNode?: LGraphNode;
|
|
3083
3094
|
readonly outputSlot?: INodeOutputSlot;
|
|
@@ -3182,6 +3193,8 @@ export declare class ComfyApp {
|
|
|
3182
3193
|
/** Internal; simplifies type definitions. */
|
|
3183
3194
|
declare type GraphOrSubgraph = LGraph | Subgraph;
|
|
3184
3195
|
|
|
3196
|
+
declare type GroupId = number;
|
|
3197
|
+
|
|
3185
3198
|
declare interface GroupNodeConfigEntry {
|
|
3186
3199
|
input?: Record<string, {
|
|
3187
3200
|
name?: string;
|
|
@@ -3567,7 +3580,7 @@ export declare class ComfyApp {
|
|
|
3567
3580
|
}
|
|
3568
3581
|
|
|
3569
3582
|
declare interface IFoundSlot extends IInputOrOutput {
|
|
3570
|
-
slot:
|
|
3583
|
+
slot: SlotIndex;
|
|
3571
3584
|
link_pos: Point;
|
|
3572
3585
|
}
|
|
3573
3586
|
|
|
@@ -3677,7 +3690,7 @@ export declare class ComfyApp {
|
|
|
3677
3690
|
declare interface INodeOutputSlot extends INodeSlot {
|
|
3678
3691
|
links: LinkId[] | null;
|
|
3679
3692
|
_data?: unknown;
|
|
3680
|
-
slot_index?:
|
|
3693
|
+
slot_index?: SlotIndex;
|
|
3681
3694
|
}
|
|
3682
3695
|
|
|
3683
3696
|
declare interface INodePropertyInfo {
|
|
@@ -3866,7 +3879,7 @@ export declare class ComfyApp {
|
|
|
3866
3879
|
*/
|
|
3867
3880
|
declare interface ISerialisedGraph extends BaseExportedGraph {
|
|
3868
3881
|
last_node_id: NodeId;
|
|
3869
|
-
last_link_id:
|
|
3882
|
+
last_link_id: LinkId;
|
|
3870
3883
|
nodes: ISerialisedNode[];
|
|
3871
3884
|
links: SerialisedLLinkArray[];
|
|
3872
3885
|
floatingLinks?: SerialisableLLink[];
|
|
@@ -3877,7 +3890,7 @@ export declare class ComfyApp {
|
|
|
3877
3890
|
|
|
3878
3891
|
/** Serialised LGraphGroup */
|
|
3879
3892
|
declare interface ISerialisedGroup {
|
|
3880
|
-
id:
|
|
3893
|
+
id: GroupId;
|
|
3881
3894
|
title: string;
|
|
3882
3895
|
bounding: number[];
|
|
3883
3896
|
color?: string;
|
|
@@ -4203,7 +4216,7 @@ export declare class ComfyApp {
|
|
|
4203
4216
|
get state(): LGraphState;
|
|
4204
4217
|
set state(value: LGraphState);
|
|
4205
4218
|
readonly events: CustomEventTarget<LGraphEventMap, "configuring" | "configured" | "subgraph-created" | "convert-to-subgraph" | "open-subgraph">;
|
|
4206
|
-
readonly _subgraphs: Map<
|
|
4219
|
+
readonly _subgraphs: Map<SubgraphId, Subgraph>;
|
|
4207
4220
|
_nodes: (LGraphNode | SubgraphNode)[];
|
|
4208
4221
|
_nodes_by_id: Record<NodeId, LGraphNode>;
|
|
4209
4222
|
_nodes_in_order: LGraphNode[];
|
|
@@ -4279,7 +4292,7 @@ export declare class ComfyApp {
|
|
|
4279
4292
|
* Removes all nodes from this graph
|
|
4280
4293
|
*/
|
|
4281
4294
|
clear(): void;
|
|
4282
|
-
get subgraphs(): Map<
|
|
4295
|
+
get subgraphs(): Map<SubgraphId, Subgraph>;
|
|
4283
4296
|
get nodes(): (LGraphNode | SubgraphNode)[];
|
|
4284
4297
|
get groups(): LGraphGroup[];
|
|
4285
4298
|
/**
|
|
@@ -4336,6 +4349,12 @@ export declare class ComfyApp {
|
|
|
4336
4349
|
* @returns number of milliseconds it took the last cycle
|
|
4337
4350
|
*/
|
|
4338
4351
|
getElapsedTime(): number;
|
|
4352
|
+
/**
|
|
4353
|
+
* Increments the internal version counter.
|
|
4354
|
+
* Currently only read for debug display in {@link LGraphCanvas.renderInfo}.
|
|
4355
|
+
* Centralized so a future VersionSystem can intercept, batch, or replace it.
|
|
4356
|
+
*/
|
|
4357
|
+
incrementVersion(): void;
|
|
4339
4358
|
/**
|
|
4340
4359
|
* @deprecated Will be removed in 0.9
|
|
4341
4360
|
* Sends an event to all the nodes, useful to trigger stuff
|
|
@@ -5514,6 +5533,11 @@ export declare class ComfyApp {
|
|
|
5514
5533
|
node: LGraphNode;
|
|
5515
5534
|
button: LGraphButton;
|
|
5516
5535
|
};
|
|
5536
|
+
/** Ghost placement mode has started or ended. */
|
|
5537
|
+
'litegraph:ghost-placement': {
|
|
5538
|
+
active: boolean;
|
|
5539
|
+
nodeId: NodeId;
|
|
5540
|
+
};
|
|
5517
5541
|
}
|
|
5518
5542
|
|
|
5519
5543
|
/** @inheritdoc {@link LGraphCanvas.state} */
|
|
@@ -5594,8 +5618,8 @@ export declare class ComfyApp {
|
|
|
5594
5618
|
declare interface LGraphExtra extends Dictionary<unknown> {
|
|
5595
5619
|
reroutes?: SerialisableReroute[];
|
|
5596
5620
|
linkExtensions?: {
|
|
5597
|
-
id:
|
|
5598
|
-
parentId:
|
|
5621
|
+
id: LinkId;
|
|
5622
|
+
parentId: RerouteId | undefined;
|
|
5599
5623
|
}[];
|
|
5600
5624
|
ds?: DragAndScaleState;
|
|
5601
5625
|
workflowRendererVersion?: RendererType;
|
|
@@ -5608,7 +5632,7 @@ export declare class ComfyApp {
|
|
|
5608
5632
|
static resizeLength: number;
|
|
5609
5633
|
static padding: number;
|
|
5610
5634
|
static defaultColour: string;
|
|
5611
|
-
id:
|
|
5635
|
+
id: GroupId;
|
|
5612
5636
|
color?: string;
|
|
5613
5637
|
title: string;
|
|
5614
5638
|
font?: string;
|
|
@@ -5622,7 +5646,7 @@ export declare class ComfyApp {
|
|
|
5622
5646
|
graph?: LGraph;
|
|
5623
5647
|
flags: IGraphGroupFlags;
|
|
5624
5648
|
selected?: boolean;
|
|
5625
|
-
constructor(title?: string, id?:
|
|
5649
|
+
constructor(title?: string, id?: GroupId);
|
|
5626
5650
|
/** @inheritdoc {@link IColorable.setColorOption} */
|
|
5627
5651
|
setColorOption(colorOption: ColorOption | null): void;
|
|
5628
5652
|
/** @inheritdoc {@link IColorable.getColorOption} */
|
|
@@ -5663,7 +5687,7 @@ export declare class ComfyApp {
|
|
|
5663
5687
|
* @param maxDepth Maximum recursion depth for nested groups. Use 1 to skip nested group computation.
|
|
5664
5688
|
* @param visited Set of already visited group IDs to prevent redundant computation.
|
|
5665
5689
|
*/
|
|
5666
|
-
recomputeInsideNodes(maxDepth?: number, visited?: Set<
|
|
5690
|
+
recomputeInsideNodes(maxDepth?: number, visited?: Set<GroupId>): void;
|
|
5667
5691
|
/**
|
|
5668
5692
|
* Resizes and moves the group to neatly fit all given {@link objects}.
|
|
5669
5693
|
* @param objects All objects that should be inside the group
|
|
@@ -6015,7 +6039,7 @@ export declare class ComfyApp {
|
|
|
6015
6039
|
/**
|
|
6016
6040
|
* sets the output data type, useful when you want to be able to overwrite the data type
|
|
6017
6041
|
*/
|
|
6018
|
-
setOutputDataType(slot:
|
|
6042
|
+
setOutputDataType(slot: SlotIndex, type: ISlotType): void;
|
|
6019
6043
|
/**
|
|
6020
6044
|
* Retrieves the input data (data traveling through the connection) from one slot
|
|
6021
6045
|
* @param slot
|
|
@@ -6028,7 +6052,7 @@ export declare class ComfyApp {
|
|
|
6028
6052
|
* @param slot
|
|
6029
6053
|
* @returns datatype in string format
|
|
6030
6054
|
*/
|
|
6031
|
-
getInputDataType(slot:
|
|
6055
|
+
getInputDataType(slot: SlotIndex): ISlotType | null;
|
|
6032
6056
|
/**
|
|
6033
6057
|
* Retrieves the input data from one slot using its name instead of slot number
|
|
6034
6058
|
* @param slot_name
|
|
@@ -6468,7 +6492,7 @@ export declare class ComfyApp {
|
|
|
6468
6492
|
* @param outputSlotIndex Output slot index
|
|
6469
6493
|
* @returns Position of the output slot
|
|
6470
6494
|
*/
|
|
6471
|
-
getOutputPos(outputSlotIndex:
|
|
6495
|
+
getOutputPos(outputSlotIndex: SlotIndex): Point;
|
|
6472
6496
|
/**
|
|
6473
6497
|
* Get slot position using layout tree if available, fallback to node's position * Unified implementation used by both LitegraphLinkAdapter and useLinkLayoutSync
|
|
6474
6498
|
* @param slotIndex The slot index
|
|
@@ -6677,10 +6701,10 @@ export declare class ComfyApp {
|
|
|
6677
6701
|
}
|
|
6678
6702
|
|
|
6679
6703
|
declare interface LGraphState {
|
|
6680
|
-
lastGroupId:
|
|
6704
|
+
lastGroupId: GroupId;
|
|
6681
6705
|
lastNodeId: number;
|
|
6682
|
-
lastLinkId:
|
|
6683
|
-
lastRerouteId:
|
|
6706
|
+
lastLinkId: LinkId;
|
|
6707
|
+
lastRerouteId: RerouteId;
|
|
6684
6708
|
}
|
|
6685
6709
|
|
|
6686
6710
|
declare type LGraphTriggerAction = LGraphTriggerEvent['type'];
|
|
@@ -6908,7 +6932,7 @@ export declare class ComfyApp {
|
|
|
6908
6932
|
readonly links: Map<LinkId, LLink>;
|
|
6909
6933
|
readonly reroutes: Map<RerouteId, Reroute>;
|
|
6910
6934
|
addFloatingLink(link: LLink): LLink;
|
|
6911
|
-
removeReroute(id:
|
|
6935
|
+
removeReroute(id: RerouteId): unknown;
|
|
6912
6936
|
removeFloatingLink(link: LLink): void;
|
|
6913
6937
|
}
|
|
6914
6938
|
|
|
@@ -6958,7 +6982,7 @@ export declare class ComfyApp {
|
|
|
6958
6982
|
/** Output node ID */
|
|
6959
6983
|
readonly origin_id: NodeId | undefined;
|
|
6960
6984
|
/** Output slot index */
|
|
6961
|
-
readonly origin_slot:
|
|
6985
|
+
readonly origin_slot: SlotIndex | undefined;
|
|
6962
6986
|
}
|
|
6963
6987
|
|
|
6964
6988
|
declare const LiteGraph_2: LiteGraphGlobal;
|
|
@@ -7650,7 +7674,7 @@ export declare class ComfyApp {
|
|
|
7650
7674
|
readonly fromSlot: INodeOutputSlot;
|
|
7651
7675
|
readonly fromPos: Point;
|
|
7652
7676
|
readonly fromDirection: LinkDirection;
|
|
7653
|
-
readonly fromSlotIndex:
|
|
7677
|
+
readonly fromSlotIndex: SlotIndex;
|
|
7654
7678
|
disconnectOnDrop: boolean;
|
|
7655
7679
|
readonly disconnectOrigin: Point;
|
|
7656
7680
|
constructor(network: LinkNetwork, link: LLink, fromReroute?: Reroute, dragDirection?: LinkDirection, startPoint?: Point);
|
|
@@ -7692,7 +7716,7 @@ export declare class ComfyApp {
|
|
|
7692
7716
|
abstract readonly fromSlot: INodeOutputSlot | INodeInputSlot;
|
|
7693
7717
|
abstract readonly fromPos: Point;
|
|
7694
7718
|
abstract readonly fromDirection: LinkDirection;
|
|
7695
|
-
abstract readonly fromSlotIndex:
|
|
7719
|
+
abstract readonly fromSlotIndex: SlotIndex;
|
|
7696
7720
|
readonly outputNodeId: NodeId;
|
|
7697
7721
|
readonly outputNode: LGraphNode;
|
|
7698
7722
|
readonly outputSlot: INodeOutputSlot;
|
|
@@ -7725,7 +7749,7 @@ export declare class ComfyApp {
|
|
|
7725
7749
|
readonly fromSlot: INodeInputSlot;
|
|
7726
7750
|
readonly fromPos: Point;
|
|
7727
7751
|
readonly fromDirection: LinkDirection;
|
|
7728
|
-
readonly fromSlotIndex:
|
|
7752
|
+
readonly fromSlotIndex: SlotIndex;
|
|
7729
7753
|
constructor(network: LinkNetwork, link: LLink, fromReroute?: Reroute, dragDirection?: LinkDirection);
|
|
7730
7754
|
canConnectToInput(): false;
|
|
7731
7755
|
canConnectToOutput(outputNode: NodeLike, output: INodeOutputSlot | SubgraphIO): boolean;
|
|
@@ -8294,7 +8318,7 @@ export declare class ComfyApp {
|
|
|
8294
8318
|
/** The slot that the link is being connected from. */
|
|
8295
8319
|
readonly fromSlot: INodeOutputSlot | INodeInputSlot | SubgraphInput | SubgraphOutput;
|
|
8296
8320
|
/** The index of the slot that the link is being connected from. */
|
|
8297
|
-
readonly fromSlotIndex:
|
|
8321
|
+
readonly fromSlotIndex: SlotIndex;
|
|
8298
8322
|
/** The reroute that the link is being connected from. */
|
|
8299
8323
|
readonly fromReroute?: Reroute;
|
|
8300
8324
|
/**
|
|
@@ -8736,6 +8760,9 @@ export declare class ComfyApp {
|
|
|
8736
8760
|
declare enum SlotDirection {
|
|
8737
8761
|
}
|
|
8738
8762
|
|
|
8763
|
+
/** Index of an input or output slot on a node. */
|
|
8764
|
+
declare type SlotIndex = number;
|
|
8765
|
+
|
|
8739
8766
|
/** @see RenderShape */
|
|
8740
8767
|
declare enum SlotShape {
|
|
8741
8768
|
Box = 1,
|
|
@@ -8868,6 +8895,12 @@ export declare class ComfyApp {
|
|
|
8868
8895
|
};
|
|
8869
8896
|
}
|
|
8870
8897
|
|
|
8898
|
+
/**
|
|
8899
|
+
* Unique identifier for a subgraph definition. Structurally a {@link UUID};
|
|
8900
|
+
* provided as a domain-specific alias for clarity at adoption sites.
|
|
8901
|
+
*/
|
|
8902
|
+
declare type SubgraphId = UUID;
|
|
8903
|
+
|
|
8871
8904
|
/**
|
|
8872
8905
|
* An input "slot" from a parent graph into a subgraph.
|
|
8873
8906
|
*
|
|
@@ -9052,7 +9085,7 @@ export declare class ComfyApp {
|
|
|
9052
9085
|
/** The definition of this subgraph; how its nodes are configured, etc. */
|
|
9053
9086
|
readonly subgraph: Subgraph;
|
|
9054
9087
|
inputs: (INodeInputSlot & Partial<ISubgraphInput>)[];
|
|
9055
|
-
readonly type:
|
|
9088
|
+
readonly type: SubgraphId;
|
|
9056
9089
|
readonly isVirtualNode: true;
|
|
9057
9090
|
graph: GraphOrSubgraph | null;
|
|
9058
9091
|
get rootGraph(): LGraph;
|
|
@@ -9410,7 +9443,7 @@ export declare class ComfyApp {
|
|
|
9410
9443
|
readonly fromReroute?: Reroute | undefined;
|
|
9411
9444
|
dragDirection: LinkDirection;
|
|
9412
9445
|
readonly toType = "input";
|
|
9413
|
-
readonly fromSlotIndex:
|
|
9446
|
+
readonly fromSlotIndex: SlotIndex;
|
|
9414
9447
|
readonly fromPos: Point;
|
|
9415
9448
|
fromDirection: LinkDirection;
|
|
9416
9449
|
readonly existingLink?: LLink;
|
|
@@ -9439,7 +9472,7 @@ export declare class ComfyApp {
|
|
|
9439
9472
|
dragDirection: LinkDirection;
|
|
9440
9473
|
readonly toType = "input";
|
|
9441
9474
|
readonly fromPos: Point;
|
|
9442
|
-
readonly fromSlotIndex:
|
|
9475
|
+
readonly fromSlotIndex: SlotIndex;
|
|
9443
9476
|
fromDirection: LinkDirection;
|
|
9444
9477
|
constructor(network: LinkNetwork, node: LGraphNode, fromSlot: INodeOutputSlot, fromReroute?: Reroute | undefined, dragDirection?: LinkDirection);
|
|
9445
9478
|
canConnectToInput(inputNode: NodeLike, input: INodeInputSlot): boolean;
|
|
@@ -9465,7 +9498,7 @@ export declare class ComfyApp {
|
|
|
9465
9498
|
dragDirection: LinkDirection;
|
|
9466
9499
|
readonly toType = "output";
|
|
9467
9500
|
readonly fromPos: Point;
|
|
9468
|
-
readonly fromSlotIndex:
|
|
9501
|
+
readonly fromSlotIndex: SlotIndex;
|
|
9469
9502
|
fromDirection: LinkDirection;
|
|
9470
9503
|
constructor(network: LinkNetwork, node: SubgraphOutputNode, fromSlot: SubgraphOutput, fromReroute?: Reroute | undefined, dragDirection?: LinkDirection);
|
|
9471
9504
|
canConnectToInput(): false;
|
|
@@ -9488,7 +9521,7 @@ export declare class ComfyApp {
|
|
|
9488
9521
|
dragDirection: LinkDirection;
|
|
9489
9522
|
readonly toType = "output";
|
|
9490
9523
|
readonly fromPos: Point;
|
|
9491
|
-
readonly fromSlotIndex:
|
|
9524
|
+
readonly fromSlotIndex: SlotIndex;
|
|
9492
9525
|
fromDirection: LinkDirection;
|
|
9493
9526
|
constructor(network: LinkNetwork, node: LGraphNode, fromSlot: INodeInputSlot, fromReroute?: Reroute | undefined, dragDirection?: LinkDirection);
|
|
9494
9527
|
canConnectToInput(): false;
|
|
@@ -9626,6 +9659,15 @@ export declare class ComfyApp {
|
|
|
9626
9659
|
rename(newPath: string): Promise<UserFile>;
|
|
9627
9660
|
}
|
|
9628
9661
|
|
|
9662
|
+
/**
|
|
9663
|
+
* Identifier for an authenticated user.
|
|
9664
|
+
*
|
|
9665
|
+
* Backed by the `id` claim returned from the auth provider, which is always
|
|
9666
|
+
* a string. This alias names that primitive at use sites (auth store,
|
|
9667
|
+
* workspace member APIs) without changing structural typing.
|
|
9668
|
+
*/
|
|
9669
|
+
declare type UserId = string;
|
|
9670
|
+
|
|
9629
9671
|
declare const useWorkflowStore: StoreDefinition<"workflow", Pick<{
|
|
9630
9672
|
activeWorkflow: Ref< {
|
|
9631
9673
|
isLoaded: true;
|
|
@@ -52555,8 +52597,9 @@ export declare class ComfyApp {
|
|
|
52555
52597
|
"interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
52556
52598
|
"interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
52557
52599
|
}, "strip", z.ZodTypeAny, {
|
|
52558
|
-
"fg-color"?: string | undefined;
|
|
52559
52600
|
"bg-color"?: string | undefined;
|
|
52601
|
+
"border-color"?: string | undefined;
|
|
52602
|
+
"fg-color"?: string | undefined;
|
|
52560
52603
|
"bg-img"?: string | undefined;
|
|
52561
52604
|
"comfy-menu-bg"?: string | undefined;
|
|
52562
52605
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -52565,7 +52608,6 @@ export declare class ComfyApp {
|
|
|
52565
52608
|
"descrip-text"?: string | undefined;
|
|
52566
52609
|
"drag-text"?: string | undefined;
|
|
52567
52610
|
"error-text"?: string | undefined;
|
|
52568
|
-
"border-color"?: string | undefined;
|
|
52569
52611
|
"tr-even-bg-color"?: string | undefined;
|
|
52570
52612
|
"tr-odd-bg-color"?: string | undefined;
|
|
52571
52613
|
"content-bg"?: string | undefined;
|
|
@@ -52582,8 +52624,9 @@ export declare class ComfyApp {
|
|
|
52582
52624
|
"interface-panel-selected-surface"?: string | undefined;
|
|
52583
52625
|
"interface-button-hover-surface"?: string | undefined;
|
|
52584
52626
|
}, {
|
|
52585
|
-
"fg-color"?: string | undefined;
|
|
52586
52627
|
"bg-color"?: string | undefined;
|
|
52628
|
+
"border-color"?: string | undefined;
|
|
52629
|
+
"fg-color"?: string | undefined;
|
|
52587
52630
|
"bg-img"?: string | undefined;
|
|
52588
52631
|
"comfy-menu-bg"?: string | undefined;
|
|
52589
52632
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -52592,7 +52635,6 @@ export declare class ComfyApp {
|
|
|
52592
52635
|
"descrip-text"?: string | undefined;
|
|
52593
52636
|
"drag-text"?: string | undefined;
|
|
52594
52637
|
"error-text"?: string | undefined;
|
|
52595
|
-
"border-color"?: string | undefined;
|
|
52596
52638
|
"tr-even-bg-color"?: string | undefined;
|
|
52597
52639
|
"tr-odd-bg-color"?: string | undefined;
|
|
52598
52640
|
"content-bg"?: string | undefined;
|
|
@@ -52655,8 +52697,9 @@ export declare class ComfyApp {
|
|
|
52655
52697
|
BADGE_BG_COLOR?: string | undefined;
|
|
52656
52698
|
};
|
|
52657
52699
|
comfy_base: {
|
|
52658
|
-
"fg-color"?: string | undefined;
|
|
52659
52700
|
"bg-color"?: string | undefined;
|
|
52701
|
+
"border-color"?: string | undefined;
|
|
52702
|
+
"fg-color"?: string | undefined;
|
|
52660
52703
|
"bg-img"?: string | undefined;
|
|
52661
52704
|
"comfy-menu-bg"?: string | undefined;
|
|
52662
52705
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -52665,7 +52708,6 @@ export declare class ComfyApp {
|
|
|
52665
52708
|
"descrip-text"?: string | undefined;
|
|
52666
52709
|
"drag-text"?: string | undefined;
|
|
52667
52710
|
"error-text"?: string | undefined;
|
|
52668
|
-
"border-color"?: string | undefined;
|
|
52669
52711
|
"tr-even-bg-color"?: string | undefined;
|
|
52670
52712
|
"tr-odd-bg-color"?: string | undefined;
|
|
52671
52713
|
"content-bg"?: string | undefined;
|
|
@@ -52728,8 +52770,9 @@ export declare class ComfyApp {
|
|
|
52728
52770
|
BADGE_BG_COLOR?: string | undefined;
|
|
52729
52771
|
};
|
|
52730
52772
|
comfy_base: {
|
|
52731
|
-
"fg-color"?: string | undefined;
|
|
52732
52773
|
"bg-color"?: string | undefined;
|
|
52774
|
+
"border-color"?: string | undefined;
|
|
52775
|
+
"fg-color"?: string | undefined;
|
|
52733
52776
|
"bg-img"?: string | undefined;
|
|
52734
52777
|
"comfy-menu-bg"?: string | undefined;
|
|
52735
52778
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -52738,7 +52781,6 @@ export declare class ComfyApp {
|
|
|
52738
52781
|
"descrip-text"?: string | undefined;
|
|
52739
52782
|
"drag-text"?: string | undefined;
|
|
52740
52783
|
"error-text"?: string | undefined;
|
|
52741
|
-
"border-color"?: string | undefined;
|
|
52742
52784
|
"tr-even-bg-color"?: string | undefined;
|
|
52743
52785
|
"tr-odd-bg-color"?: string | undefined;
|
|
52744
52786
|
"content-bg"?: string | undefined;
|
|
@@ -52917,8 +52959,9 @@ export declare class ComfyApp {
|
|
|
52917
52959
|
"interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
52918
52960
|
"interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
52919
52961
|
}, "strip", z.ZodTypeAny, {
|
|
52920
|
-
"fg-color"?: string | undefined;
|
|
52921
52962
|
"bg-color"?: string | undefined;
|
|
52963
|
+
"border-color"?: string | undefined;
|
|
52964
|
+
"fg-color"?: string | undefined;
|
|
52922
52965
|
"bg-img"?: string | undefined;
|
|
52923
52966
|
"comfy-menu-bg"?: string | undefined;
|
|
52924
52967
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -52927,7 +52970,6 @@ export declare class ComfyApp {
|
|
|
52927
52970
|
"descrip-text"?: string | undefined;
|
|
52928
52971
|
"drag-text"?: string | undefined;
|
|
52929
52972
|
"error-text"?: string | undefined;
|
|
52930
|
-
"border-color"?: string | undefined;
|
|
52931
52973
|
"tr-even-bg-color"?: string | undefined;
|
|
52932
52974
|
"tr-odd-bg-color"?: string | undefined;
|
|
52933
52975
|
"content-bg"?: string | undefined;
|
|
@@ -52944,8 +52986,9 @@ export declare class ComfyApp {
|
|
|
52944
52986
|
"interface-panel-selected-surface"?: string | undefined;
|
|
52945
52987
|
"interface-button-hover-surface"?: string | undefined;
|
|
52946
52988
|
}, {
|
|
52947
|
-
"fg-color"?: string | undefined;
|
|
52948
52989
|
"bg-color"?: string | undefined;
|
|
52990
|
+
"border-color"?: string | undefined;
|
|
52991
|
+
"fg-color"?: string | undefined;
|
|
52949
52992
|
"bg-img"?: string | undefined;
|
|
52950
52993
|
"comfy-menu-bg"?: string | undefined;
|
|
52951
52994
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -52954,7 +52997,6 @@ export declare class ComfyApp {
|
|
|
52954
52997
|
"descrip-text"?: string | undefined;
|
|
52955
52998
|
"drag-text"?: string | undefined;
|
|
52956
52999
|
"error-text"?: string | undefined;
|
|
52957
|
-
"border-color"?: string | undefined;
|
|
52958
53000
|
"tr-even-bg-color"?: string | undefined;
|
|
52959
53001
|
"tr-odd-bg-color"?: string | undefined;
|
|
52960
53002
|
"content-bg"?: string | undefined;
|
|
@@ -53017,8 +53059,9 @@ export declare class ComfyApp {
|
|
|
53017
53059
|
BADGE_BG_COLOR?: string | undefined;
|
|
53018
53060
|
};
|
|
53019
53061
|
comfy_base: {
|
|
53020
|
-
"fg-color"?: string | undefined;
|
|
53021
53062
|
"bg-color"?: string | undefined;
|
|
53063
|
+
"border-color"?: string | undefined;
|
|
53064
|
+
"fg-color"?: string | undefined;
|
|
53022
53065
|
"bg-img"?: string | undefined;
|
|
53023
53066
|
"comfy-menu-bg"?: string | undefined;
|
|
53024
53067
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -53027,7 +53070,6 @@ export declare class ComfyApp {
|
|
|
53027
53070
|
"descrip-text"?: string | undefined;
|
|
53028
53071
|
"drag-text"?: string | undefined;
|
|
53029
53072
|
"error-text"?: string | undefined;
|
|
53030
|
-
"border-color"?: string | undefined;
|
|
53031
53073
|
"tr-even-bg-color"?: string | undefined;
|
|
53032
53074
|
"tr-odd-bg-color"?: string | undefined;
|
|
53033
53075
|
"content-bg"?: string | undefined;
|
|
@@ -53090,8 +53132,9 @@ export declare class ComfyApp {
|
|
|
53090
53132
|
BADGE_BG_COLOR?: string | undefined;
|
|
53091
53133
|
};
|
|
53092
53134
|
comfy_base: {
|
|
53093
|
-
"fg-color"?: string | undefined;
|
|
53094
53135
|
"bg-color"?: string | undefined;
|
|
53136
|
+
"border-color"?: string | undefined;
|
|
53137
|
+
"fg-color"?: string | undefined;
|
|
53095
53138
|
"bg-img"?: string | undefined;
|
|
53096
53139
|
"comfy-menu-bg"?: string | undefined;
|
|
53097
53140
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -53100,7 +53143,6 @@ export declare class ComfyApp {
|
|
|
53100
53143
|
"descrip-text"?: string | undefined;
|
|
53101
53144
|
"drag-text"?: string | undefined;
|
|
53102
53145
|
"error-text"?: string | undefined;
|
|
53103
|
-
"border-color"?: string | undefined;
|
|
53104
53146
|
"tr-even-bg-color"?: string | undefined;
|
|
53105
53147
|
"tr-odd-bg-color"?: string | undefined;
|
|
53106
53148
|
"content-bg"?: string | undefined;
|
|
@@ -53279,8 +53321,9 @@ export declare class ComfyApp {
|
|
|
53279
53321
|
"interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
53280
53322
|
"interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
53281
53323
|
}, "strip", z.ZodTypeAny, {
|
|
53282
|
-
"fg-color"?: string | undefined;
|
|
53283
53324
|
"bg-color"?: string | undefined;
|
|
53325
|
+
"border-color"?: string | undefined;
|
|
53326
|
+
"fg-color"?: string | undefined;
|
|
53284
53327
|
"bg-img"?: string | undefined;
|
|
53285
53328
|
"comfy-menu-bg"?: string | undefined;
|
|
53286
53329
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -53289,7 +53332,6 @@ export declare class ComfyApp {
|
|
|
53289
53332
|
"descrip-text"?: string | undefined;
|
|
53290
53333
|
"drag-text"?: string | undefined;
|
|
53291
53334
|
"error-text"?: string | undefined;
|
|
53292
|
-
"border-color"?: string | undefined;
|
|
53293
53335
|
"tr-even-bg-color"?: string | undefined;
|
|
53294
53336
|
"tr-odd-bg-color"?: string | undefined;
|
|
53295
53337
|
"content-bg"?: string | undefined;
|
|
@@ -53306,8 +53348,9 @@ export declare class ComfyApp {
|
|
|
53306
53348
|
"interface-panel-selected-surface"?: string | undefined;
|
|
53307
53349
|
"interface-button-hover-surface"?: string | undefined;
|
|
53308
53350
|
}, {
|
|
53309
|
-
"fg-color"?: string | undefined;
|
|
53310
53351
|
"bg-color"?: string | undefined;
|
|
53352
|
+
"border-color"?: string | undefined;
|
|
53353
|
+
"fg-color"?: string | undefined;
|
|
53311
53354
|
"bg-img"?: string | undefined;
|
|
53312
53355
|
"comfy-menu-bg"?: string | undefined;
|
|
53313
53356
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -53316,7 +53359,6 @@ export declare class ComfyApp {
|
|
|
53316
53359
|
"descrip-text"?: string | undefined;
|
|
53317
53360
|
"drag-text"?: string | undefined;
|
|
53318
53361
|
"error-text"?: string | undefined;
|
|
53319
|
-
"border-color"?: string | undefined;
|
|
53320
53362
|
"tr-even-bg-color"?: string | undefined;
|
|
53321
53363
|
"tr-odd-bg-color"?: string | undefined;
|
|
53322
53364
|
"content-bg"?: string | undefined;
|
|
@@ -53379,8 +53421,9 @@ export declare class ComfyApp {
|
|
|
53379
53421
|
BADGE_BG_COLOR?: string | undefined;
|
|
53380
53422
|
};
|
|
53381
53423
|
comfy_base: {
|
|
53382
|
-
"fg-color"?: string | undefined;
|
|
53383
53424
|
"bg-color"?: string | undefined;
|
|
53425
|
+
"border-color"?: string | undefined;
|
|
53426
|
+
"fg-color"?: string | undefined;
|
|
53384
53427
|
"bg-img"?: string | undefined;
|
|
53385
53428
|
"comfy-menu-bg"?: string | undefined;
|
|
53386
53429
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -53389,7 +53432,6 @@ export declare class ComfyApp {
|
|
|
53389
53432
|
"descrip-text"?: string | undefined;
|
|
53390
53433
|
"drag-text"?: string | undefined;
|
|
53391
53434
|
"error-text"?: string | undefined;
|
|
53392
|
-
"border-color"?: string | undefined;
|
|
53393
53435
|
"tr-even-bg-color"?: string | undefined;
|
|
53394
53436
|
"tr-odd-bg-color"?: string | undefined;
|
|
53395
53437
|
"content-bg"?: string | undefined;
|
|
@@ -53452,8 +53494,9 @@ export declare class ComfyApp {
|
|
|
53452
53494
|
BADGE_BG_COLOR?: string | undefined;
|
|
53453
53495
|
};
|
|
53454
53496
|
comfy_base: {
|
|
53455
|
-
"fg-color"?: string | undefined;
|
|
53456
53497
|
"bg-color"?: string | undefined;
|
|
53498
|
+
"border-color"?: string | undefined;
|
|
53499
|
+
"fg-color"?: string | undefined;
|
|
53457
53500
|
"bg-img"?: string | undefined;
|
|
53458
53501
|
"comfy-menu-bg"?: string | undefined;
|
|
53459
53502
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -53462,7 +53505,6 @@ export declare class ComfyApp {
|
|
|
53462
53505
|
"descrip-text"?: string | undefined;
|
|
53463
53506
|
"drag-text"?: string | undefined;
|
|
53464
53507
|
"error-text"?: string | undefined;
|
|
53465
|
-
"border-color"?: string | undefined;
|
|
53466
53508
|
"tr-even-bg-color"?: string | undefined;
|
|
53467
53509
|
"tr-odd-bg-color"?: string | undefined;
|
|
53468
53510
|
"content-bg"?: string | undefined;
|
|
@@ -53526,6 +53568,7 @@ export declare class ComfyApp {
|
|
|
53526
53568
|
'Comfy.ModelLibrary.AutoLoadAll': z.ZodBoolean;
|
|
53527
53569
|
'Comfy.ModelLibrary.NameFormat': z.ZodEnum<["filename", "title"]>;
|
|
53528
53570
|
'Comfy.NodeSearchBoxImpl.NodePreview': z.ZodBoolean;
|
|
53571
|
+
'Comfy.NodeSearchBoxImpl.FollowCursor': z.ZodBoolean;
|
|
53529
53572
|
'Comfy.NodeSearchBoxImpl': z.ZodEnum<["default", "v1 (legacy)", "litegraph (legacy)"]>;
|
|
53530
53573
|
'Comfy.NodeSearchBoxImpl.ShowCategory': z.ZodBoolean;
|
|
53531
53574
|
'Comfy.NodeSearchBoxImpl.ShowIdName': z.ZodBoolean;
|
|
@@ -53894,8 +53937,9 @@ export declare class ComfyApp {
|
|
|
53894
53937
|
"interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
53895
53938
|
"interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
53896
53939
|
}, "strip", z.ZodTypeAny, {
|
|
53897
|
-
"fg-color"?: string | undefined;
|
|
53898
53940
|
"bg-color"?: string | undefined;
|
|
53941
|
+
"border-color"?: string | undefined;
|
|
53942
|
+
"fg-color"?: string | undefined;
|
|
53899
53943
|
"bg-img"?: string | undefined;
|
|
53900
53944
|
"comfy-menu-bg"?: string | undefined;
|
|
53901
53945
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -53904,7 +53948,6 @@ export declare class ComfyApp {
|
|
|
53904
53948
|
"descrip-text"?: string | undefined;
|
|
53905
53949
|
"drag-text"?: string | undefined;
|
|
53906
53950
|
"error-text"?: string | undefined;
|
|
53907
|
-
"border-color"?: string | undefined;
|
|
53908
53951
|
"tr-even-bg-color"?: string | undefined;
|
|
53909
53952
|
"tr-odd-bg-color"?: string | undefined;
|
|
53910
53953
|
"content-bg"?: string | undefined;
|
|
@@ -53921,8 +53964,9 @@ export declare class ComfyApp {
|
|
|
53921
53964
|
"interface-panel-selected-surface"?: string | undefined;
|
|
53922
53965
|
"interface-button-hover-surface"?: string | undefined;
|
|
53923
53966
|
}, {
|
|
53924
|
-
"fg-color"?: string | undefined;
|
|
53925
53967
|
"bg-color"?: string | undefined;
|
|
53968
|
+
"border-color"?: string | undefined;
|
|
53969
|
+
"fg-color"?: string | undefined;
|
|
53926
53970
|
"bg-img"?: string | undefined;
|
|
53927
53971
|
"comfy-menu-bg"?: string | undefined;
|
|
53928
53972
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -53931,7 +53975,6 @@ export declare class ComfyApp {
|
|
|
53931
53975
|
"descrip-text"?: string | undefined;
|
|
53932
53976
|
"drag-text"?: string | undefined;
|
|
53933
53977
|
"error-text"?: string | undefined;
|
|
53934
|
-
"border-color"?: string | undefined;
|
|
53935
53978
|
"tr-even-bg-color"?: string | undefined;
|
|
53936
53979
|
"tr-odd-bg-color"?: string | undefined;
|
|
53937
53980
|
"content-bg"?: string | undefined;
|
|
@@ -53994,8 +54037,9 @@ export declare class ComfyApp {
|
|
|
53994
54037
|
BADGE_BG_COLOR?: string | undefined;
|
|
53995
54038
|
};
|
|
53996
54039
|
comfy_base: {
|
|
53997
|
-
"fg-color"?: string | undefined;
|
|
53998
54040
|
"bg-color"?: string | undefined;
|
|
54041
|
+
"border-color"?: string | undefined;
|
|
54042
|
+
"fg-color"?: string | undefined;
|
|
53999
54043
|
"bg-img"?: string | undefined;
|
|
54000
54044
|
"comfy-menu-bg"?: string | undefined;
|
|
54001
54045
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -54004,7 +54048,6 @@ export declare class ComfyApp {
|
|
|
54004
54048
|
"descrip-text"?: string | undefined;
|
|
54005
54049
|
"drag-text"?: string | undefined;
|
|
54006
54050
|
"error-text"?: string | undefined;
|
|
54007
|
-
"border-color"?: string | undefined;
|
|
54008
54051
|
"tr-even-bg-color"?: string | undefined;
|
|
54009
54052
|
"tr-odd-bg-color"?: string | undefined;
|
|
54010
54053
|
"content-bg"?: string | undefined;
|
|
@@ -54067,8 +54110,9 @@ export declare class ComfyApp {
|
|
|
54067
54110
|
BADGE_BG_COLOR?: string | undefined;
|
|
54068
54111
|
};
|
|
54069
54112
|
comfy_base: {
|
|
54070
|
-
"fg-color"?: string | undefined;
|
|
54071
54113
|
"bg-color"?: string | undefined;
|
|
54114
|
+
"border-color"?: string | undefined;
|
|
54115
|
+
"fg-color"?: string | undefined;
|
|
54072
54116
|
"bg-img"?: string | undefined;
|
|
54073
54117
|
"comfy-menu-bg"?: string | undefined;
|
|
54074
54118
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -54077,7 +54121,6 @@ export declare class ComfyApp {
|
|
|
54077
54121
|
"descrip-text"?: string | undefined;
|
|
54078
54122
|
"drag-text"?: string | undefined;
|
|
54079
54123
|
"error-text"?: string | undefined;
|
|
54080
|
-
"border-color"?: string | undefined;
|
|
54081
54124
|
"tr-even-bg-color"?: string | undefined;
|
|
54082
54125
|
"tr-odd-bg-color"?: string | undefined;
|
|
54083
54126
|
"content-bg"?: string | undefined;
|
|
@@ -54134,6 +54177,7 @@ export declare class ComfyApp {
|
|
|
54134
54177
|
'Comfy.ModelLibrary.AutoLoadAll': boolean;
|
|
54135
54178
|
'Comfy.ModelLibrary.NameFormat': "title" | "filename";
|
|
54136
54179
|
'Comfy.NodeSearchBoxImpl.NodePreview': boolean;
|
|
54180
|
+
'Comfy.NodeSearchBoxImpl.FollowCursor': boolean;
|
|
54137
54181
|
'Comfy.NodeSearchBoxImpl': "default" | "v1 (legacy)" | "litegraph (legacy)";
|
|
54138
54182
|
'Comfy.NodeSearchBoxImpl.ShowCategory': boolean;
|
|
54139
54183
|
'Comfy.NodeSearchBoxImpl.ShowIdName': boolean;
|
|
@@ -54435,8 +54479,9 @@ export declare class ComfyApp {
|
|
|
54435
54479
|
"interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
54436
54480
|
"interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
54437
54481
|
}, "strip", z.ZodTypeAny, {
|
|
54438
|
-
"fg-color"?: string | undefined;
|
|
54439
54482
|
"bg-color"?: string | undefined;
|
|
54483
|
+
"border-color"?: string | undefined;
|
|
54484
|
+
"fg-color"?: string | undefined;
|
|
54440
54485
|
"bg-img"?: string | undefined;
|
|
54441
54486
|
"comfy-menu-bg"?: string | undefined;
|
|
54442
54487
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -54445,7 +54490,6 @@ export declare class ComfyApp {
|
|
|
54445
54490
|
"descrip-text"?: string | undefined;
|
|
54446
54491
|
"drag-text"?: string | undefined;
|
|
54447
54492
|
"error-text"?: string | undefined;
|
|
54448
|
-
"border-color"?: string | undefined;
|
|
54449
54493
|
"tr-even-bg-color"?: string | undefined;
|
|
54450
54494
|
"tr-odd-bg-color"?: string | undefined;
|
|
54451
54495
|
"content-bg"?: string | undefined;
|
|
@@ -54462,8 +54506,9 @@ export declare class ComfyApp {
|
|
|
54462
54506
|
"interface-panel-selected-surface"?: string | undefined;
|
|
54463
54507
|
"interface-button-hover-surface"?: string | undefined;
|
|
54464
54508
|
}, {
|
|
54465
|
-
"fg-color"?: string | undefined;
|
|
54466
54509
|
"bg-color"?: string | undefined;
|
|
54510
|
+
"border-color"?: string | undefined;
|
|
54511
|
+
"fg-color"?: string | undefined;
|
|
54467
54512
|
"bg-img"?: string | undefined;
|
|
54468
54513
|
"comfy-menu-bg"?: string | undefined;
|
|
54469
54514
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -54472,7 +54517,6 @@ export declare class ComfyApp {
|
|
|
54472
54517
|
"descrip-text"?: string | undefined;
|
|
54473
54518
|
"drag-text"?: string | undefined;
|
|
54474
54519
|
"error-text"?: string | undefined;
|
|
54475
|
-
"border-color"?: string | undefined;
|
|
54476
54520
|
"tr-even-bg-color"?: string | undefined;
|
|
54477
54521
|
"tr-odd-bg-color"?: string | undefined;
|
|
54478
54522
|
"content-bg"?: string | undefined;
|
|
@@ -54535,8 +54579,9 @@ export declare class ComfyApp {
|
|
|
54535
54579
|
BADGE_BG_COLOR?: string | undefined;
|
|
54536
54580
|
};
|
|
54537
54581
|
comfy_base: {
|
|
54538
|
-
"fg-color"?: string | undefined;
|
|
54539
54582
|
"bg-color"?: string | undefined;
|
|
54583
|
+
"border-color"?: string | undefined;
|
|
54584
|
+
"fg-color"?: string | undefined;
|
|
54540
54585
|
"bg-img"?: string | undefined;
|
|
54541
54586
|
"comfy-menu-bg"?: string | undefined;
|
|
54542
54587
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -54545,7 +54590,6 @@ export declare class ComfyApp {
|
|
|
54545
54590
|
"descrip-text"?: string | undefined;
|
|
54546
54591
|
"drag-text"?: string | undefined;
|
|
54547
54592
|
"error-text"?: string | undefined;
|
|
54548
|
-
"border-color"?: string | undefined;
|
|
54549
54593
|
"tr-even-bg-color"?: string | undefined;
|
|
54550
54594
|
"tr-odd-bg-color"?: string | undefined;
|
|
54551
54595
|
"content-bg"?: string | undefined;
|
|
@@ -54608,8 +54652,9 @@ export declare class ComfyApp {
|
|
|
54608
54652
|
BADGE_BG_COLOR?: string | undefined;
|
|
54609
54653
|
};
|
|
54610
54654
|
comfy_base: {
|
|
54611
|
-
"fg-color"?: string | undefined;
|
|
54612
54655
|
"bg-color"?: string | undefined;
|
|
54656
|
+
"border-color"?: string | undefined;
|
|
54657
|
+
"fg-color"?: string | undefined;
|
|
54613
54658
|
"bg-img"?: string | undefined;
|
|
54614
54659
|
"comfy-menu-bg"?: string | undefined;
|
|
54615
54660
|
"comfy-menu-secondary-bg"?: string | undefined;
|
|
@@ -54618,7 +54663,6 @@ export declare class ComfyApp {
|
|
|
54618
54663
|
"descrip-text"?: string | undefined;
|
|
54619
54664
|
"drag-text"?: string | undefined;
|
|
54620
54665
|
"error-text"?: string | undefined;
|
|
54621
|
-
"border-color"?: string | undefined;
|
|
54622
54666
|
"tr-even-bg-color"?: string | undefined;
|
|
54623
54667
|
"tr-odd-bg-color"?: string | undefined;
|
|
54624
54668
|
"content-bg"?: string | undefined;
|
|
@@ -54675,6 +54719,7 @@ export declare class ComfyApp {
|
|
|
54675
54719
|
'Comfy.ModelLibrary.AutoLoadAll': boolean;
|
|
54676
54720
|
'Comfy.ModelLibrary.NameFormat': "title" | "filename";
|
|
54677
54721
|
'Comfy.NodeSearchBoxImpl.NodePreview': boolean;
|
|
54722
|
+
'Comfy.NodeSearchBoxImpl.FollowCursor': boolean;
|
|
54678
54723
|
'Comfy.NodeSearchBoxImpl': "default" | "v1 (legacy)" | "litegraph (legacy)";
|
|
54679
54724
|
'Comfy.NodeSearchBoxImpl.ShowCategory': boolean;
|
|
54680
54725
|
'Comfy.NodeSearchBoxImpl.ShowIdName': boolean;
|