@comfyorg/comfyui-frontend-types 1.9.13 → 1.9.15
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 +3 -2
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1125,15 +1125,16 @@ export declare class ComfyApp {
|
|
|
1125
1125
|
message: string;
|
|
1126
1126
|
defaultValue?: string;
|
|
1127
1127
|
}) => Promise<string | null>;
|
|
1128
|
-
confirm: ({ title, message, type, itemList }: {
|
|
1128
|
+
confirm: ({ title, message, type, itemList, hint }: {
|
|
1129
1129
|
/** Dialog heading */
|
|
1130
1130
|
title: string;
|
|
1131
1131
|
/** The main message body */
|
|
1132
1132
|
message: string;
|
|
1133
1133
|
/** Pre-configured dialog type */
|
|
1134
1134
|
type?: ConfirmationDialogType;
|
|
1135
|
-
/** Displayed as an
|
|
1135
|
+
/** Displayed as an unordered list immediately below the message body */
|
|
1136
1136
|
itemList?: string[];
|
|
1137
|
+
hint?: string;
|
|
1137
1138
|
}) => Promise<boolean | null>;
|
|
1138
1139
|
};
|
|
1139
1140
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@comfyorg/comfyui-frontend-types",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.15",
|
|
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.8.
|
|
16
|
+
"@comfyorg/litegraph": "^0.8.77"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"vue": "^3.5.13",
|