Skip to content

Conversation

@tomm1e
Copy link
Contributor

@tomm1e tomm1e commented Dec 19, 2025

Summary

Component widgets (e.g. Load3D) in the root graph stay inactive after leaving a subgraph.

Changes

  • Adds component widget class to the active widget filter.

Screenshots

Before After
ComponentBefore ComponentAfter

┆Issue is synchronized with this Notion page by Unito

@tomm1e tomm1e requested a review from a team as a code owner December 19, 2025 23:01
@dosubot dosubot bot added the size:S This PR changes 10-29 lines, ignoring generated files. label Dec 19, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Dec 19, 2025

📝 Walkthrough

Walkthrough

Extended widget filtering logic in the active widget derivation process to recognize ComponentWidgetImpl instances alongside DOMWidgetImpl when extracting active widgets from graph objects, ensuring component-based widgets receive consistent treatment.

Changes

Cohort / File(s) Summary
Active widget filtering expansion
src/scripts/app.ts
Extended active widget filtering to include ComponentWidgetImpl alongside DOMWidgetImpl when deriving active widgets from newGraph. Updated the same filtering logic in the litegraph:set-graph handler to treat ComponentWidgetImpl as an active widget. Added public import of ComponentWidgetImpl from src/scripts/domWidget.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link

github-actions bot commented Dec 19, 2025

🎭 Playwright Test Results

⚠️ Tests passed with flaky tests

⏰ Completed at: 12/20/2025, 04:25:43 AM UTC

📈 Summary

  • Total Tests: 508
  • Passed: 498 ✅
  • Failed: 0
  • Flaky: 2 ⚠️
  • Skipped: 8 ⏭️

📊 Test Reports by Browser

  • chromium: View Report • ✅ 486 / ❌ 0 / ⚠️ 2 / ⏭️ 8
  • chromium-2x: View Report • ✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0
  • chromium-0.5x: View Report • ✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0
  • mobile-chrome: View Report • ✅ 9 / ❌ 0 / ⚠️ 0 / ⏭️ 0

🎉 Click on the links above to view detailed test results for each browser configuration.

@github-actions
Copy link

🎨 Storybook Build Status

loading Build is starting...

⏰ Started at: 12/19/2025, 11:01:38 PM UTC

🚀 Building Storybook

  • 📦 Installing dependencies...
  • 🔧 Building Storybook components...
  • 🌐 Preparing deployment to Cloudflare Pages...

⏱️ Please wait while the Storybook build is in progress...

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 5524526 and def36af.

📒 Files selected for processing (1)
  • src/scripts/app.ts (2 hunks)
🧰 Additional context used
📓 Path-based instructions (7)
src/**/*.{vue,ts}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

src/**/*.{vue,ts}: Leverage VueUse functions for performance-enhancing styles
Implement proper error handling
Use vue-i18n in composition API for any string literals. Place new translation entries in src/locales/en/main.json

src/**/*.{vue,ts}: Avoid using ref and watch together - use computed instead if possible
Do not add ref if a prop would suffice; do not add computed if the ref/prop directly would work; use watch only when computed won't accomplish the goal
Leverage VueUse functions for performance-enhancing styles

Files:

  • src/scripts/app.ts
src/**/*.ts

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

src/**/*.ts: Use es-toolkit for utility functions
Use TypeScript for type safety

src/**/*.ts: Extract complex type definitions that are inlined in multiple related places - name them for reuse
Minimize the surface area (exported values) of each module and composable
Favor pure functions, especially testable ones

Files:

  • src/scripts/app.ts
src/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (src/CLAUDE.md)

src/**/*.{ts,tsx,vue}: Sanitize HTML with DOMPurify to prevent XSS attacks
Avoid using @ts-expect-error; use proper TypeScript types instead
Use es-toolkit for utility functions instead of other utility libraries
Implement proper TypeScript types throughout the codebase

src/**/*.{ts,tsx,vue}: ESLint rules: Vue + TS rules, no floating promises, unused imports disallowed, i18n raw text restrictions in templates
Use es-toolkit for utility functions
Avoid mutable state - prefer immutability and assignment at point of declaration
Never use any type - use proper TypeScript types
Never use as any type assertions - fix the underlying type issue

Files:

  • src/scripts/app.ts
src/**/*.{vue,ts,tsx}

📄 CodeRabbit inference engine (src/CLAUDE.md)

Follow Vue 3 composition API style guide

Files:

  • src/scripts/app.ts
src/**/*.{js,ts,tsx,vue}

📄 CodeRabbit inference engine (AGENTS.md)

Use TypeScript exclusively - no new JavaScript files

Files:

  • src/scripts/app.ts
src/**/*.{ts,tsx,vue,js}

📄 CodeRabbit inference engine (AGENTS.md)

src/**/*.{ts,tsx,vue,js}: Indent with 2 spaces, use single quotes, no trailing semicolons, line width 80 - see .prettierrc
Sort and group imports by plugin, run pnpm format before committing

Files:

  • src/scripts/app.ts
src/**/*.{ts,tsx}

📄 CodeRabbit inference engine (AGENTS.md)

Do not use function expressions - use function declarations instead when possible

Files:

  • src/scripts/app.ts
🧠 Learnings (5)
📚 Learning: 2025-11-24T19:47:56.371Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: src/lib/litegraph/CLAUDE.md:0-0
Timestamp: 2025-11-24T19:47:56.371Z
Learning: Applies to src/lib/litegraph/**/*.{test,spec}.{ts,tsx} : Use provided test helpers `createTestSubgraph` and `createTestSubgraphNode` from `./fixtures/subgraphHelpers` for consistent subgraph test setup

Applied to files:

  • src/scripts/app.ts
📚 Learning: 2025-12-09T03:39:54.501Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7169
File: src/platform/remote/comfyui/jobs/jobTypes.ts:1-107
Timestamp: 2025-12-09T03:39:54.501Z
Learning: In the ComfyUI_frontend project, Zod is on v3.x. Do not suggest Zod v4 standalone validators (z.uuid, z.ulid, z.cuid2, z.nanoid) until an upgrade to Zod 4 is performed. When reviewing TypeScript files (e.g., src/platform/remote/comfyui/jobs/jobTypes.ts) validate against Zod 3 capabilities and avoid introducing v4-specific features; flag any proposal to upgrade or incorporate v4-only validators and propose staying with compatible 3.x patterns.

Applied to files:

  • src/scripts/app.ts
📚 Learning: 2025-12-13T11:03:11.264Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 7416
File: src/stores/imagePreviewStore.ts:5-7
Timestamp: 2025-12-13T11:03:11.264Z
Learning: In the ComfyUI_frontend repository, lint rules require keeping 'import type' statements separate from non-type imports, even if importing from the same module. Do not suggest consolidating them into a single import statement. Ensure type imports remain on their own line (import type { ... } from 'module') and regular imports stay on separate lines.

Applied to files:

  • src/scripts/app.ts
📚 Learning: 2025-12-17T00:40:09.635Z
Learnt from: DrJKL
Repo: Comfy-Org/ComfyUI_frontend PR: 7537
File: src/components/ui/button/Button.stories.ts:45-55
Timestamp: 2025-12-17T00:40:09.635Z
Learning: Prefer pure function declarations over function expressions (e.g., use function foo() { ... } instead of const foo = () => { ... }) for pure functions in the repository. Function declarations are more functional-leaning, offer better hoisting clarity, and can improve readability and tooling consistency. Apply this guideline across TypeScript files in Comfy-Org/ComfyUI_frontend, including story and UI component code, except where a function expression is semantically required (e.g., callbacks, higher-order functions with closures).

Applied to files:

  • src/scripts/app.ts
📚 Learning: 2025-12-11T12:25:15.470Z
Learnt from: christian-byrne
Repo: Comfy-Org/ComfyUI_frontend PR: 7358
File: src/components/dialog/content/signin/SignUpForm.vue:45-54
Timestamp: 2025-12-11T12:25:15.470Z
Learning: This repository uses CI automation to format code (pnpm format). Do not include manual formatting suggestions in code reviews for Comfy-Org/ComfyUI_frontend. If formatting issues are detected, rely on the CI formatter or re-run pnpm format. Focus reviews on correctness, readability, performance, accessibility, and maintainability rather than style formatting.

Applied to files:

  • src/scripts/app.ts
🧬 Code graph analysis (1)
src/scripts/app.ts (1)
src/scripts/domWidget.ts (2)
  • DOMWidgetImpl (216-290)
  • ComponentWidgetImpl (292-334)
🔇 Additional comments (1)
src/scripts/app.ts (1)

44-48: LGTM: Import updated correctly.

The addition of ComponentWidgetImpl to the imports is necessary for the instanceof check in the active widget filter. The import follows the correct pattern with type imports properly separated.

Comment on lines +819 to +822
.filter(
(w) =>
w instanceof DOMWidgetImpl || w instanceof ComponentWidgetImpl
)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Find the repository structure and files
find . -type f -name "*.ts" | grep -E "(app|widget)" | head -20

Repository: Comfy-Org/ComfyUI_frontend

Length of output: 1068


🏁 Script executed:

#!/bin/bash
# First, locate the actual src/scripts/app.ts file
find . -path "*/src/scripts/app.ts" -type f

# Look at lines 819-822
if [ -f "./src/scripts/app.ts" ]; then
  echo "=== Lines 819-822 of src/scripts/app.ts ==="
  sed -n '815,825p' "./src/scripts/app.ts"
fi

Repository: Comfy-Org/ComfyUI_frontend

Length of output: 464


🏁 Script executed:

#!/bin/bash
# Search for all instanceof DOMWidgetImpl patterns
echo "=== All instanceof DOMWidgetImpl patterns ==="
rg -n 'instanceof\s+DOMWidgetImpl' --type=ts

echo ""
echo "=== All instanceof ComponentWidgetImpl patterns ==="
rg -n 'instanceof\s+ComponentWidgetImpl' --type=ts

echo ""
echo "=== Class definitions for widget classes ==="
rg -n 'class\s+(DOMWidgetImpl|ComponentWidgetImpl|BaseDOMWidget)' --type=ts

Repository: Comfy-Org/ComfyUI_frontend

Length of output: 897


🏁 Script executed:

#!/bin/bash
# Examine the proxyWidget.ts file to see the context around those lines
echo "=== proxyWidget.ts lines 100-120 ==="
sed -n '100,120p' ./src/core/graph/subgraph/proxyWidget.ts

echo ""
echo "=== Check class definitions and inheritance ==="
sed -n '119,135p' ./src/scripts/domWidget.ts
sed -n '216,230p' ./src/scripts/domWidget.ts
sed -n '292,310p' ./src/scripts/domWidget.ts

Repository: Comfy-Org/ComfyUI_frontend

Length of output: 2303


🏁 Script executed:

#!/bin/bash
# Check what isProxyWidget does and understand the context better
echo "=== Look for isProxyWidget definition ==="
rg -n 'isProxyWidget|ProxyWidget' ./src/core/graph/subgraph/proxyWidget.ts | head -20

echo ""
echo "=== Check the broader context of useDomWidgetStore usage ==="
rg -n 'useDomWidgetStore' --type=ts | head -20

Repository: Comfy-Org/ComfyUI_frontend

Length of output: 3165


🏁 Script executed:

#!/bin/bash
# Let's understand the relationship between activeWidgets and the deactivateWidget/setWidget calls
echo "=== Check domWidgetStore to understand deactivateWidget and setWidget ==="
rg -n 'deactivateWidget|setWidget' ./src/stores/domWidgetStore.ts

echo ""
echo "=== Check if ComponentWidgetImpl widgets can be proxy widgets ==="
rg -n 'newProxyWidget' --type=ts -A 5 | head -40

Repository: Comfy-Org/ComfyUI_frontend

Length of output: 1297


🏁 Script executed:

#!/bin/bash
# Check what newProxyWidget returns - is it always DOMWidgetImpl or could it be ComponentWidgetImpl?
echo "=== newProxyWidget function signature and return type ==="
sed -n '139,175p' ./src/core/graph/subgraph/proxyWidget.ts

echo ""
echo "=== Check BaseDOMWidget type definition ==="
rg -n 'type BaseDOMWidget|interface BaseDOMWidget' --type=ts -A 5

Repository: Comfy-Org/ComfyUI_frontend

Length of output: 2041


🏁 Script executed:

#!/bin/bash
# Check newProxyFromOverlay to understand what type it returns
echo "=== newProxyFromOverlay function ==="
rg -n 'function newProxyFromOverlay|newProxyFromOverlay' --type=ts -A 30 | head -50

echo ""
echo "=== Check the actual context where deactivateWidget is called ==="
sed -n '95,125p' ./src/core/graph/subgraph/proxyWidget.ts

Repository: Comfy-Org/ComfyUI_frontend

Length of output: 5356


🏁 Script executed:

#!/bin/bash
# Let's verify the relationship between proxy widgets and the instanceof checks
echo "=== Check if proxy widgets can be instances of DOMWidgetImpl ==="
rg -n 'Proxy' ./src/core/graph/subgraph/proxyWidget.ts | head -10

echo ""
echo "=== Look at the disconnectedWidget to understand what kind of widget it is ==="
rg -n 'disconnectedWidget' --type=ts -B 2 -A 5 | head -40

echo ""
echo "=== Summary: Check all active widget registrations ==="
rg -n 'registerWidget|unregisterWidget' ./src/stores/domWidgetStore.ts -B 2 -A 2

Repository: Comfy-Org/ComfyUI_frontend

Length of output: 4547


🏁 Script executed:

#!/bin/bash
# Let's verify if the issue is that ComponentWidgetImpl can also be a linkedWidget
echo "=== Check how linkedWidget is created and what types it can be ==="
sed -n '165,176p' ./src/core/graph/subgraph/proxyWidget.ts

echo ""
echo "=== Confirm the pattern: look at the entire context of the deactivate call ==="
sed -n '100,120p' ./src/core/graph/subgraph/proxyWidget.ts

echo ""
echo "=== Check if there are any other widget type checks elsewhere ==="
rg -n 'instanceof.*Widget' --type=ts | grep -v 'DOMWidgetImpl\|ComponentWidgetImpl' | head -10

Repository: Comfy-Org/ComfyUI_frontend

Length of output: 1861


Address similar widget type filtering in proxy widget management.

The fix correctly extends active widget filtering in app.ts to include ComponentWidgetImpl alongside DOMWidgetImpl. However, similar filtering patterns exist in src/core/graph/subgraph/proxyWidget.ts at lines 105 and 115 that only check for DOMWidgetImpl. Since both DOMWidgetImpl and ComponentWidgetImpl extend BaseDOMWidgetImpl and are registered with useDomWidgetStore, these proxy widget operations should also handle both types for consistency:

  • Line 105: if (w instanceof DOMWidgetImpl) → should also check ComponentWidgetImpl
  • Line 115: if (isActiveGraph && w instanceof DOMWidgetImpl) → should also check ComponentWidgetImpl

Update these checks to use w instanceof DOMWidgetImpl || w instanceof ComponentWidgetImpl or extract a shared type guard.

🤖 Prompt for AI Agents
In src/core/graph/subgraph/proxyWidget.ts around lines 105 to 115, the code only
checks for DOMWidgetImpl when handling proxy widget logic but must also include
ComponentWidgetImpl (both extend BaseDOMWidgetImpl); update the conditions at
line 105 and line 115 to check for either DOMWidgetImpl or ComponentWidgetImpl
(e.g., w instanceof DOMWidgetImpl || w instanceof ComponentWidgetImpl) or
replace both with a shared type guard that returns true for instances of either
class, then use that guard in both places to ensure consistent handling.

Copy link
Collaborator

@jtydhr88 jtydhr88 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@github-actions
Copy link

Bundle Size Report

Summary

  • Raw size: 16.6 MB baseline 16.6 MB — 🔴 +8 kB
  • Gzip: 3.37 MB baseline 3.37 MB — 🔴 +1.36 kB
  • Brotli: 2.6 MB baseline 2.59 MB — 🔴 +752 B
  • Bundles: 99 current • 99 baseline • 47 added / 47 removed

Category Glance
App Entry Points 🔴 +8.18 kB (3.21 MB) · UI Components 🟢 -1.51 kB (184 kB) · Graph Workspace 🔴 +1.33 kB (998 kB) · Panels & Settings 🔴 +2 B (297 kB) · Vendor & Third-Party ⚪ 0 B (8.46 MB) · Other ⚪ 0 B (3.44 MB) · + 3 more

Per-category breakdown
App Entry Points — 3.21 MB (baseline 3.2 MB) • 🔴 +8.18 kB

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-BfA7Swwv.js (new) 2.98 MB 🔴 +2.98 MB 🔴 +629 kB 🔴 +478 kB
assets/index-ypxcjEw6.js (removed) 2.98 MB 🟢 -2.98 MB 🟢 -627 kB 🟢 -477 kB
assets/index-BQqMvj48.js (new) 227 kB 🔴 +227 kB 🔴 +48.5 kB 🔴 +39.8 kB
assets/index-BlBIYPzA.js (removed) 227 kB 🟢 -227 kB 🟢 -48.5 kB 🟢 -39.8 kB
assets/index-BASOJNF9.js (new) 345 B 🔴 +345 B 🔴 +246 B 🔴 +237 B
assets/index-UvjnG4-y.js (removed) 345 B 🟢 -345 B 🟢 -245 B 🟢 -231 B

Status: 3 added / 3 removed

Graph Workspace — 998 kB (baseline 996 kB) • 🔴 +1.33 kB

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-CsceS3jx.js (new) 998 kB 🔴 +998 kB 🔴 +195 kB 🔴 +148 kB
assets/GraphView-CxO_RtIS.js (removed) 996 kB 🟢 -996 kB 🟢 -195 kB 🟢 -148 kB

Status: 1 added / 1 removed

Views & Navigation — 6.54 kB (baseline 6.54 kB) • ⚪ 0 B

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/UserSelectView-BjvN774A.js (removed) 6.54 kB 🟢 -6.54 kB 🟢 -2.14 kB 🟢 -1.9 kB
assets/UserSelectView-Cc1JY0-Y.js (new) 6.54 kB 🔴 +6.54 kB 🔴 +2.14 kB 🔴 +1.89 kB

Status: 1 added / 1 removed

Panels & Settings — 297 kB (baseline 297 kB) • 🔴 +2 B

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/LegacyCreditsPanel-EjG5bD8Z.js (new) 21.4 kB 🔴 +21.4 kB 🔴 +5.16 kB 🔴 +4.51 kB
assets/LegacyCreditsPanel-Dv7JPQ0t.js (removed) 21.4 kB 🟢 -21.4 kB 🟢 -5.16 kB 🟢 -4.51 kB
assets/KeybindingPanel-BMecaKA8.js (new) 13.6 kB 🔴 +13.6 kB 🔴 +3.42 kB 🔴 +3.01 kB
assets/KeybindingPanel-BsIWLKtW.js (removed) 13.6 kB 🟢 -13.6 kB 🟢 -3.42 kB 🟢 -3.01 kB
assets/ExtensionPanel-1_NJAQTz.js (removed) 10.8 kB 🟢 -10.8 kB 🟢 -2.57 kB 🟢 -2.24 kB
assets/ExtensionPanel-DO65xVkk.js (new) 10.8 kB 🔴 +10.8 kB 🔴 +2.57 kB 🔴 +2.24 kB
assets/AboutPanel-CfBImsgi.js (new) 9.16 kB 🔴 +9.16 kB 🔴 +2.46 kB 🔴 +2.21 kB
assets/AboutPanel-C_HTLaP_.js (removed) 9.16 kB 🟢 -9.16 kB 🟢 -2.46 kB 🟢 -2.21 kB
assets/ServerConfigPanel-Bl9YA7EJ.js (new) 7.07 kB 🔴 +7.07 kB 🔴 +1.98 kB 🔴 +1.76 kB
assets/ServerConfigPanel-pA4Z-_Vz.js (removed) 7.07 kB 🟢 -7.07 kB 🟢 -1.98 kB 🟢 -1.76 kB
assets/UserPanel-BBEZjAAj.js (new) 6.23 kB 🔴 +6.23 kB 🔴 +1.72 kB 🔴 +1.5 kB
assets/UserPanel-YBE-haTq.js (removed) 6.23 kB 🟢 -6.23 kB 🟢 -1.72 kB 🟢 -1.5 kB
assets/settings-BhbWhsRg.js 101 B 101 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-BvFz-TmQ.js 33.1 kB 33.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-BxYnTA2y.js 21.5 kB 21.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-C6bMjAne.js 27.1 kB 27.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-C7Yhp7H7.js 24 kB 24 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-CsnOn8G0.js 25.7 kB 25.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-D5BGNZ7M.js 24.8 kB 24.8 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-D7k3huHm.js 25 kB 25 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-DamkILzl.js 26.4 kB 26.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-s1k0gw1Y.js 20.9 kB 20.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 6 added / 6 removed

UI Components — 184 kB (baseline 185 kB) • 🟢 -1.51 kB

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/Load3D.vue_vue_type_script_setup_true_lang-BGN_Xozs.js (removed) 53.5 kB 🟢 -53.5 kB 🟢 -8.45 kB 🟢 -7.25 kB
assets/Load3D.vue_vue_type_script_setup_true_lang-DvwMJjt_.js (new) 53.5 kB 🔴 +53.5 kB 🔴 +8.45 kB 🔴 +7.26 kB
assets/LazyImage.vue_vue_type_script_setup_true_lang-CgoGyauo.js (removed) 50 kB 🟢 -50 kB 🟢 -11 kB 🟢 -9.63 kB
assets/WidgetSelect.vue_vue_type_script_setup_true_lang-CaTDXLhI.js (new) 48.8 kB 🔴 +48.8 kB 🔴 +10.5 kB 🔴 +9.14 kB
assets/WidgetSelect.vue_vue_type_script_setup_true_lang-CEmioOun.js (removed) 48.8 kB 🟢 -48.8 kB 🟢 -10.5 kB 🟢 -9.13 kB
assets/LazyImage.vue_vue_type_script_setup_true_lang-sGYXzIBd.js (new) 48.4 kB 🔴 +48.4 kB 🔴 +10.6 kB 🔴 +9.3 kB
assets/WidgetInputNumber.vue_vue_type_script_setup_true_lang-BosjYm3M.js (removed) 14.3 kB 🟢 -14.3 kB 🟢 -3.73 kB 🟢 -3.29 kB
assets/WidgetInputNumber.vue_vue_type_script_setup_true_lang-DFu6C-Ew.js (new) 14.3 kB 🔴 +14.3 kB 🔴 +3.74 kB 🔴 +3.29 kB
assets/ComfyQueueButton-B81Ugmk9.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.48 kB 🟢 -2.22 kB
assets/ComfyQueueButton-DXkOO-2g.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.48 kB 🔴 +2.22 kB
assets/WidgetWithControl.vue_vue_type_script_setup_true_lang-C-xUxP65.js (new) 3.68 kB 🔴 +3.68 kB 🔴 +1.45 kB 🔴 +1.31 kB
assets/WidgetWithControl.vue_vue_type_script_setup_true_lang-CrnAKoAi.js (removed) 3.68 kB 🟢 -3.68 kB 🟢 -1.45 kB 🟢 -1.31 kB
assets/WidgetLayoutField.vue_vue_type_script_setup_true_lang-CBjWiyM5.js (removed) 2.14 kB 🟢 -2.14 kB 🟢 -889 B 🟢 -773 B
assets/WidgetLayoutField.vue_vue_type_script_setup_true_lang-CG1OneEj.js (new) 2.14 kB 🔴 +2.14 kB 🔴 +889 B 🔴 +768 B
assets/WidgetButton-U5ly29Pt.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -927 B 🟢 -811 B
assets/WidgetButton-z3dAsplW.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +928 B 🔴 +813 B
assets/UserAvatar.vue_vue_type_script_setup_true_lang-Bumg4_L2.js (new) 1.34 kB 🔴 +1.34 kB 🔴 +685 B 🔴 +592 B
assets/UserAvatar.vue_vue_type_script_setup_true_lang-DymEwRe0.js (removed) 1.34 kB 🟢 -1.34 kB 🟢 -686 B 🟢 -595 B
assets/MediaTitle.vue_vue_type_script_setup_true_lang-BuLY37OP.js (new) 897 B 🔴 +897 B 🔴 +503 B 🔴 +456 B
assets/MediaTitle.vue_vue_type_script_setup_true_lang-D8_1OiMw.js (removed) 897 B 🟢 -897 B 🟢 -501 B 🟢 -434 B

Status: 10 added / 10 removed

Data & Services — 12.5 kB (baseline 12.5 kB) • ⚪ 0 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/keybindingService-CtyaWZm2.js (new) 7.51 kB 🔴 +7.51 kB 🔴 +1.83 kB 🔴 +1.58 kB
assets/keybindingService-fkrA9uQl.js (removed) 7.51 kB 🟢 -7.51 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/audioService-C7AhIlDE.js (removed) 2.2 kB 🟢 -2.2 kB 🟢 -961 B 🟢 -822 B
assets/audioService-oESyJf9S.js (new) 2.2 kB 🔴 +2.2 kB 🔴 +960 B 🔴 +831 B
assets/serverConfigStore-7JI8VFS2.js 2.83 kB 2.83 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 2 added / 2 removed

Utilities & Hooks — 1.86 kB (baseline 1.86 kB) • ⚪ 0 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/audioUtils-BvCpfCIL.js (new) 1.41 kB 🔴 +1.41 kB 🔴 +650 B 🔴 +544 B
assets/audioUtils-MvHwB4We.js (removed) 1.41 kB 🟢 -1.41 kB 🟢 -652 B 🟢 -548 B
assets/nodeFilterUtil-CXKCRJ-m.js 460 B 460 B ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 1 added / 1 removed

Vendor & Third-Party — 8.46 MB (baseline 8.46 MB) • ⚪ 0 B

External libraries and shared vendor chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/vendor-primevue-BIgr9yoj.js (removed) 1.96 MB 🟢 -1.96 MB 🟢 -334 kB 🟢 -202 kB
assets/vendor-primevue-DZ--Ysu_.js (new) 1.96 MB 🔴 +1.96 MB 🔴 +334 kB 🔴 +202 kB
assets/vendor-chart-DaR9dw3X.js 452 kB 452 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-other-Cf7iqkoX.js 3.86 MB 3.86 MB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-three-C1LfRdh4.js 1.37 MB 1.37 MB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-tiptap-C1NB2Q_L.js 232 kB 232 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-vue-DSfeuQOV.js 160 kB 160 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-xterm-BF8peZ5_.js 420 kB 420 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 1 added / 1 removed

Other — 3.44 MB (baseline 3.44 MB) • ⚪ 0 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SubscriptionRequiredDialogContent-Btgqe9Jp.js (removed) 28.1 kB 🟢 -28.1 kB 🟢 -6.36 kB 🟢 -5.51 kB
assets/SubscriptionRequiredDialogContent-CrZVHt6R.js (new) 28.1 kB 🔴 +28.1 kB 🔴 +6.36 kB 🔴 +5.51 kB
assets/WidgetRecordAudio-C4DdpbeT.js (new) 20.4 kB 🔴 +20.4 kB 🔴 +5.23 kB 🔴 +4.63 kB
assets/WidgetRecordAudio-s_Ii16_r.js (removed) 20.4 kB 🟢 -20.4 kB 🟢 -5.23 kB 🟢 -4.64 kB
assets/AudioPreviewPlayer-D_qbFgO9.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.37 kB 🟢 -3.01 kB
assets/AudioPreviewPlayer-P-8Y39vX.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.37 kB 🔴 +3.01 kB
assets/ValueControlPopover-DILCSRG8.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.7 kB 🔴 +1.51 kB
assets/ValueControlPopover-DW5LmVTX.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.7 kB 🟢 -1.51 kB
assets/WidgetGalleria-D2A7tuOv.js (removed) 4.1 kB 🟢 -4.1 kB 🟢 -1.44 kB 🟢 -1.3 kB
assets/WidgetGalleria-WqAbtOqV.js (new) 4.1 kB 🔴 +4.1 kB 🔴 +1.44 kB 🔴 +1.3 kB
assets/WidgetColorPicker-Cr5shhh-.js (new) 3.41 kB 🔴 +3.41 kB 🔴 +1.38 kB 🔴 +1.23 kB
assets/WidgetColorPicker-DVIxYs2n.js (removed) 3.41 kB 🟢 -3.41 kB 🟢 -1.38 kB 🟢 -1.23 kB
assets/WidgetTextarea-By7zXm3I.js (new) 3.08 kB 🔴 +3.08 kB 🔴 +1.21 kB 🔴 +1.07 kB
assets/WidgetTextarea-C0b0g_Zj.js (removed) 3.08 kB 🟢 -3.08 kB 🟢 -1.21 kB 🟢 -1.07 kB
assets/WidgetMarkdown-DerFXcPS.js (new) 3.08 kB 🔴 +3.08 kB 🔴 +1.28 kB 🔴 +1.13 kB
assets/WidgetMarkdown-zCp-_C6-.js (removed) 3.08 kB 🟢 -3.08 kB 🟢 -1.28 kB 🟢 -1.12 kB
assets/WidgetAudioUI-DesiwT2s.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +1.18 kB 🔴 +1.07 kB
assets/WidgetAudioUI-DMAwoty1.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -1.18 kB 🟢 -1.07 kB
assets/WidgetChart-BU__hen8.js (removed) 2.48 kB 🟢 -2.48 kB 🟢 -930 B 🟢 -819 B
assets/WidgetChart-DT6E_SOn.js (new) 2.48 kB 🔴 +2.48 kB 🔴 +931 B 🔴 +812 B
assets/WidgetImageCompare-0zJeINY-.js (removed) 2.21 kB 🟢 -2.21 kB 🟢 -748 B 🟢 -665 B
assets/WidgetImageCompare-BB9nVmFq.js (new) 2.21 kB 🔴 +2.21 kB 🔴 +748 B 🔴 +664 B
assets/WidgetInputText-BsLnJojH.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -918 B 🟢 -847 B
assets/WidgetInputText-O-XPLCOw.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +917 B 🔴 +828 B
assets/WidgetToggleSwitch-DP5BVq_5.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +831 B 🔴 +730 B
assets/WidgetToggleSwitch-jnFsmqVM.js (removed) 1.76 kB 🟢 -1.76 kB 🟢 -832 B 🟢 -726 B
assets/MediaImageBottom-CxHtgmoZ.js (removed) 1.55 kB 🟢 -1.55 kB 🟢 -734 B 🟢 -642 B
assets/MediaImageBottom-DzGMgUpR.js (new) 1.55 kB 🔴 +1.55 kB 🔴 +732 B 🔴 +640 B
assets/MediaAudioBottom-78v5O3YB.js (removed) 1.51 kB 🟢 -1.51 kB 🟢 -734 B 🟢 -647 B
assets/MediaAudioBottom-DDRlCuqi.js (new) 1.51 kB 🔴 +1.51 kB 🔴 +730 B 🔴 +646 B
assets/Media3DBottom-C0q16Zdo.js (new) 1.5 kB 🔴 +1.5 kB 🔴 +727 B 🔴 +643 B
assets/Media3DBottom-DeZzYcFP.js (removed) 1.5 kB 🟢 -1.5 kB 🟢 -731 B 🟢 -644 B
assets/MediaVideoBottom-DhwMelh9.js (removed) 1.5 kB 🟢 -1.5 kB 🟢 -730 B 🟢 -648 B
assets/MediaVideoBottom-ZH7Tjr3b.js (new) 1.5 kB 🔴 +1.5 kB 🔴 +728 B 🔴 +647 B
assets/Media3DTop-CfABDhaD.js (removed) 1.49 kB 🟢 -1.49 kB 🟢 -767 B 🟢 -651 B
assets/Media3DTop-e2ZHGILy.js (new) 1.49 kB 🔴 +1.49 kB 🔴 +764 B 🔴 +655 B
assets/WidgetSelect-CHwZk1GQ.js (new) 733 B 🔴 +733 B 🔴 +361 B 🔴 +321 B
assets/WidgetSelect-Clol7dZl.js (removed) 733 B 🟢 -733 B 🟢 -357 B 🟢 -316 B
assets/WidgetInputNumber-eHXfwRtt.js (removed) 673 B 🟢 -673 B 🟢 -347 B 🟢 -284 B
assets/WidgetInputNumber-q8NQR3bP.js (new) 673 B 🔴 +673 B 🔴 +347 B 🔴 +284 B
assets/Load3D-CMK8C8tA.js (new) 424 B 🔴 +424 B 🔴 +266 B 🔴 +230 B
assets/Load3D-yRHQU9ag.js (removed) 424 B 🟢 -424 B 🟢 -267 B 🟢 -223 B
assets/WidgetLegacy-BZfubKNX.js (new) 364 B 🔴 +364 B 🔴 +235 B 🔴 +194 B
assets/WidgetLegacy-CYhO_uW1.js (removed) 364 B 🟢 -364 B 🟢 -237 B 🟢 -195 B
assets/commands-BWp4HdfU.js 101 B 101 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CcfGaui5.js 14.4 kB 14.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CisfgZf5.js 13.7 kB 13.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CkU12Foh.js 13 kB 13 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CoH2DJa6.js 14.2 kB 14.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-COSt-Bjx.js 14.9 kB 14.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DalfIW5f.js 15.9 kB 15.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DfTl0eCm.js 13.5 kB 13.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DwSJL865.js 13.7 kB 13.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-Zxyx15Vd.js 12.8 kB 12.8 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-BDhxs-bB.js 79.9 kB 79.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-BtXVDFw6.js 84.7 kB 84.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Buv6RhU4.js 82.4 kB 82.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-CgJ6zvJL.js 97.2 kB 97.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-CI9qb0E5.js 112 kB 112 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Cu4LqtW0.js 81.6 kB 81.6 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Cw9RZWRY.js 89 B 89 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Dm19QY4N.js 92.2 kB 92.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Tihe0h_r.js 71.3 kB 71.3 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-wPWMutMw.js 70.4 kB 70.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/MediaAudioTop-Dr0afgCA.js 1.46 kB 1.46 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/MediaImageTop-BXa-oKEc.js 1.75 kB 1.75 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/MediaVideoTop-BVdg2b8C.js 2.65 kB 2.65 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-1Vh3MCrN.js 240 kB 240 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-aW9En70v.js 260 kB 260 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-BIckSVgU.js 273 kB 273 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-BiYpVi7D.js 263 kB 263 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-Bw_Jitw_.js 101 B 101 B ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-CCEXtYfM.js 243 kB 243 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-CvmVDWYd.js 323 kB 323 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-D_wreoPJ.js 267 kB 267 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-Dz-0ZIBN.js 297 kB 297 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-VZsNmhG7.js 264 kB 264 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/widgetPropFilter-BIbGSUAt.js 1.28 kB 1.28 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 22 added / 22 removed

Copy link
Contributor

@christian-byrne christian-byrne left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks

@christian-byrne christian-byrne merged commit 533295a into Comfy-Org:main Dec 26, 2025
32 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:S This PR changes 10-29 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants