[chore] Update litegraph to 0.16.14 (#4494)

This commit is contained in:
Christian Byrne
2025-07-21 17:48:32 -07:00
committed by GitHub
parent a39f6e6763
commit 1cd6a7f667
3 changed files with 6 additions and 6 deletions

8
package-lock.json generated
View File

@@ -12,7 +12,7 @@
"@alloc/quick-lru": "^5.2.0",
"@atlaskit/pragmatic-drag-and-drop": "^1.3.1",
"@comfyorg/comfyui-electron-types": "^0.4.43",
"@comfyorg/litegraph": "^0.16.13",
"@comfyorg/litegraph": "^0.16.14",
"@primevue/forms": "^4.2.5",
"@primevue/themes": "^4.2.5",
"@sentry/vue": "^8.48.0",
@@ -949,9 +949,9 @@
"license": "GPL-3.0-only"
},
"node_modules/@comfyorg/litegraph": {
"version": "0.16.13",
"resolved": "https://registry.npmjs.org/@comfyorg/litegraph/-/litegraph-0.16.13.tgz",
"integrity": "sha512-Y65YDyX/X/gqxtEa3IS5jb/1UUETCZXnrxM7YwSTIdzq3SHqwnDNstVBvhe+MtQUYRYqURzlg6sSrCO/BoKwkQ=="
"version": "0.16.14",
"resolved": "https://registry.npmjs.org/@comfyorg/litegraph/-/litegraph-0.16.14.tgz",
"integrity": "sha512-lZqWVmwfZuK0l8L8v1TGuZK7b0uZl7d0P0vcdShZ8LUTVNPA+hgjmc201yHOPFmvttYLW+GlZ7ZamE2ASPXgTw=="
},
"node_modules/@cspotcode/source-map-support": {
"version": "0.8.1",

View File

@@ -77,7 +77,7 @@
"@alloc/quick-lru": "^5.2.0",
"@atlaskit/pragmatic-drag-and-drop": "^1.3.1",
"@comfyorg/comfyui-electron-types": "^0.4.43",
"@comfyorg/litegraph": "^0.16.13",
"@comfyorg/litegraph": "^0.16.14",
"@primevue/forms": "^4.2.5",
"@primevue/themes": "^4.2.5",
"@sentry/vue": "^8.48.0",

View File

@@ -109,7 +109,7 @@ export const useLitegraphService = () => {
})
// Set up event listener for promoted widget removal
subgraph.events.addEventListener('widget-unpromoted', (event) => {
subgraph.events.addEventListener('widget-demoted', (event) => {
const { widget } = event.detail
// Only handle DOM widgets
if (!isDOMWidget(widget) && !isComponentWidget(widget)) return