@comfyorg/comfyui-frontend-types 1.28.5 → 1.28.7
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 +5 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1010,7 +1010,6 @@ export declare class ComfyApp {
|
|
|
1010
1010
|
bodyBottom: HTMLElement;
|
|
1011
1011
|
canvasContainer: HTMLElement;
|
|
1012
1012
|
menu: ComfyAppMenu;
|
|
1013
|
-
bypassBgColor: string;
|
|
1014
1013
|
openClipspace: () => void;
|
|
1015
1014
|
private positionConversion?;
|
|
1016
1015
|
/**
|
|
@@ -1094,7 +1093,6 @@ export declare class ComfyApp {
|
|
|
1094
1093
|
* Handle keypress
|
|
1095
1094
|
*/
|
|
1096
1095
|
private addProcessKeyHandler;
|
|
1097
|
-
private addDrawNodeHandler;
|
|
1098
1096
|
/**
|
|
1099
1097
|
* Handles updates from the API socket
|
|
1100
1098
|
*/
|
|
@@ -4003,6 +4001,7 @@ export declare class ComfyApp {
|
|
|
4003
4001
|
*/
|
|
4004
4002
|
drawSnapGuide(ctx: CanvasRenderingContext2D, item: Positionable, shape?: RenderShape): void;
|
|
4005
4003
|
drawConnections(ctx: CanvasRenderingContext2D): void;
|
|
4004
|
+
private getNodeModeAlpha;
|
|
4006
4005
|
/**
|
|
4007
4006
|
* Build LinkRenderContext from canvas properties
|
|
4008
4007
|
* Helper method for using LitegraphLinkAdapter
|
|
@@ -5479,6 +5478,8 @@ export declare class ComfyApp {
|
|
|
5479
5478
|
NODE_BOX_OUTLINE_COLOR: string;
|
|
5480
5479
|
NODE_ERROR_COLOUR: string;
|
|
5481
5480
|
NODE_FONT: string;
|
|
5481
|
+
NODE_DEFAULT_BYPASS_COLOR: string;
|
|
5482
|
+
NODE_OPACITY: number;
|
|
5482
5483
|
DEFAULT_FONT: string;
|
|
5483
5484
|
DEFAULT_SHADOW_COLOR: string;
|
|
5484
5485
|
DEFAULT_GROUP_FONT: number;
|
|
@@ -5715,6 +5716,8 @@ export declare class ComfyApp {
|
|
|
5715
5716
|
* @default false
|
|
5716
5717
|
*/
|
|
5717
5718
|
vueNodesMode: boolean;
|
|
5719
|
+
nodeOpacity: number;
|
|
5720
|
+
nodeLightness: number | undefined;
|
|
5718
5721
|
LGraph: typeof LGraph;
|
|
5719
5722
|
LLink: typeof LLink;
|
|
5720
5723
|
LGraphNode: typeof LGraphNode;
|