Remove Clipspace integration from CanvasView

Eliminates the sendCanvasToClipspace method and related UI/menu options from CanvasView and its TypeScript counterpart, as well as the associated type definition. Also removes the unused maskContext getter from MaskTool. This refactor likely reflects a change in feature requirements or a move away from Impact Pack compatibility.
This commit is contained in:
Dariusz L
2025-07-22 23:19:34 +02:00
parent eaf9c28ef0
commit 784e3d9296
5 changed files with 0 additions and 267 deletions

View File

@@ -32,7 +32,6 @@ export interface ComfyNode {
addDOMWidget: (name: string, type: string, element: HTMLElement, options?: any) => any;
addWidget: (type: string, name: string, value: any, callback?: (value: any) => void, options?: any) => any;
setDirtyCanvas: (force: boolean, dirty: boolean) => void;
sendCanvasToClipspace?: () => Promise<void>;
}
declare global {