@comfyorg/comfyui-frontend-types 1.19.0 → 1.19.2
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 +606 -2
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -115,7 +115,7 @@ declare interface BackendApiCalls {
|
|
|
115
115
|
execution_interrupted: ExecutionInterruptedWsMessage;
|
|
116
116
|
execution_cached: ExecutionCachedWsMessage;
|
|
117
117
|
logs: LogsWsMessage;
|
|
118
|
-
/**
|
|
118
|
+
/** Binary preview/progress data */
|
|
119
119
|
b_preview: Blob;
|
|
120
120
|
}
|
|
121
121
|
|
|
@@ -446,7 +446,8 @@ export declare class ComfyApp {
|
|
|
446
446
|
*/
|
|
447
447
|
static clipspace: Clipspace | null;
|
|
448
448
|
static clipspace_invalidate_handler: (() => void) | null;
|
|
449
|
-
static open_maskeditor: null;
|
|
449
|
+
static open_maskeditor: (() => void) | null;
|
|
450
|
+
static maskeditor_is_opended: (() => void) | null;
|
|
450
451
|
static clipspace_return_node: null;
|
|
451
452
|
vueAppReady: boolean;
|
|
452
453
|
api: ComfyApi;
|
|
@@ -1116,6 +1117,8 @@ export declare class ComfyApp {
|
|
|
1116
1117
|
mediaSubtype: string;
|
|
1117
1118
|
thumbnailVariant?: string;
|
|
1118
1119
|
description: string;
|
|
1120
|
+
localizedTitle?: string;
|
|
1121
|
+
localizedDescription?: string;
|
|
1119
1122
|
}
|
|
1120
1123
|
|
|
1121
1124
|
export { TerminalSize }
|
|
@@ -2988,6 +2991,607 @@ export declare class ComfyApp {
|
|
|
2988
2991
|
} | undefined;
|
|
2989
2992
|
};
|
|
2990
2993
|
};
|
|
2994
|
+
showApiNodesNewsDialog: () => {
|
|
2995
|
+
key: string;
|
|
2996
|
+
visible: boolean;
|
|
2997
|
+
title?: string;
|
|
2998
|
+
headerComponent?: FunctionalComponent<any, {}, any, {}> | {
|
|
2999
|
+
new (...args: any[]): any;
|
|
3000
|
+
__isFragment?: never;
|
|
3001
|
+
__isTeleport?: never;
|
|
3002
|
+
__isSuspense?: never;
|
|
3003
|
+
} | {
|
|
3004
|
+
[x: string]: any;
|
|
3005
|
+
setup?: ((this: void, props: LooseRequired<any>, ctx: {
|
|
3006
|
+
attrs: {
|
|
3007
|
+
[x: string]: unknown;
|
|
3008
|
+
};
|
|
3009
|
+
slots: Readonly<{
|
|
3010
|
+
[name: string]: Slot<any> | undefined;
|
|
3011
|
+
}>;
|
|
3012
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
3013
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
3014
|
+
}) => Promise<any> | any | RenderFunction | void) | undefined;
|
|
3015
|
+
name?: string;
|
|
3016
|
+
template?: string | object;
|
|
3017
|
+
render?: Function;
|
|
3018
|
+
components?: Record<string, Component<any, any, any, ComputedOptions, MethodOptions, {}, any>> | undefined;
|
|
3019
|
+
directives?: Record<string, Directive<any, any, string, string>> | undefined;
|
|
3020
|
+
inheritAttrs?: boolean;
|
|
3021
|
+
emits?: any;
|
|
3022
|
+
slots?: {} | undefined;
|
|
3023
|
+
expose?: string[] | undefined;
|
|
3024
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
3025
|
+
compilerOptions?: {
|
|
3026
|
+
isCustomElement?: (tag: string) => boolean;
|
|
3027
|
+
whitespace?: "preserve" | "condense";
|
|
3028
|
+
comments?: boolean;
|
|
3029
|
+
delimiters?: [string, string];
|
|
3030
|
+
} | undefined;
|
|
3031
|
+
call?: (this: unknown, ...args: unknown[]) => never;
|
|
3032
|
+
__isFragment?: never;
|
|
3033
|
+
__isTeleport?: never;
|
|
3034
|
+
__isSuspense?: never;
|
|
3035
|
+
__defaults?: {} | undefined;
|
|
3036
|
+
compatConfig?: {
|
|
3037
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
3038
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
3039
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
3040
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
3041
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
3042
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
3043
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
3044
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
3045
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
3046
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
3047
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
3048
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
3049
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
3050
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
3051
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
3052
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
3053
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
3054
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
3055
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
3056
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
3057
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
3058
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
3059
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
3060
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
3061
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
3062
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
3063
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
3064
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
3065
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
3066
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
3067
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
3068
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
3069
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
3070
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
3071
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
3072
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
3073
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
3074
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
3075
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
3076
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
3077
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
3078
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
3079
|
+
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3);
|
|
3080
|
+
} | undefined;
|
|
3081
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
3082
|
+
computed?: ComputedOptions | undefined;
|
|
3083
|
+
methods?: MethodOptions | undefined;
|
|
3084
|
+
watch?: {
|
|
3085
|
+
[x: string]: (string | WatchCallback | ({
|
|
3086
|
+
handler: WatchCallback | string;
|
|
3087
|
+
} & WatchOptions<boolean>)) | (string | WatchCallback | ({
|
|
3088
|
+
handler: WatchCallback | string;
|
|
3089
|
+
} & WatchOptions<boolean>))[];
|
|
3090
|
+
};
|
|
3091
|
+
provide?: ComponentProvideOptions | undefined;
|
|
3092
|
+
inject?: {} | string[] | undefined;
|
|
3093
|
+
filters?: Record<string, Function>;
|
|
3094
|
+
mixins?: any[] | undefined;
|
|
3095
|
+
extends?: any;
|
|
3096
|
+
beforeCreate?: (() => void) | undefined;
|
|
3097
|
+
created?: (() => void) | undefined;
|
|
3098
|
+
beforeMount?: (() => void) | undefined;
|
|
3099
|
+
mounted?: (() => void) | undefined;
|
|
3100
|
+
beforeUpdate?: (() => void) | undefined;
|
|
3101
|
+
updated?: (() => void) | undefined;
|
|
3102
|
+
activated?: (() => void) | undefined;
|
|
3103
|
+
deactivated?: (() => void) | undefined;
|
|
3104
|
+
beforeDestroy?: (() => void) | undefined;
|
|
3105
|
+
beforeUnmount?: (() => void) | undefined;
|
|
3106
|
+
destroyed?: (() => void) | undefined;
|
|
3107
|
+
unmounted?: (() => void) | undefined;
|
|
3108
|
+
renderTracked?: (e: DebuggerEvent) => void;
|
|
3109
|
+
renderTriggered?: (e: DebuggerEvent) => void;
|
|
3110
|
+
errorCaptured?: (err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void;
|
|
3111
|
+
delimiters?: [string, string];
|
|
3112
|
+
__differentiator?: string | number | symbol | undefined;
|
|
3113
|
+
__isBuiltIn?: boolean;
|
|
3114
|
+
__file?: string;
|
|
3115
|
+
__name?: string;
|
|
3116
|
+
i18n?: {
|
|
3117
|
+
locale?: string | undefined;
|
|
3118
|
+
fallbackLocale?: string | false | string[] | {
|
|
3119
|
+
[x: string]: string[];
|
|
3120
|
+
} | undefined;
|
|
3121
|
+
messages?: {
|
|
3122
|
+
[x: string]: LocaleMessage<VueMessageType>;
|
|
3123
|
+
} | undefined;
|
|
3124
|
+
flatJson?: boolean | undefined;
|
|
3125
|
+
datetimeFormats?: {
|
|
3126
|
+
[x: string]: IntlDateTimeFormat;
|
|
3127
|
+
} | undefined;
|
|
3128
|
+
numberFormats?: {
|
|
3129
|
+
[x: string]: IntlNumberFormat;
|
|
3130
|
+
} | undefined;
|
|
3131
|
+
availableLocales?: Locale[];
|
|
3132
|
+
modifiers?: LinkedModifiers<VueMessageType> | undefined;
|
|
3133
|
+
formatter?: {
|
|
3134
|
+
interpolate: (message: string, values: any, path: string) => Array<any> | null;
|
|
3135
|
+
} | undefined;
|
|
3136
|
+
missing?: MissingHandler | undefined;
|
|
3137
|
+
fallbackRoot?: boolean | undefined;
|
|
3138
|
+
silentTranslationWarn?: boolean | RegExp | undefined;
|
|
3139
|
+
silentFallbackWarn?: boolean | RegExp | undefined;
|
|
3140
|
+
formatFallbackMessages?: boolean | undefined;
|
|
3141
|
+
preserveDirectiveContent?: boolean;
|
|
3142
|
+
warnHtmlInMessage?: WarnHtmlInMessageLevel;
|
|
3143
|
+
escapeParameterHtml?: boolean | undefined;
|
|
3144
|
+
sharedMessages?: LocaleMessages<VueMessageType>;
|
|
3145
|
+
pluralizationRules?: PluralizationRules | undefined;
|
|
3146
|
+
postTranslation?: PostTranslationHandler<VueMessageType> | undefined;
|
|
3147
|
+
sync?: boolean;
|
|
3148
|
+
messageResolver?: MessageResolver;
|
|
3149
|
+
} | undefined;
|
|
3150
|
+
__i18n?: {
|
|
3151
|
+
locale: Locale;
|
|
3152
|
+
resource: LocaleMessages<VueMessageType>;
|
|
3153
|
+
}[] | undefined;
|
|
3154
|
+
__INTLIFY_META__?: string;
|
|
3155
|
+
firebase?: FirebaseOption;
|
|
3156
|
+
firestore?: FirestoreOption;
|
|
3157
|
+
beforeRouteEnter?: TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : NavigationGuardWithThis<undefined>;
|
|
3158
|
+
beforeRouteUpdate?: TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : NavigationGuard;
|
|
3159
|
+
beforeRouteLeave?: TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : NavigationGuard;
|
|
3160
|
+
} | undefined;
|
|
3161
|
+
component: FunctionalComponent<any, {}, any, {}> | {
|
|
3162
|
+
new (...args: any[]): any;
|
|
3163
|
+
__isFragment?: never;
|
|
3164
|
+
__isTeleport?: never;
|
|
3165
|
+
__isSuspense?: never;
|
|
3166
|
+
} | {
|
|
3167
|
+
[x: string]: any;
|
|
3168
|
+
setup?: ((this: void, props: LooseRequired<any>, ctx: {
|
|
3169
|
+
attrs: {
|
|
3170
|
+
[x: string]: unknown;
|
|
3171
|
+
};
|
|
3172
|
+
slots: Readonly<{
|
|
3173
|
+
[name: string]: Slot<any> | undefined;
|
|
3174
|
+
}>;
|
|
3175
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
3176
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
3177
|
+
}) => Promise<any> | any | RenderFunction | void) | undefined;
|
|
3178
|
+
name?: string;
|
|
3179
|
+
template?: string | object;
|
|
3180
|
+
render?: Function;
|
|
3181
|
+
components?: Record<string, Component<any, any, any, ComputedOptions, MethodOptions, {}, any>> | undefined;
|
|
3182
|
+
directives?: Record<string, Directive<any, any, string, string>> | undefined;
|
|
3183
|
+
inheritAttrs?: boolean;
|
|
3184
|
+
emits?: any;
|
|
3185
|
+
slots?: {} | undefined;
|
|
3186
|
+
expose?: string[] | undefined;
|
|
3187
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
3188
|
+
compilerOptions?: {
|
|
3189
|
+
isCustomElement?: (tag: string) => boolean;
|
|
3190
|
+
whitespace?: "preserve" | "condense";
|
|
3191
|
+
comments?: boolean;
|
|
3192
|
+
delimiters?: [string, string];
|
|
3193
|
+
} | undefined;
|
|
3194
|
+
call?: (this: unknown, ...args: unknown[]) => never;
|
|
3195
|
+
__isFragment?: never;
|
|
3196
|
+
__isTeleport?: never;
|
|
3197
|
+
__isSuspense?: never;
|
|
3198
|
+
__defaults?: {} | undefined;
|
|
3199
|
+
compatConfig?: {
|
|
3200
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
3201
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
3202
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
3203
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
3204
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
3205
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
3206
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
3207
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
3208
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
3209
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
3210
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
3211
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
3212
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
3213
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
3214
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
3215
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
3216
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
3217
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
3218
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
3219
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
3220
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
3221
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
3222
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
3223
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
3224
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
3225
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
3226
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
3227
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
3228
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
3229
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
3230
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
3231
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
3232
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
3233
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
3234
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
3235
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
3236
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
3237
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
3238
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
3239
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
3240
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
3241
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
3242
|
+
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3);
|
|
3243
|
+
} | undefined;
|
|
3244
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
3245
|
+
computed?: ComputedOptions | undefined;
|
|
3246
|
+
methods?: MethodOptions | undefined;
|
|
3247
|
+
watch?: {
|
|
3248
|
+
[x: string]: (string | WatchCallback | ({
|
|
3249
|
+
handler: WatchCallback | string;
|
|
3250
|
+
} & WatchOptions<boolean>)) | (string | WatchCallback | ({
|
|
3251
|
+
handler: WatchCallback | string;
|
|
3252
|
+
} & WatchOptions<boolean>))[];
|
|
3253
|
+
};
|
|
3254
|
+
provide?: ComponentProvideOptions | undefined;
|
|
3255
|
+
inject?: {} | string[] | undefined;
|
|
3256
|
+
filters?: Record<string, Function>;
|
|
3257
|
+
mixins?: any[] | undefined;
|
|
3258
|
+
extends?: any;
|
|
3259
|
+
beforeCreate?: (() => void) | undefined;
|
|
3260
|
+
created?: (() => void) | undefined;
|
|
3261
|
+
beforeMount?: (() => void) | undefined;
|
|
3262
|
+
mounted?: (() => void) | undefined;
|
|
3263
|
+
beforeUpdate?: (() => void) | undefined;
|
|
3264
|
+
updated?: (() => void) | undefined;
|
|
3265
|
+
activated?: (() => void) | undefined;
|
|
3266
|
+
deactivated?: (() => void) | undefined;
|
|
3267
|
+
beforeDestroy?: (() => void) | undefined;
|
|
3268
|
+
beforeUnmount?: (() => void) | undefined;
|
|
3269
|
+
destroyed?: (() => void) | undefined;
|
|
3270
|
+
unmounted?: (() => void) | undefined;
|
|
3271
|
+
renderTracked?: (e: DebuggerEvent) => void;
|
|
3272
|
+
renderTriggered?: (e: DebuggerEvent) => void;
|
|
3273
|
+
errorCaptured?: (err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void;
|
|
3274
|
+
delimiters?: [string, string];
|
|
3275
|
+
__differentiator?: string | number | symbol | undefined;
|
|
3276
|
+
__isBuiltIn?: boolean;
|
|
3277
|
+
__file?: string;
|
|
3278
|
+
__name?: string;
|
|
3279
|
+
i18n?: {
|
|
3280
|
+
locale?: string | undefined;
|
|
3281
|
+
fallbackLocale?: string | false | string[] | {
|
|
3282
|
+
[x: string]: string[];
|
|
3283
|
+
} | undefined;
|
|
3284
|
+
messages?: {
|
|
3285
|
+
[x: string]: LocaleMessage<VueMessageType>;
|
|
3286
|
+
} | undefined;
|
|
3287
|
+
flatJson?: boolean | undefined;
|
|
3288
|
+
datetimeFormats?: {
|
|
3289
|
+
[x: string]: IntlDateTimeFormat;
|
|
3290
|
+
} | undefined;
|
|
3291
|
+
numberFormats?: {
|
|
3292
|
+
[x: string]: IntlNumberFormat;
|
|
3293
|
+
} | undefined;
|
|
3294
|
+
availableLocales?: Locale[];
|
|
3295
|
+
modifiers?: LinkedModifiers<VueMessageType> | undefined;
|
|
3296
|
+
formatter?: {
|
|
3297
|
+
interpolate: (message: string, values: any, path: string) => Array<any> | null;
|
|
3298
|
+
} | undefined;
|
|
3299
|
+
missing?: MissingHandler | undefined;
|
|
3300
|
+
fallbackRoot?: boolean | undefined;
|
|
3301
|
+
silentTranslationWarn?: boolean | RegExp | undefined;
|
|
3302
|
+
silentFallbackWarn?: boolean | RegExp | undefined;
|
|
3303
|
+
formatFallbackMessages?: boolean | undefined;
|
|
3304
|
+
preserveDirectiveContent?: boolean;
|
|
3305
|
+
warnHtmlInMessage?: WarnHtmlInMessageLevel;
|
|
3306
|
+
escapeParameterHtml?: boolean | undefined;
|
|
3307
|
+
sharedMessages?: LocaleMessages<VueMessageType>;
|
|
3308
|
+
pluralizationRules?: PluralizationRules | undefined;
|
|
3309
|
+
postTranslation?: PostTranslationHandler<VueMessageType> | undefined;
|
|
3310
|
+
sync?: boolean;
|
|
3311
|
+
messageResolver?: MessageResolver;
|
|
3312
|
+
} | undefined;
|
|
3313
|
+
__i18n?: {
|
|
3314
|
+
locale: Locale;
|
|
3315
|
+
resource: LocaleMessages<VueMessageType>;
|
|
3316
|
+
}[] | undefined;
|
|
3317
|
+
__INTLIFY_META__?: string;
|
|
3318
|
+
firebase?: FirebaseOption;
|
|
3319
|
+
firestore?: FirestoreOption;
|
|
3320
|
+
beforeRouteEnter?: TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : NavigationGuardWithThis<undefined>;
|
|
3321
|
+
beforeRouteUpdate?: TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : NavigationGuard;
|
|
3322
|
+
beforeRouteLeave?: TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : NavigationGuard;
|
|
3323
|
+
};
|
|
3324
|
+
contentProps: Record<string, any>;
|
|
3325
|
+
footerComponent?: FunctionalComponent<any, {}, any, {}> | {
|
|
3326
|
+
new (...args: any[]): any;
|
|
3327
|
+
__isFragment?: never;
|
|
3328
|
+
__isTeleport?: never;
|
|
3329
|
+
__isSuspense?: never;
|
|
3330
|
+
} | {
|
|
3331
|
+
[x: string]: any;
|
|
3332
|
+
setup?: ((this: void, props: LooseRequired<any>, ctx: {
|
|
3333
|
+
attrs: {
|
|
3334
|
+
[x: string]: unknown;
|
|
3335
|
+
};
|
|
3336
|
+
slots: Readonly<{
|
|
3337
|
+
[name: string]: Slot<any> | undefined;
|
|
3338
|
+
}>;
|
|
3339
|
+
emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
|
|
3340
|
+
expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
|
|
3341
|
+
}) => Promise<any> | any | RenderFunction | void) | undefined;
|
|
3342
|
+
name?: string;
|
|
3343
|
+
template?: string | object;
|
|
3344
|
+
render?: Function;
|
|
3345
|
+
components?: Record<string, Component<any, any, any, ComputedOptions, MethodOptions, {}, any>> | undefined;
|
|
3346
|
+
directives?: Record<string, Directive<any, any, string, string>> | undefined;
|
|
3347
|
+
inheritAttrs?: boolean;
|
|
3348
|
+
emits?: any;
|
|
3349
|
+
slots?: {} | undefined;
|
|
3350
|
+
expose?: string[] | undefined;
|
|
3351
|
+
serverPrefetch?: (() => void | Promise<any>) | undefined;
|
|
3352
|
+
compilerOptions?: {
|
|
3353
|
+
isCustomElement?: (tag: string) => boolean;
|
|
3354
|
+
whitespace?: "preserve" | "condense";
|
|
3355
|
+
comments?: boolean;
|
|
3356
|
+
delimiters?: [string, string];
|
|
3357
|
+
} | undefined;
|
|
3358
|
+
call?: (this: unknown, ...args: unknown[]) => never;
|
|
3359
|
+
__isFragment?: never;
|
|
3360
|
+
__isTeleport?: never;
|
|
3361
|
+
__isSuspense?: never;
|
|
3362
|
+
__defaults?: {} | undefined;
|
|
3363
|
+
compatConfig?: {
|
|
3364
|
+
GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
|
|
3365
|
+
GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
|
|
3366
|
+
GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
|
|
3367
|
+
GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
|
|
3368
|
+
GLOBAL_SET?: boolean | "suppress-warning" | undefined;
|
|
3369
|
+
GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
|
|
3370
|
+
GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
|
|
3371
|
+
GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
|
|
3372
|
+
CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
|
|
3373
|
+
CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
|
|
3374
|
+
CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
|
|
3375
|
+
CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
|
|
3376
|
+
CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
|
|
3377
|
+
CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
|
|
3378
|
+
CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
|
|
3379
|
+
INSTANCE_SET?: boolean | "suppress-warning" | undefined;
|
|
3380
|
+
INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
|
|
3381
|
+
INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
3382
|
+
INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
|
|
3383
|
+
INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
|
|
3384
|
+
INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
|
|
3385
|
+
INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
|
|
3386
|
+
INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
|
|
3387
|
+
INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
|
|
3388
|
+
OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
|
|
3389
|
+
OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
|
|
3390
|
+
OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
|
|
3391
|
+
OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
|
|
3392
|
+
WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
|
|
3393
|
+
PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
|
|
3394
|
+
V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
|
|
3395
|
+
CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
|
|
3396
|
+
ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
|
|
3397
|
+
ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
|
|
3398
|
+
TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
|
|
3399
|
+
TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
|
|
3400
|
+
COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
|
|
3401
|
+
COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
|
|
3402
|
+
COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
|
|
3403
|
+
RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
|
|
3404
|
+
FILTERS?: boolean | "suppress-warning" | undefined;
|
|
3405
|
+
PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
|
|
3406
|
+
MODE?: 2 | 3 | ((comp: Component | null) => 2 | 3);
|
|
3407
|
+
} | undefined;
|
|
3408
|
+
data?: ((this: any, vm: any) => any) | undefined;
|
|
3409
|
+
computed?: ComputedOptions | undefined;
|
|
3410
|
+
methods?: MethodOptions | undefined;
|
|
3411
|
+
watch?: {
|
|
3412
|
+
[x: string]: (string | WatchCallback | ({
|
|
3413
|
+
handler: WatchCallback | string;
|
|
3414
|
+
} & WatchOptions<boolean>)) | (string | WatchCallback | ({
|
|
3415
|
+
handler: WatchCallback | string;
|
|
3416
|
+
} & WatchOptions<boolean>))[];
|
|
3417
|
+
};
|
|
3418
|
+
provide?: ComponentProvideOptions | undefined;
|
|
3419
|
+
inject?: {} | string[] | undefined;
|
|
3420
|
+
filters?: Record<string, Function>;
|
|
3421
|
+
mixins?: any[] | undefined;
|
|
3422
|
+
extends?: any;
|
|
3423
|
+
beforeCreate?: (() => void) | undefined;
|
|
3424
|
+
created?: (() => void) | undefined;
|
|
3425
|
+
beforeMount?: (() => void) | undefined;
|
|
3426
|
+
mounted?: (() => void) | undefined;
|
|
3427
|
+
beforeUpdate?: (() => void) | undefined;
|
|
3428
|
+
updated?: (() => void) | undefined;
|
|
3429
|
+
activated?: (() => void) | undefined;
|
|
3430
|
+
deactivated?: (() => void) | undefined;
|
|
3431
|
+
beforeDestroy?: (() => void) | undefined;
|
|
3432
|
+
beforeUnmount?: (() => void) | undefined;
|
|
3433
|
+
destroyed?: (() => void) | undefined;
|
|
3434
|
+
unmounted?: (() => void) | undefined;
|
|
3435
|
+
renderTracked?: (e: DebuggerEvent) => void;
|
|
3436
|
+
renderTriggered?: (e: DebuggerEvent) => void;
|
|
3437
|
+
errorCaptured?: (err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void;
|
|
3438
|
+
delimiters?: [string, string];
|
|
3439
|
+
__differentiator?: string | number | symbol | undefined;
|
|
3440
|
+
__isBuiltIn?: boolean;
|
|
3441
|
+
__file?: string;
|
|
3442
|
+
__name?: string;
|
|
3443
|
+
i18n?: {
|
|
3444
|
+
locale?: string | undefined;
|
|
3445
|
+
fallbackLocale?: string | false | string[] | {
|
|
3446
|
+
[x: string]: string[];
|
|
3447
|
+
} | undefined;
|
|
3448
|
+
messages?: {
|
|
3449
|
+
[x: string]: LocaleMessage<VueMessageType>;
|
|
3450
|
+
} | undefined;
|
|
3451
|
+
flatJson?: boolean | undefined;
|
|
3452
|
+
datetimeFormats?: {
|
|
3453
|
+
[x: string]: IntlDateTimeFormat;
|
|
3454
|
+
} | undefined;
|
|
3455
|
+
numberFormats?: {
|
|
3456
|
+
[x: string]: IntlNumberFormat;
|
|
3457
|
+
} | undefined;
|
|
3458
|
+
availableLocales?: Locale[];
|
|
3459
|
+
modifiers?: LinkedModifiers<VueMessageType> | undefined;
|
|
3460
|
+
formatter?: {
|
|
3461
|
+
interpolate: (message: string, values: any, path: string) => Array<any> | null;
|
|
3462
|
+
} | undefined;
|
|
3463
|
+
missing?: MissingHandler | undefined;
|
|
3464
|
+
fallbackRoot?: boolean | undefined;
|
|
3465
|
+
silentTranslationWarn?: boolean | RegExp | undefined;
|
|
3466
|
+
silentFallbackWarn?: boolean | RegExp | undefined;
|
|
3467
|
+
formatFallbackMessages?: boolean | undefined;
|
|
3468
|
+
preserveDirectiveContent?: boolean;
|
|
3469
|
+
warnHtmlInMessage?: WarnHtmlInMessageLevel;
|
|
3470
|
+
escapeParameterHtml?: boolean | undefined;
|
|
3471
|
+
sharedMessages?: LocaleMessages<VueMessageType>;
|
|
3472
|
+
pluralizationRules?: PluralizationRules | undefined;
|
|
3473
|
+
postTranslation?: PostTranslationHandler<VueMessageType> | undefined;
|
|
3474
|
+
sync?: boolean;
|
|
3475
|
+
messageResolver?: MessageResolver;
|
|
3476
|
+
} | undefined;
|
|
3477
|
+
__i18n?: {
|
|
3478
|
+
locale: Locale;
|
|
3479
|
+
resource: LocaleMessages<VueMessageType>;
|
|
3480
|
+
}[] | undefined;
|
|
3481
|
+
__INTLIFY_META__?: string;
|
|
3482
|
+
firebase?: FirebaseOption;
|
|
3483
|
+
firestore?: FirestoreOption;
|
|
3484
|
+
beforeRouteEnter?: TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : NavigationGuardWithThis<undefined>;
|
|
3485
|
+
beforeRouteUpdate?: TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : NavigationGuard;
|
|
3486
|
+
beforeRouteLeave?: TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : NavigationGuard;
|
|
3487
|
+
} | undefined;
|
|
3488
|
+
dialogComponentProps: {
|
|
3489
|
+
key?: PropertyKey;
|
|
3490
|
+
ref?: any;
|
|
3491
|
+
ref_for?: boolean;
|
|
3492
|
+
ref_key?: string;
|
|
3493
|
+
onVnodeBeforeMount?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
|
|
3494
|
+
onVnodeMounted?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
|
|
3495
|
+
onVnodeBeforeUpdate?: ((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[];
|
|
3496
|
+
onVnodeUpdated?: ((vnode: VNode, oldVNode: VNode) => void) | ((vnode: VNode, oldVNode: VNode) => void)[];
|
|
3497
|
+
onVnodeBeforeUnmount?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
|
|
3498
|
+
onVnodeUnmounted?: ((vnode: VNode) => void) | ((vnode: VNode) => void)[];
|
|
3499
|
+
class?: unknown;
|
|
3500
|
+
style?: unknown;
|
|
3501
|
+
maximizable?: boolean;
|
|
3502
|
+
maximized?: boolean;
|
|
3503
|
+
onClose?: () => void;
|
|
3504
|
+
closable?: boolean;
|
|
3505
|
+
modal?: boolean;
|
|
3506
|
+
position?: "left" | "right" | "top" | "bottom" | "center" | "topleft" | "topright" | "bottomleft" | "bottomright";
|
|
3507
|
+
pt?: {
|
|
3508
|
+
root?: DialogPassThroughOptionType<any>;
|
|
3509
|
+
header?: DialogPassThroughOptionType<any>;
|
|
3510
|
+
title?: DialogPassThroughOptionType<any>;
|
|
3511
|
+
headerActions?: DialogPassThroughOptionType<any>;
|
|
3512
|
+
pcMaximizeButton?: {
|
|
3513
|
+
root?: ButtonPassThroughOptionType<DialogSharedPassThroughMethodOptions>;
|
|
3514
|
+
loadingIcon?: ButtonPassThroughOptionType<DialogSharedPassThroughMethodOptions>;
|
|
3515
|
+
icon?: ButtonPassThroughOptionType<DialogSharedPassThroughMethodOptions>;
|
|
3516
|
+
label?: ButtonPassThroughOptionType<DialogSharedPassThroughMethodOptions>;
|
|
3517
|
+
pcBadge?: ButtonPassThroughOptionType<DialogSharedPassThroughMethodOptions>;
|
|
3518
|
+
hooks?: {
|
|
3519
|
+
onBeforeCreate?: (() => void) | undefined;
|
|
3520
|
+
onCreated?: (() => void) | undefined;
|
|
3521
|
+
onBeforeMount?: (() => void) | undefined;
|
|
3522
|
+
onMounted?: (() => void) | undefined;
|
|
3523
|
+
onBeforeUpdate?: (() => void) | undefined;
|
|
3524
|
+
onUpdated?: (() => void) | undefined;
|
|
3525
|
+
onBeforeUnmount?: (() => void) | undefined;
|
|
3526
|
+
onUnmounted?: (() => void) | undefined;
|
|
3527
|
+
} | undefined;
|
|
3528
|
+
} | undefined;
|
|
3529
|
+
pcCloseButton?: {
|
|
3530
|
+
root?: ButtonPassThroughOptionType<DialogSharedPassThroughMethodOptions>;
|
|
3531
|
+
loadingIcon?: ButtonPassThroughOptionType<DialogSharedPassThroughMethodOptions>;
|
|
3532
|
+
icon?: ButtonPassThroughOptionType<DialogSharedPassThroughMethodOptions>;
|
|
3533
|
+
label?: ButtonPassThroughOptionType<DialogSharedPassThroughMethodOptions>;
|
|
3534
|
+
pcBadge?: ButtonPassThroughOptionType<DialogSharedPassThroughMethodOptions>;
|
|
3535
|
+
hooks?: {
|
|
3536
|
+
onBeforeCreate?: (() => void) | undefined;
|
|
3537
|
+
onCreated?: (() => void) | undefined;
|
|
3538
|
+
onBeforeMount?: (() => void) | undefined;
|
|
3539
|
+
onMounted?: (() => void) | undefined;
|
|
3540
|
+
onBeforeUpdate?: (() => void) | undefined;
|
|
3541
|
+
onUpdated?: (() => void) | undefined;
|
|
3542
|
+
onBeforeUnmount?: (() => void) | undefined;
|
|
3543
|
+
onUnmounted?: (() => void) | undefined;
|
|
3544
|
+
} | undefined;
|
|
3545
|
+
} | undefined;
|
|
3546
|
+
content?: DialogPassThroughOptionType<any>;
|
|
3547
|
+
footer?: DialogPassThroughOptionType<any>;
|
|
3548
|
+
mask?: DialogPassThroughOptionType<any>;
|
|
3549
|
+
hooks?: {
|
|
3550
|
+
onBeforeCreate?: (() => void) | undefined;
|
|
3551
|
+
onCreated?: (() => void) | undefined;
|
|
3552
|
+
onBeforeMount?: (() => void) | undefined;
|
|
3553
|
+
onMounted?: (() => void) | undefined;
|
|
3554
|
+
onBeforeUpdate?: (() => void) | undefined;
|
|
3555
|
+
onUpdated?: (() => void) | undefined;
|
|
3556
|
+
onBeforeUnmount?: (() => void) | undefined;
|
|
3557
|
+
onUnmounted?: (() => void) | undefined;
|
|
3558
|
+
} | undefined;
|
|
3559
|
+
transition?: ((options: DialogPassThroughMethodOptions<any>) => TransitionProps) | {
|
|
3560
|
+
name?: string;
|
|
3561
|
+
type?: "animation" | "transition";
|
|
3562
|
+
css?: boolean;
|
|
3563
|
+
duration?: number | {
|
|
3564
|
+
enter: number;
|
|
3565
|
+
leave: number;
|
|
3566
|
+
} | undefined;
|
|
3567
|
+
enterFromClass?: string;
|
|
3568
|
+
enterActiveClass?: string;
|
|
3569
|
+
enterToClass?: string;
|
|
3570
|
+
appearFromClass?: string;
|
|
3571
|
+
appearActiveClass?: string;
|
|
3572
|
+
appearToClass?: string;
|
|
3573
|
+
leaveFromClass?: string;
|
|
3574
|
+
leaveActiveClass?: string;
|
|
3575
|
+
leaveToClass?: string;
|
|
3576
|
+
mode?: "in-out" | "out-in" | "default";
|
|
3577
|
+
appear?: boolean;
|
|
3578
|
+
persisted?: boolean;
|
|
3579
|
+
onBeforeEnter?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
3580
|
+
onEnter?: (((el: Element, done: () => void) => void) | ((el: Element, done: () => void) => void)[]) | undefined;
|
|
3581
|
+
onAfterEnter?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
3582
|
+
onEnterCancelled?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
3583
|
+
onBeforeLeave?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
3584
|
+
onLeave?: (((el: Element, done: () => void) => void) | ((el: Element, done: () => void) => void)[]) | undefined;
|
|
3585
|
+
onAfterLeave?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
3586
|
+
onLeaveCancelled?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
3587
|
+
onBeforeAppear?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
3588
|
+
onAppear?: (((el: Element, done: () => void) => void) | ((el: Element, done: () => void) => void)[]) | undefined;
|
|
3589
|
+
onAfterAppear?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
3590
|
+
onAppearCancelled?: (((el: Element) => void) | ((el: Element) => void)[]) | undefined;
|
|
3591
|
+
} | undefined;
|
|
3592
|
+
} | undefined;
|
|
3593
|
+
};
|
|
3594
|
+
} | undefined;
|
|
2991
3595
|
prompt: ({ title, message, defaultValue }: {
|
|
2992
3596
|
title: string;
|
|
2993
3597
|
message: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comfyorg/comfyui-frontend-types",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.2",
|
|
4
4
|
"types": "./index.d.ts",
|
|
5
5
|
"files": [
|
|
6
6
|
"index.d.ts"
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"description": "TypeScript definitions for @comfyorg/comfyui-frontend",
|
|
14
14
|
"license": "GPL-3.0-only",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@comfyorg/litegraph": "^0.15.0-
|
|
16
|
+
"@comfyorg/litegraph": "^0.15.0-3"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"vue": "^3.5.13",
|