@comfyorg/comfyui-frontend-types 1.7.14 → 1.8.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.
Files changed (2) hide show
  1. package/index.d.ts +10 -11
  2. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -1,4 +1,9 @@
1
1
  import { Component } from 'vue';
2
+ import { default as default_2 } from '../components/dialog/content/LoadWorkflowWarning.vue';
3
+ import { default as default_3 } from '../components/dialog/content/MissingModelsWarning.vue';
4
+ import { default as default_4 } from '../components/dialog/content/ExecutionErrorDialogContent.vue';
5
+ import { default as default_5 } from '../components/templates/TemplateWorkflowsContent.vue';
6
+ import { default as default_6 } from '../components/dialog/content/IssueReportDialogContent.vue';
2
7
  import { ISerialisedGraph } from '@comfyorg/litegraph';
3
8
  import { IWidget } from '@comfyorg/litegraph';
4
9
  import { LGraph } from '@comfyorg/litegraph';
@@ -1096,19 +1101,13 @@ export declare class ComfyApp {
1096
1101
  }
1097
1102
 
1098
1103
  declare const useDialogService: () => {
1099
- showLoadWorkflowWarning: (props: {
1100
- missingNodeTypes: MissingNodeType[];
1101
- [key: string]: any;
1102
- }) => void;
1103
- showMissingModelsWarning: (props: {
1104
- missingModels: any[];
1105
- paths: Record<string, string[]>;
1106
- [key: string]: any;
1107
- }) => void;
1104
+ showLoadWorkflowWarning: (props: InstanceType<typeof default_2>["$props"]) => void;
1105
+ showMissingModelsWarning: (props: InstanceType<typeof default_3>["$props"]) => void;
1108
1106
  showSettingsDialog: (panel?: "about" | "keybinding" | "extension" | "server-config") => void;
1109
1107
  showAboutDialog: () => void;
1110
- showExecutionErrorDialog: (error: ExecutionErrorWsMessage) => void;
1111
- showTemplateWorkflowsDialog: () => void;
1108
+ showExecutionErrorDialog: (props: InstanceType<typeof default_4>["$props"]) => void;
1109
+ showTemplateWorkflowsDialog: (props?: InstanceType<typeof default_5>["$props"]) => void;
1110
+ showIssueReportDialog: (props: InstanceType<typeof default_6>["$props"]) => void;
1112
1111
  prompt: ({ title, message, defaultValue }: {
1113
1112
  title: string;
1114
1113
  message: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfyorg/comfyui-frontend-types",
3
- "version": "1.7.14",
3
+ "version": "1.8.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.8.60"
16
+ "@comfyorg/litegraph": "^0.8.61"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "vue": "^3.4.31",