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