@comfyorg/comfyui-frontend-types 1.44.11 → 1.44.12

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 +70 -49
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -5,6 +5,7 @@ import { Component } from 'vue';
5
5
  import { ComputedRef } from 'vue';
6
6
  import { CurveData } from '../../../../components/curve/types';
7
7
  import { IFuseOptions } from 'fuse.js';
8
+ import { ModelFile as ModelFile_2 } from '../platform/workflow/validation/schemas/workflowSchema';
8
9
  import { NodeId as NodeId_2 } from '../platform/workflow/validation/schemas/workflowSchema';
9
10
  import { NodeId as NodeId_3 } from '../workflow/validation/schemas/workflowSchema';
10
11
  import { NodeId as NodeId_4 } from '../../validation/schemas/workflowSchema';
@@ -1392,7 +1393,12 @@ export declare class ComfyApp {
1392
1393
  silentAssetErrors?: boolean;
1393
1394
  }): Promise<void>;
1394
1395
  private runMissingModelPipeline;
1395
- private cleanupPendingWarnings;
1396
+ refreshMissingModels(options?: {
1397
+ silent?: boolean;
1398
+ }): Promise<{
1399
+ missingModels: ModelFile_2[];
1400
+ confirmedCandidates: MissingModelCandidate[];
1401
+ }>;
1396
1402
  private cacheModelCandidates;
1397
1403
  private cacheMediaCandidates;
1398
1404
  private runMissingMediaPipeline;
@@ -1442,6 +1448,10 @@ export declare class ComfyApp {
1442
1448
  * @returns Array of context menu items from all extensions
1443
1449
  */
1444
1450
  collectNodeMenuItems(node: LGraphNode): IContextMenuValue[];
1451
+ /**
1452
+ * Reload node definitions and refresh combo lists on all nodes.
1453
+ */
1454
+ reloadNodeDefs(): Promise<void>;
1445
1455
  /**
1446
1456
  * Refresh combo list on whole nodes
1447
1457
  */
@@ -1893,8 +1903,9 @@ export declare class ComfyApp {
1893
1903
  "interface-panel-selected-surface": ZodOptional<ZodOptional<ZodString>>;
1894
1904
  "interface-button-hover-surface": ZodOptional<ZodOptional<ZodString>>;
1895
1905
  }, "strip", ZodTypeAny, {
1896
- "fg-color"?: string | undefined;
1897
1906
  "bg-color"?: string | undefined;
1907
+ "border-color"?: string | undefined;
1908
+ "fg-color"?: string | undefined;
1898
1909
  "bg-img"?: string | undefined;
1899
1910
  "comfy-menu-bg"?: string | undefined;
1900
1911
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -1903,7 +1914,6 @@ export declare class ComfyApp {
1903
1914
  "descrip-text"?: string | undefined;
1904
1915
  "drag-text"?: string | undefined;
1905
1916
  "error-text"?: string | undefined;
1906
- "border-color"?: string | undefined;
1907
1917
  "tr-even-bg-color"?: string | undefined;
1908
1918
  "tr-odd-bg-color"?: string | undefined;
1909
1919
  "content-bg"?: string | undefined;
@@ -1920,8 +1930,9 @@ export declare class ComfyApp {
1920
1930
  "interface-panel-selected-surface"?: string | undefined;
1921
1931
  "interface-button-hover-surface"?: string | undefined;
1922
1932
  }, {
1923
- "fg-color"?: string | undefined;
1924
1933
  "bg-color"?: string | undefined;
1934
+ "border-color"?: string | undefined;
1935
+ "fg-color"?: string | undefined;
1925
1936
  "bg-img"?: string | undefined;
1926
1937
  "comfy-menu-bg"?: string | undefined;
1927
1938
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -1930,7 +1941,6 @@ export declare class ComfyApp {
1930
1941
  "descrip-text"?: string | undefined;
1931
1942
  "drag-text"?: string | undefined;
1932
1943
  "error-text"?: string | undefined;
1933
- "border-color"?: string | undefined;
1934
1944
  "tr-even-bg-color"?: string | undefined;
1935
1945
  "tr-odd-bg-color"?: string | undefined;
1936
1946
  "content-bg"?: string | undefined;
@@ -1993,8 +2003,9 @@ export declare class ComfyApp {
1993
2003
  BADGE_BG_COLOR?: string | undefined;
1994
2004
  };
1995
2005
  comfy_base: {
1996
- "fg-color"?: string | undefined;
1997
2006
  "bg-color"?: string | undefined;
2007
+ "border-color"?: string | undefined;
2008
+ "fg-color"?: string | undefined;
1998
2009
  "bg-img"?: string | undefined;
1999
2010
  "comfy-menu-bg"?: string | undefined;
2000
2011
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -2003,7 +2014,6 @@ export declare class ComfyApp {
2003
2014
  "descrip-text"?: string | undefined;
2004
2015
  "drag-text"?: string | undefined;
2005
2016
  "error-text"?: string | undefined;
2006
- "border-color"?: string | undefined;
2007
2017
  "tr-even-bg-color"?: string | undefined;
2008
2018
  "tr-odd-bg-color"?: string | undefined;
2009
2019
  "content-bg"?: string | undefined;
@@ -2066,8 +2076,9 @@ export declare class ComfyApp {
2066
2076
  BADGE_BG_COLOR?: string | undefined;
2067
2077
  };
2068
2078
  comfy_base: {
2069
- "fg-color"?: string | undefined;
2070
2079
  "bg-color"?: string | undefined;
2080
+ "border-color"?: string | undefined;
2081
+ "fg-color"?: string | undefined;
2071
2082
  "bg-img"?: string | undefined;
2072
2083
  "comfy-menu-bg"?: string | undefined;
2073
2084
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -2076,7 +2087,6 @@ export declare class ComfyApp {
2076
2087
  "descrip-text"?: string | undefined;
2077
2088
  "drag-text"?: string | undefined;
2078
2089
  "error-text"?: string | undefined;
2079
- "border-color"?: string | undefined;
2080
2090
  "tr-even-bg-color"?: string | undefined;
2081
2091
  "tr-odd-bg-color"?: string | undefined;
2082
2092
  "content-bg"?: string | undefined;
@@ -4336,6 +4346,12 @@ export declare class ComfyApp {
4336
4346
  * @returns number of milliseconds it took the last cycle
4337
4347
  */
4338
4348
  getElapsedTime(): number;
4349
+ /**
4350
+ * Increments the internal version counter.
4351
+ * Currently only read for debug display in {@link LGraphCanvas.renderInfo}.
4352
+ * Centralized so a future VersionSystem can intercept, batch, or replace it.
4353
+ */
4354
+ incrementVersion(): void;
4339
4355
  /**
4340
4356
  * @deprecated Will be removed in 0.9
4341
4357
  * Sends an event to all the nodes, useful to trigger stuff
@@ -5514,6 +5530,11 @@ export declare class ComfyApp {
5514
5530
  node: LGraphNode;
5515
5531
  button: LGraphButton;
5516
5532
  };
5533
+ /** Ghost placement mode has started or ended. */
5534
+ 'litegraph:ghost-placement': {
5535
+ active: boolean;
5536
+ nodeId: NodeId;
5537
+ };
5517
5538
  }
5518
5539
 
5519
5540
  /** @inheritdoc {@link LGraphCanvas.state} */
@@ -52555,8 +52576,9 @@ export declare class ComfyApp {
52555
52576
  "interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
52556
52577
  "interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
52557
52578
  }, "strip", z.ZodTypeAny, {
52558
- "fg-color"?: string | undefined;
52559
52579
  "bg-color"?: string | undefined;
52580
+ "border-color"?: string | undefined;
52581
+ "fg-color"?: string | undefined;
52560
52582
  "bg-img"?: string | undefined;
52561
52583
  "comfy-menu-bg"?: string | undefined;
52562
52584
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -52565,7 +52587,6 @@ export declare class ComfyApp {
52565
52587
  "descrip-text"?: string | undefined;
52566
52588
  "drag-text"?: string | undefined;
52567
52589
  "error-text"?: string | undefined;
52568
- "border-color"?: string | undefined;
52569
52590
  "tr-even-bg-color"?: string | undefined;
52570
52591
  "tr-odd-bg-color"?: string | undefined;
52571
52592
  "content-bg"?: string | undefined;
@@ -52582,8 +52603,9 @@ export declare class ComfyApp {
52582
52603
  "interface-panel-selected-surface"?: string | undefined;
52583
52604
  "interface-button-hover-surface"?: string | undefined;
52584
52605
  }, {
52585
- "fg-color"?: string | undefined;
52586
52606
  "bg-color"?: string | undefined;
52607
+ "border-color"?: string | undefined;
52608
+ "fg-color"?: string | undefined;
52587
52609
  "bg-img"?: string | undefined;
52588
52610
  "comfy-menu-bg"?: string | undefined;
52589
52611
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -52592,7 +52614,6 @@ export declare class ComfyApp {
52592
52614
  "descrip-text"?: string | undefined;
52593
52615
  "drag-text"?: string | undefined;
52594
52616
  "error-text"?: string | undefined;
52595
- "border-color"?: string | undefined;
52596
52617
  "tr-even-bg-color"?: string | undefined;
52597
52618
  "tr-odd-bg-color"?: string | undefined;
52598
52619
  "content-bg"?: string | undefined;
@@ -52655,8 +52676,9 @@ export declare class ComfyApp {
52655
52676
  BADGE_BG_COLOR?: string | undefined;
52656
52677
  };
52657
52678
  comfy_base: {
52658
- "fg-color"?: string | undefined;
52659
52679
  "bg-color"?: string | undefined;
52680
+ "border-color"?: string | undefined;
52681
+ "fg-color"?: string | undefined;
52660
52682
  "bg-img"?: string | undefined;
52661
52683
  "comfy-menu-bg"?: string | undefined;
52662
52684
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -52665,7 +52687,6 @@ export declare class ComfyApp {
52665
52687
  "descrip-text"?: string | undefined;
52666
52688
  "drag-text"?: string | undefined;
52667
52689
  "error-text"?: string | undefined;
52668
- "border-color"?: string | undefined;
52669
52690
  "tr-even-bg-color"?: string | undefined;
52670
52691
  "tr-odd-bg-color"?: string | undefined;
52671
52692
  "content-bg"?: string | undefined;
@@ -52728,8 +52749,9 @@ export declare class ComfyApp {
52728
52749
  BADGE_BG_COLOR?: string | undefined;
52729
52750
  };
52730
52751
  comfy_base: {
52731
- "fg-color"?: string | undefined;
52732
52752
  "bg-color"?: string | undefined;
52753
+ "border-color"?: string | undefined;
52754
+ "fg-color"?: string | undefined;
52733
52755
  "bg-img"?: string | undefined;
52734
52756
  "comfy-menu-bg"?: string | undefined;
52735
52757
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -52738,7 +52760,6 @@ export declare class ComfyApp {
52738
52760
  "descrip-text"?: string | undefined;
52739
52761
  "drag-text"?: string | undefined;
52740
52762
  "error-text"?: string | undefined;
52741
- "border-color"?: string | undefined;
52742
52763
  "tr-even-bg-color"?: string | undefined;
52743
52764
  "tr-odd-bg-color"?: string | undefined;
52744
52765
  "content-bg"?: string | undefined;
@@ -52917,8 +52938,9 @@ export declare class ComfyApp {
52917
52938
  "interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
52918
52939
  "interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
52919
52940
  }, "strip", z.ZodTypeAny, {
52920
- "fg-color"?: string | undefined;
52921
52941
  "bg-color"?: string | undefined;
52942
+ "border-color"?: string | undefined;
52943
+ "fg-color"?: string | undefined;
52922
52944
  "bg-img"?: string | undefined;
52923
52945
  "comfy-menu-bg"?: string | undefined;
52924
52946
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -52927,7 +52949,6 @@ export declare class ComfyApp {
52927
52949
  "descrip-text"?: string | undefined;
52928
52950
  "drag-text"?: string | undefined;
52929
52951
  "error-text"?: string | undefined;
52930
- "border-color"?: string | undefined;
52931
52952
  "tr-even-bg-color"?: string | undefined;
52932
52953
  "tr-odd-bg-color"?: string | undefined;
52933
52954
  "content-bg"?: string | undefined;
@@ -52944,8 +52965,9 @@ export declare class ComfyApp {
52944
52965
  "interface-panel-selected-surface"?: string | undefined;
52945
52966
  "interface-button-hover-surface"?: string | undefined;
52946
52967
  }, {
52947
- "fg-color"?: string | undefined;
52948
52968
  "bg-color"?: string | undefined;
52969
+ "border-color"?: string | undefined;
52970
+ "fg-color"?: string | undefined;
52949
52971
  "bg-img"?: string | undefined;
52950
52972
  "comfy-menu-bg"?: string | undefined;
52951
52973
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -52954,7 +52976,6 @@ export declare class ComfyApp {
52954
52976
  "descrip-text"?: string | undefined;
52955
52977
  "drag-text"?: string | undefined;
52956
52978
  "error-text"?: string | undefined;
52957
- "border-color"?: string | undefined;
52958
52979
  "tr-even-bg-color"?: string | undefined;
52959
52980
  "tr-odd-bg-color"?: string | undefined;
52960
52981
  "content-bg"?: string | undefined;
@@ -53017,8 +53038,9 @@ export declare class ComfyApp {
53017
53038
  BADGE_BG_COLOR?: string | undefined;
53018
53039
  };
53019
53040
  comfy_base: {
53020
- "fg-color"?: string | undefined;
53021
53041
  "bg-color"?: string | undefined;
53042
+ "border-color"?: string | undefined;
53043
+ "fg-color"?: string | undefined;
53022
53044
  "bg-img"?: string | undefined;
53023
53045
  "comfy-menu-bg"?: string | undefined;
53024
53046
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -53027,7 +53049,6 @@ export declare class ComfyApp {
53027
53049
  "descrip-text"?: string | undefined;
53028
53050
  "drag-text"?: string | undefined;
53029
53051
  "error-text"?: string | undefined;
53030
- "border-color"?: string | undefined;
53031
53052
  "tr-even-bg-color"?: string | undefined;
53032
53053
  "tr-odd-bg-color"?: string | undefined;
53033
53054
  "content-bg"?: string | undefined;
@@ -53090,8 +53111,9 @@ export declare class ComfyApp {
53090
53111
  BADGE_BG_COLOR?: string | undefined;
53091
53112
  };
53092
53113
  comfy_base: {
53093
- "fg-color"?: string | undefined;
53094
53114
  "bg-color"?: string | undefined;
53115
+ "border-color"?: string | undefined;
53116
+ "fg-color"?: string | undefined;
53095
53117
  "bg-img"?: string | undefined;
53096
53118
  "comfy-menu-bg"?: string | undefined;
53097
53119
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -53100,7 +53122,6 @@ export declare class ComfyApp {
53100
53122
  "descrip-text"?: string | undefined;
53101
53123
  "drag-text"?: string | undefined;
53102
53124
  "error-text"?: string | undefined;
53103
- "border-color"?: string | undefined;
53104
53125
  "tr-even-bg-color"?: string | undefined;
53105
53126
  "tr-odd-bg-color"?: string | undefined;
53106
53127
  "content-bg"?: string | undefined;
@@ -53279,8 +53300,9 @@ export declare class ComfyApp {
53279
53300
  "interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
53280
53301
  "interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
53281
53302
  }, "strip", z.ZodTypeAny, {
53282
- "fg-color"?: string | undefined;
53283
53303
  "bg-color"?: string | undefined;
53304
+ "border-color"?: string | undefined;
53305
+ "fg-color"?: string | undefined;
53284
53306
  "bg-img"?: string | undefined;
53285
53307
  "comfy-menu-bg"?: string | undefined;
53286
53308
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -53289,7 +53311,6 @@ export declare class ComfyApp {
53289
53311
  "descrip-text"?: string | undefined;
53290
53312
  "drag-text"?: string | undefined;
53291
53313
  "error-text"?: string | undefined;
53292
- "border-color"?: string | undefined;
53293
53314
  "tr-even-bg-color"?: string | undefined;
53294
53315
  "tr-odd-bg-color"?: string | undefined;
53295
53316
  "content-bg"?: string | undefined;
@@ -53306,8 +53327,9 @@ export declare class ComfyApp {
53306
53327
  "interface-panel-selected-surface"?: string | undefined;
53307
53328
  "interface-button-hover-surface"?: string | undefined;
53308
53329
  }, {
53309
- "fg-color"?: string | undefined;
53310
53330
  "bg-color"?: string | undefined;
53331
+ "border-color"?: string | undefined;
53332
+ "fg-color"?: string | undefined;
53311
53333
  "bg-img"?: string | undefined;
53312
53334
  "comfy-menu-bg"?: string | undefined;
53313
53335
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -53316,7 +53338,6 @@ export declare class ComfyApp {
53316
53338
  "descrip-text"?: string | undefined;
53317
53339
  "drag-text"?: string | undefined;
53318
53340
  "error-text"?: string | undefined;
53319
- "border-color"?: string | undefined;
53320
53341
  "tr-even-bg-color"?: string | undefined;
53321
53342
  "tr-odd-bg-color"?: string | undefined;
53322
53343
  "content-bg"?: string | undefined;
@@ -53379,8 +53400,9 @@ export declare class ComfyApp {
53379
53400
  BADGE_BG_COLOR?: string | undefined;
53380
53401
  };
53381
53402
  comfy_base: {
53382
- "fg-color"?: string | undefined;
53383
53403
  "bg-color"?: string | undefined;
53404
+ "border-color"?: string | undefined;
53405
+ "fg-color"?: string | undefined;
53384
53406
  "bg-img"?: string | undefined;
53385
53407
  "comfy-menu-bg"?: string | undefined;
53386
53408
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -53389,7 +53411,6 @@ export declare class ComfyApp {
53389
53411
  "descrip-text"?: string | undefined;
53390
53412
  "drag-text"?: string | undefined;
53391
53413
  "error-text"?: string | undefined;
53392
- "border-color"?: string | undefined;
53393
53414
  "tr-even-bg-color"?: string | undefined;
53394
53415
  "tr-odd-bg-color"?: string | undefined;
53395
53416
  "content-bg"?: string | undefined;
@@ -53452,8 +53473,9 @@ export declare class ComfyApp {
53452
53473
  BADGE_BG_COLOR?: string | undefined;
53453
53474
  };
53454
53475
  comfy_base: {
53455
- "fg-color"?: string | undefined;
53456
53476
  "bg-color"?: string | undefined;
53477
+ "border-color"?: string | undefined;
53478
+ "fg-color"?: string | undefined;
53457
53479
  "bg-img"?: string | undefined;
53458
53480
  "comfy-menu-bg"?: string | undefined;
53459
53481
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -53462,7 +53484,6 @@ export declare class ComfyApp {
53462
53484
  "descrip-text"?: string | undefined;
53463
53485
  "drag-text"?: string | undefined;
53464
53486
  "error-text"?: string | undefined;
53465
- "border-color"?: string | undefined;
53466
53487
  "tr-even-bg-color"?: string | undefined;
53467
53488
  "tr-odd-bg-color"?: string | undefined;
53468
53489
  "content-bg"?: string | undefined;
@@ -53894,8 +53915,9 @@ export declare class ComfyApp {
53894
53915
  "interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
53895
53916
  "interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
53896
53917
  }, "strip", z.ZodTypeAny, {
53897
- "fg-color"?: string | undefined;
53898
53918
  "bg-color"?: string | undefined;
53919
+ "border-color"?: string | undefined;
53920
+ "fg-color"?: string | undefined;
53899
53921
  "bg-img"?: string | undefined;
53900
53922
  "comfy-menu-bg"?: string | undefined;
53901
53923
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -53904,7 +53926,6 @@ export declare class ComfyApp {
53904
53926
  "descrip-text"?: string | undefined;
53905
53927
  "drag-text"?: string | undefined;
53906
53928
  "error-text"?: string | undefined;
53907
- "border-color"?: string | undefined;
53908
53929
  "tr-even-bg-color"?: string | undefined;
53909
53930
  "tr-odd-bg-color"?: string | undefined;
53910
53931
  "content-bg"?: string | undefined;
@@ -53921,8 +53942,9 @@ export declare class ComfyApp {
53921
53942
  "interface-panel-selected-surface"?: string | undefined;
53922
53943
  "interface-button-hover-surface"?: string | undefined;
53923
53944
  }, {
53924
- "fg-color"?: string | undefined;
53925
53945
  "bg-color"?: string | undefined;
53946
+ "border-color"?: string | undefined;
53947
+ "fg-color"?: string | undefined;
53926
53948
  "bg-img"?: string | undefined;
53927
53949
  "comfy-menu-bg"?: string | undefined;
53928
53950
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -53931,7 +53953,6 @@ export declare class ComfyApp {
53931
53953
  "descrip-text"?: string | undefined;
53932
53954
  "drag-text"?: string | undefined;
53933
53955
  "error-text"?: string | undefined;
53934
- "border-color"?: string | undefined;
53935
53956
  "tr-even-bg-color"?: string | undefined;
53936
53957
  "tr-odd-bg-color"?: string | undefined;
53937
53958
  "content-bg"?: string | undefined;
@@ -53994,8 +54015,9 @@ export declare class ComfyApp {
53994
54015
  BADGE_BG_COLOR?: string | undefined;
53995
54016
  };
53996
54017
  comfy_base: {
53997
- "fg-color"?: string | undefined;
53998
54018
  "bg-color"?: string | undefined;
54019
+ "border-color"?: string | undefined;
54020
+ "fg-color"?: string | undefined;
53999
54021
  "bg-img"?: string | undefined;
54000
54022
  "comfy-menu-bg"?: string | undefined;
54001
54023
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -54004,7 +54026,6 @@ export declare class ComfyApp {
54004
54026
  "descrip-text"?: string | undefined;
54005
54027
  "drag-text"?: string | undefined;
54006
54028
  "error-text"?: string | undefined;
54007
- "border-color"?: string | undefined;
54008
54029
  "tr-even-bg-color"?: string | undefined;
54009
54030
  "tr-odd-bg-color"?: string | undefined;
54010
54031
  "content-bg"?: string | undefined;
@@ -54067,8 +54088,9 @@ export declare class ComfyApp {
54067
54088
  BADGE_BG_COLOR?: string | undefined;
54068
54089
  };
54069
54090
  comfy_base: {
54070
- "fg-color"?: string | undefined;
54071
54091
  "bg-color"?: string | undefined;
54092
+ "border-color"?: string | undefined;
54093
+ "fg-color"?: string | undefined;
54072
54094
  "bg-img"?: string | undefined;
54073
54095
  "comfy-menu-bg"?: string | undefined;
54074
54096
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -54077,7 +54099,6 @@ export declare class ComfyApp {
54077
54099
  "descrip-text"?: string | undefined;
54078
54100
  "drag-text"?: string | undefined;
54079
54101
  "error-text"?: string | undefined;
54080
- "border-color"?: string | undefined;
54081
54102
  "tr-even-bg-color"?: string | undefined;
54082
54103
  "tr-odd-bg-color"?: string | undefined;
54083
54104
  "content-bg"?: string | undefined;
@@ -54435,8 +54456,9 @@ export declare class ComfyApp {
54435
54456
  "interface-panel-selected-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
54436
54457
  "interface-button-hover-surface": z.ZodOptional<z.ZodOptional<z.ZodString>>;
54437
54458
  }, "strip", z.ZodTypeAny, {
54438
- "fg-color"?: string | undefined;
54439
54459
  "bg-color"?: string | undefined;
54460
+ "border-color"?: string | undefined;
54461
+ "fg-color"?: string | undefined;
54440
54462
  "bg-img"?: string | undefined;
54441
54463
  "comfy-menu-bg"?: string | undefined;
54442
54464
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -54445,7 +54467,6 @@ export declare class ComfyApp {
54445
54467
  "descrip-text"?: string | undefined;
54446
54468
  "drag-text"?: string | undefined;
54447
54469
  "error-text"?: string | undefined;
54448
- "border-color"?: string | undefined;
54449
54470
  "tr-even-bg-color"?: string | undefined;
54450
54471
  "tr-odd-bg-color"?: string | undefined;
54451
54472
  "content-bg"?: string | undefined;
@@ -54462,8 +54483,9 @@ export declare class ComfyApp {
54462
54483
  "interface-panel-selected-surface"?: string | undefined;
54463
54484
  "interface-button-hover-surface"?: string | undefined;
54464
54485
  }, {
54465
- "fg-color"?: string | undefined;
54466
54486
  "bg-color"?: string | undefined;
54487
+ "border-color"?: string | undefined;
54488
+ "fg-color"?: string | undefined;
54467
54489
  "bg-img"?: string | undefined;
54468
54490
  "comfy-menu-bg"?: string | undefined;
54469
54491
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -54472,7 +54494,6 @@ export declare class ComfyApp {
54472
54494
  "descrip-text"?: string | undefined;
54473
54495
  "drag-text"?: string | undefined;
54474
54496
  "error-text"?: string | undefined;
54475
- "border-color"?: string | undefined;
54476
54497
  "tr-even-bg-color"?: string | undefined;
54477
54498
  "tr-odd-bg-color"?: string | undefined;
54478
54499
  "content-bg"?: string | undefined;
@@ -54535,8 +54556,9 @@ export declare class ComfyApp {
54535
54556
  BADGE_BG_COLOR?: string | undefined;
54536
54557
  };
54537
54558
  comfy_base: {
54538
- "fg-color"?: string | undefined;
54539
54559
  "bg-color"?: string | undefined;
54560
+ "border-color"?: string | undefined;
54561
+ "fg-color"?: string | undefined;
54540
54562
  "bg-img"?: string | undefined;
54541
54563
  "comfy-menu-bg"?: string | undefined;
54542
54564
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -54545,7 +54567,6 @@ export declare class ComfyApp {
54545
54567
  "descrip-text"?: string | undefined;
54546
54568
  "drag-text"?: string | undefined;
54547
54569
  "error-text"?: string | undefined;
54548
- "border-color"?: string | undefined;
54549
54570
  "tr-even-bg-color"?: string | undefined;
54550
54571
  "tr-odd-bg-color"?: string | undefined;
54551
54572
  "content-bg"?: string | undefined;
@@ -54608,8 +54629,9 @@ export declare class ComfyApp {
54608
54629
  BADGE_BG_COLOR?: string | undefined;
54609
54630
  };
54610
54631
  comfy_base: {
54611
- "fg-color"?: string | undefined;
54612
54632
  "bg-color"?: string | undefined;
54633
+ "border-color"?: string | undefined;
54634
+ "fg-color"?: string | undefined;
54613
54635
  "bg-img"?: string | undefined;
54614
54636
  "comfy-menu-bg"?: string | undefined;
54615
54637
  "comfy-menu-secondary-bg"?: string | undefined;
@@ -54618,7 +54640,6 @@ export declare class ComfyApp {
54618
54640
  "descrip-text"?: string | undefined;
54619
54641
  "drag-text"?: string | undefined;
54620
54642
  "error-text"?: string | undefined;
54621
- "border-color"?: string | undefined;
54622
54643
  "tr-even-bg-color"?: string | undefined;
54623
54644
  "tr-odd-bg-color"?: string | undefined;
54624
54645
  "content-bg"?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfyorg/comfyui-frontend-types",
3
- "version": "1.44.11",
3
+ "version": "1.44.12",
4
4
  "types": "./index.d.ts",
5
5
  "files": [
6
6
  "index.d.ts"