@comfyorg/comfyui-frontend-types 1.42.5 → 1.42.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 +7 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { ComfyApiWorkflow } from '../platform/workflow/validation/schemas/workfl
|
|
|
2
2
|
import { ComfyWorkflowJSON } from '../platform/workflow/validation/schemas/workflowSchema';
|
|
3
3
|
import { ComfyWorkflowJSON as ComfyWorkflowJSON_2 } from '../../validation/schemas/workflowSchema';
|
|
4
4
|
import { Component } from 'vue';
|
|
5
|
-
import {
|
|
5
|
+
import { CurveData } from '../../../../components/curve/types';
|
|
6
6
|
import { DOMWidget } from '../scripts/domWidget';
|
|
7
7
|
import { DOMWidgetOptions } from '../scripts/domWidget';
|
|
8
8
|
import { IFuseOptions } from 'fuse.js';
|
|
@@ -2088,6 +2088,7 @@ export declare class ComfyApp {
|
|
|
2088
2088
|
'Comfy.Workflow.ShowMissingNodesWarning'?: boolean | undefined;
|
|
2089
2089
|
'Comfy.Workflow.ShowMissingModelsWarning'?: boolean | undefined;
|
|
2090
2090
|
'Comfy.Workflow.WarnBlueprintOverwrite'?: boolean | undefined;
|
|
2091
|
+
'Comfy.Desktop.CloudNotificationShown'?: boolean | undefined;
|
|
2091
2092
|
'Comfy.DisableFloatRounding'?: boolean | undefined;
|
|
2092
2093
|
'Comfy.DisableSliders'?: boolean | undefined;
|
|
2093
2094
|
'Comfy.DOMClippingEnabled'?: boolean | undefined;
|
|
@@ -3437,9 +3438,9 @@ export declare class ComfyApp {
|
|
|
3437
3438
|
height?: number | string;
|
|
3438
3439
|
}
|
|
3439
3440
|
|
|
3440
|
-
declare interface ICurveWidget extends IBaseWidget<
|
|
3441
|
+
declare interface ICurveWidget extends IBaseWidget<CurveData, 'curve'> {
|
|
3441
3442
|
type: 'curve';
|
|
3442
|
-
value:
|
|
3443
|
+
value: CurveData;
|
|
3443
3444
|
}
|
|
3444
3445
|
|
|
3445
3446
|
/**
|
|
@@ -16598,6 +16599,7 @@ export declare class ComfyApp {
|
|
|
16598
16599
|
'Comfy.Workflow.ShowMissingNodesWarning': z.ZodBoolean;
|
|
16599
16600
|
'Comfy.Workflow.ShowMissingModelsWarning': z.ZodBoolean;
|
|
16600
16601
|
'Comfy.Workflow.WarnBlueprintOverwrite': z.ZodBoolean;
|
|
16602
|
+
'Comfy.Desktop.CloudNotificationShown': z.ZodBoolean;
|
|
16601
16603
|
'Comfy.DisableFloatRounding': z.ZodBoolean;
|
|
16602
16604
|
'Comfy.DisableSliders': z.ZodBoolean;
|
|
16603
16605
|
'Comfy.DOMClippingEnabled': z.ZodBoolean;
|
|
@@ -17223,6 +17225,7 @@ export declare class ComfyApp {
|
|
|
17223
17225
|
'Comfy.Workflow.ShowMissingNodesWarning': boolean;
|
|
17224
17226
|
'Comfy.Workflow.ShowMissingModelsWarning': boolean;
|
|
17225
17227
|
'Comfy.Workflow.WarnBlueprintOverwrite': boolean;
|
|
17228
|
+
'Comfy.Desktop.CloudNotificationShown': boolean;
|
|
17226
17229
|
'Comfy.DisableFloatRounding': boolean;
|
|
17227
17230
|
'Comfy.DisableSliders': boolean;
|
|
17228
17231
|
'Comfy.DOMClippingEnabled': boolean;
|
|
@@ -17775,6 +17778,7 @@ export declare class ComfyApp {
|
|
|
17775
17778
|
'Comfy.Workflow.ShowMissingNodesWarning': boolean;
|
|
17776
17779
|
'Comfy.Workflow.ShowMissingModelsWarning': boolean;
|
|
17777
17780
|
'Comfy.Workflow.WarnBlueprintOverwrite': boolean;
|
|
17781
|
+
'Comfy.Desktop.CloudNotificationShown': boolean;
|
|
17778
17782
|
'Comfy.DisableFloatRounding': boolean;
|
|
17779
17783
|
'Comfy.DisableSliders': boolean;
|
|
17780
17784
|
'Comfy.DOMClippingEnabled': boolean;
|