@comfyorg/comfyui-frontend-types 1.16.3 → 1.16.4

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.
Files changed (2) hide show
  1. package/index.d.ts +3 -15
  2. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -11304,6 +11304,9 @@ declare module '@comfyorg/litegraph/dist/types/widgets' {
11304
11304
  * Controls whether the widget's value is included in the API workflow/prompt.
11305
11305
  * - If false, the value will be excluded from the API workflow but still serialized as part of the graph state
11306
11306
  * - If true or undefined, the value will be included in both the API workflow and graph state
11307
+ * @default true
11308
+ * @use {@link IBaseWidget.serialize} if you don't want the widget value to be included in both
11309
+ * the API workflow and graph state.
11307
11310
  */
11308
11311
  serialize?: boolean
11309
11312
  /**
@@ -11314,21 +11317,6 @@ declare module '@comfyorg/litegraph/dist/types/widgets' {
11314
11317
  * The minimum size of the node if the widget is present.
11315
11318
  */
11316
11319
  minNodeSize?: Size
11317
- /**
11318
- * Whether the widget is optional.
11319
- */
11320
- inputIsOptional?: boolean
11321
- /**
11322
- * Whether the widget is forced to be an input.
11323
- */
11324
- forceInput?: boolean
11325
- /**
11326
- * Whether the widget defaults to input state. Can still be converted back
11327
- * to widget state.
11328
- * @deprecated Widget to input conversion is no longer necessary, as they co-exist now.
11329
- * This option no longer has any effect.
11330
- */
11331
- defaultInput?: boolean
11332
11320
  }
11333
11321
 
11334
11322
  interface IBaseWidget {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfyorg/comfyui-frontend-types",
3
- "version": "1.16.3",
3
+ "version": "1.16.4",
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.13.0"
16
+ "@comfyorg/litegraph": "^0.13.1"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "vue": "^3.5.13",