Skip to content

fix: stop converting defaultInput to forceInput on migration#12279

Open
christian-byrne wants to merge 4 commits into
mainfrom
fix/default-input-widget-reload-v2
Open

fix: stop converting defaultInput to forceInput on migration#12279
christian-byrne wants to merge 4 commits into
mainfrom
fix/default-input-widget-reload-v2

Conversation

@christian-byrne
Copy link
Copy Markdown
Contributor

@christian-byrne christian-byrne commented May 14, 2026

Summary

Widgets with defaultInput: true that are toggled back to widget mode revert to socket-only inputs on reload. The _migrateDefaultInput method was setting forceInput = true for all optional inputs with defaultInput, which prevented widgets from being created and overrode user preferences on every load.

Since frontend 1.16+, widgets and sockets co-exist on every input, so this conversion is no longer needed. This PR removes the forceInput = true assignment while keeping the deprecation warning.

Changes

  • What: Remove inputOptions.forceInput = true from _migrateDefaultInput for optional inputs
  • Dependencies: None

Review Focus

  • The deprecation warning for defaultInput is preserved — only the forceInput = true assignment is removed
  • Required inputs are unaffected (they were never converted to forceInput)
  • Inputs with explicit forceInput: true are unaffected (their value comes from the node definition, not from migration)

Fixes Comfy-Org/ComfyUI#1500

Supersedes #10706 (fork PR had workflow permission issues)

Co-authored-by: Lidang-Jiang lidangjiang@gmail.com

Test plan

  • Unit tests for defaultInput migration behavior
  • E2E snapshot update needed for nodeDisplay.spec.ts Default input test

┆Issue is synchronized with this Notion page by Unito

The _migrateDefaultInput method set forceInput = true for every
optional input with defaultInput, preventing the widget from being
created. When users toggled a defaultInput socket back to a widget and
saved, the next reload re-applied forceInput, reverting it to a
socket-only input.

Since frontend 1.16+, widgets and sockets co-exist on every input, so
defaultInput no longer needs conversion to forceInput. Remove the
assignment while keeping the deprecation warning.

Fixes Comfy-Org/ComfyUI#1500
Address CodeRabbit review:
- Update defaultInput deprecation message to not recommend forceInput
- Add test verifying deprecation warning emission
@christian-byrne christian-byrne requested a review from a team May 14, 2026 21:25
@christian-byrne christian-byrne added the New Browser Test Expectations New browser test screenshot should be set by github action label May 14, 2026
@dosubot dosubot Bot added the size:S This PR changes 10-29 lines, ignoring generated files. label May 14, 2026
@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 14, 2026

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 05/14/2026, 10:24:58 PM UTC

Links

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 14, 2026

🎭 Playwright: ✅ 1608 passed, 0 failed

📊 Browser Reports
  • chromium: View Report (✅ 1587 / ❌ 0 / ⚠️ 0 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 18 / ❌ 0 / ⚠️ 0 / ⏭️ 0)

@christian-byrne
Copy link
Copy Markdown
Contributor Author

/update-playwright

@github-actions
Copy link
Copy Markdown

Updating Playwright Expectations

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 14, 2026

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 8cced6cd-8de1-4df0-9c51-27418095e37b

📥 Commits

Reviewing files that changed from the base of the PR and between 98b7934 and 42500d4.

📒 Files selected for processing (1)
  • src/schemas/nodeDef/migration.test.ts
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/schemas/nodeDef/migration.test.ts

📝 Walkthrough

Walkthrough

Removed migration behavior that converted defaultInput on optional inputs into forceInput. The code now only emits a deprecation warning for defaultInput usage on optional inputs. Tests were added to validate no implicit migration, preservation of types, explicit forceInput precedence, no mutation of source definitions, and the warning emission.

Changes

defaultInput migration behavior

Layer / File(s) Summary
Migration doc + logic
src/stores/nodeDefStore.ts
Updated _migrateDefaultInput docs and changed logic so defaultInput on optional inputs only triggers a console.warn deprecation message; removed setting inputOptions.forceInput = true (no mutation of input options).
Behavior tests and spies
src/schemas/nodeDef/migration.test.ts
Imported vi from vitest and added defaultInput migration test suite that asserts: optional defaultInput does not set forceInput; input type unchanged; required inputs unaffected; explicit forceInput is preserved; a deprecation console.warn is emitted; constructor does not mutate the provided node definition.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Suggested labels

size:M

Suggested reviewers

  • ltdrdata

"I nibble warnings, not the core,
A default once made widgets roar.
Now gentle notice, code stays neat,
Tests hop in — the fix is complete. 🐇"


Caution

Pre-merge checks failed

Please resolve all errors before merging. Addressing warnings is optional.

  • Ignore (reviewers only)

❌ Failed checks (1 error)

Check name Status Explanation Resolution
End-To-End Regression Coverage For Fixes ❌ Error PR uses "fix:" language, changes src/ files, but doesn't change browser_tests/. PR description lacks explanation for missing E2E test. Add Playwright regression test under browser_tests/ (update nodeDisplay.spec.ts "Default input" test snapshots), or explain in PR description why E2E test is not practical.
✅ Passed checks (6 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately describes the main change: stopping the conversion of defaultInput to forceInput during migration.
Description check ✅ Passed The description comprehensively covers the problem, solution, and scope with clear sections matching the template structure.
Linked Issues check ✅ Passed The PR directly addresses the root cause in issue #1500 by removing the forceInput assignment that was undoing user widget preferences on reload.
Out of Scope Changes check ✅ Passed All changes are directly scoped to the migration behavior fix with supporting unit tests; no unrelated modifications detected.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Adr Compliance For Entity/Litegraph Changes ✅ Passed PR modifies src/schemas/nodeDef/ and src/stores/, outside the scope of ADR checks. Changes concern node definition schema and deprecation warnings, not graph entity mutations or litegraph operations.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/default-input-widget-reload-v2

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

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 14, 2026

📦 Bundle: 5.35 MB gzip 🔴 +475 B

Details

Summary

  • Raw size: 24.7 MB baseline 24.7 MB — 🔴 +463 B
  • Gzip: 5.35 MB baseline 5.35 MB — 🔴 +475 B
  • Brotli: 4.14 MB baseline 4.14 MB — 🔴 +364 B
  • Bundles: 268 current • 268 baseline • 118 added / 118 removed

Category Glance
Data & Services 🔴 +463 B (3.16 MB) · Vendor & Third-Party ⚪ 0 B (9.94 MB) · Other ⚪ 0 B (9.14 MB) · Graph Workspace ⚪ 0 B (1.24 MB) · Panels & Settings ⚪ 0 B (526 kB) · Utilities & Hooks ⚪ 0 B (369 kB) · + 5 more

App Entry Points — 32 kB (baseline 32 kB) • ⚪ 0 B

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-CofQjVlG.js (new) 32 kB 🔴 +32 kB 🔴 +9.94 kB 🔴 +8.59 kB
assets/index-Cp2tK7Hg.js (removed) 32 kB 🟢 -32 kB 🟢 -9.94 kB 🟢 -8.57 kB

Status: 1 added / 1 removed

Graph Workspace — 1.24 MB (baseline 1.24 MB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-BQvAM99j.js (removed) 1.24 MB 🟢 -1.24 MB 🟢 -264 kB 🟢 -199 kB
assets/GraphView-Qr-259K8.js (new) 1.24 MB 🔴 +1.24 MB 🔴 +264 kB 🔴 +199 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-Ba3fMd68.js (removed) 19.6 kB 🟢 -19.6 kB 🟢 -5.14 kB 🟢 -4.56 kB
assets/CloudSurveyView-CPfHvEjS.js (new) 19.6 kB 🔴 +19.6 kB 🔴 +5.14 kB 🔴 +4.58 kB
assets/CloudLoginView-BZXd_8eh.js (new) 12.5 kB 🔴 +12.5 kB 🔴 +3.53 kB 🔴 +3.12 kB
assets/CloudLoginView-CZNK50UR.js (removed) 12.5 kB 🟢 -12.5 kB 🟢 -3.53 kB 🟢 -3.12 kB
assets/CloudSignupView-BjevcWjj.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.04 kB 🟢 -2.7 kB
assets/CloudSignupView-ChyMHcM2.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.04 kB 🔴 +2.69 kB
assets/UserCheckView-Cyq_HrK_.js (removed) 9.07 kB 🟢 -9.07 kB 🟢 -2.33 kB 🟢 -2.04 kB
assets/UserCheckView-DNMSA8-g.js (new) 9.07 kB 🔴 +9.07 kB 🔴 +2.34 kB 🔴 +2.05 kB
assets/CloudLayoutView--w97i-0_.js (removed) 7.78 kB 🟢 -7.78 kB 🟢 -2.46 kB 🟢 -2.16 kB
assets/CloudLayoutView-DWu8MrPk.js (new) 7.78 kB 🔴 +7.78 kB 🔴 +2.47 kB 🔴 +2.16 kB
assets/CloudForgotPasswordView-ByG-PCiI.js (new) 6.18 kB 🔴 +6.18 kB 🔴 +2.2 kB 🔴 +1.93 kB
assets/CloudForgotPasswordView-DgzshrEB.js (removed) 6.18 kB 🟢 -6.18 kB 🟢 -2.2 kB 🟢 -1.94 kB
assets/CloudAuthTimeoutView-BtGZPitP.js (removed) 5.54 kB 🟢 -5.54 kB 🟢 -2.04 kB 🟢 -1.78 kB
assets/CloudAuthTimeoutView-D99D2xu0.js (new) 5.54 kB 🔴 +5.54 kB 🔴 +2.04 kB 🔴 +1.8 kB
assets/CloudSubscriptionRedirectView-BQxn6H7H.js (new) 5.32 kB 🔴 +5.32 kB 🔴 +2.02 kB 🔴 +1.8 kB
assets/CloudSubscriptionRedirectView-eLk8R_pc.js (removed) 5.32 kB 🟢 -5.32 kB 🟢 -2.01 kB 🟢 -1.8 kB
assets/UserSelectView-DLY2AFIJ.js (removed) 4.7 kB 🟢 -4.7 kB 🟢 -1.75 kB 🟢 -1.55 kB
assets/UserSelectView-QKqJgC4H.js (new) 4.7 kB 🔴 +4.7 kB 🔴 +1.75 kB 🔴 +1.55 kB

Status: 9 added / 9 removed / 2 unchanged

Panels & Settings — 526 kB (baseline 526 kB) • ⚪ 0 B

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-Dqnzm1Sj.js (new) 47.5 kB 🔴 +47.5 kB 🔴 +9.86 kB 🔴 +8.73 kB
assets/KeybindingPanel-DriUhInt.js (removed) 47.5 kB 🟢 -47.5 kB 🟢 -9.85 kB 🟢 -8.73 kB
assets/SecretsPanel-WNVCH4hS.js (new) 22.9 kB 🔴 +22.9 kB 🔴 +5.55 kB 🔴 +4.88 kB
assets/SecretsPanel-ytGk4-WL.js (removed) 22.9 kB 🟢 -22.9 kB 🟢 -5.54 kB 🟢 -4.88 kB
assets/LegacyCreditsPanel-CZzAMoQm.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -5.92 kB 🟢 -5.22 kB
assets/LegacyCreditsPanel-DJqMbFgv.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +5.93 kB 🔴 +5.23 kB
assets/SubscriptionPanel-Cg2zLr5W.js (new) 20.1 kB 🔴 +20.1 kB 🔴 +5.18 kB 🔴 +4.55 kB
assets/SubscriptionPanel-DXYtRisP.js (removed) 20.1 kB 🟢 -20.1 kB 🟢 -5.17 kB 🟢 -4.54 kB
assets/AboutPanel-DrvSsoTR.js (removed) 12 kB 🟢 -12 kB 🟢 -3.32 kB 🟢 -2.98 kB
assets/AboutPanel-DwBJa3AU.js (new) 12 kB 🔴 +12 kB 🔴 +3.33 kB 🔴 +2.98 kB
assets/ExtensionPanel-1KQXWi00.js (new) 10 kB 🔴 +10 kB 🔴 +2.94 kB 🔴 +2.6 kB
assets/ExtensionPanel-mU-rzNuG.js (removed) 10 kB 🟢 -10 kB 🟢 -2.93 kB 🟢 -2.6 kB
assets/ServerConfigPanel-CcYvEkuE.js (new) 7.09 kB 🔴 +7.09 kB 🔴 +2.38 kB 🔴 +2.13 kB
assets/ServerConfigPanel-iR5guVQb.js (removed) 7.09 kB 🟢 -7.09 kB 🟢 -2.37 kB 🟢 -2.12 kB
assets/UserPanel-BKqilMQL.js (new) 6.8 kB 🔴 +6.8 kB 🔴 +2.26 kB 🔴 +1.99 kB
assets/UserPanel-C7IcbPkz.js (removed) 6.8 kB 🟢 -6.8 kB 🟢 -2.26 kB 🟢 -1.99 kB
assets/cloudRemoteConfig-DbpHifTm.js (removed) 2.09 kB 🟢 -2.09 kB 🟢 -1.01 kB 🟢 -864 B
assets/cloudRemoteConfig-HmvvYAqE.js (new) 2.09 kB 🔴 +2.09 kB 🔴 +1.01 kB 🔴 +867 B
assets/refreshRemoteConfig-BW-z1xJd.js (removed) 1.45 kB 🟢 -1.45 kB 🟢 -648 B 🟢 -549 B
assets/refreshRemoteConfig-DoGm5o_P.js (new) 1.45 kB 🔴 +1.45 kB 🔴 +649 B 🔴 +553 B

Status: 10 added / 10 removed / 14 unchanged

User & Accounts — 17.7 kB (baseline 17.7 kB) • ⚪ 0 B

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-2qhjwwhT.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.29 kB 🔴 +1.11 kB
assets/auth-DlLqlO-D.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.29 kB 🟢 -1.1 kB
assets/SignUpForm-B6fC5fGI.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-CcPGq9qK.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-DFZ6m-rt.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -1.32 kB 🟢 -1.17 kB
assets/UpdatePasswordContent-Vxt0-rvu.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +1.32 kB 🔴 +1.17 kB
assets/authStore-Dz_F2TEk.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +584 B 🔴 +517 B
assets/authStore-h3IR17C9.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -583 B 🟢 -517 B
assets/auth-B6KhdT0R.js (removed) 348 B 🟢 -348 B 🟢 -214 B 🟢 -193 B
assets/auth-nc0HzBsg.js (new) 348 B 🔴 +348 B 🔴 +216 B 🔴 +190 B

Status: 5 added / 5 removed / 2 unchanged

Editors & Dialogs — 112 kB (baseline 112 kB) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-Bm17GcjK.js (new) 85.8 kB 🔴 +85.8 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/ComfyHubPublishDialog-W29D8F7G.js (removed) 85.8 kB 🟢 -85.8 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/useShareDialog-BNLxC1in.js (removed) 23.8 kB 🟢 -23.8 kB 🟢 -5.8 kB 🟢 -5.14 kB
assets/useShareDialog-BP7xoXdd.js (new) 23.8 kB 🔴 +23.8 kB 🔴 +5.8 kB 🔴 +5.14 kB
assets/ComfyHubPublishDialog-Bp8DuSJA.js (removed) 1.4 kB 🟢 -1.4 kB 🟢 -648 B 🟢 -576 B
assets/ComfyHubPublishDialog-GGI-nsPb.js (new) 1.4 kB 🔴 +1.4 kB 🔴 +647 B 🔴 +591 B
assets/useSubscriptionDialog-CHVtHt7x.js (new) 1.21 kB 🔴 +1.21 kB 🔴 +577 B 🔴 +510 B
assets/useSubscriptionDialog-DqvRVjDl.js (removed) 1.21 kB 🟢 -1.21 kB 🟢 -577 B 🟢 -508 B

Status: 4 added / 4 removed

UI Components — 57.9 kB (baseline 57.9 kB) • ⚪ 0 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-CAqiFZ6n.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.79 kB 🔴 +3.39 kB
assets/ComfyQueueButton-DyzxEGwu.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.79 kB 🟢 -3.38 kB
assets/useTerminalTabs-B4_OeHKy.js (removed) 11.1 kB 🟢 -11.1 kB 🟢 -3.75 kB 🟢 -3.29 kB
assets/useTerminalTabs-BbWnF7hc.js (new) 11.1 kB 🔴 +11.1 kB 🔴 +3.75 kB 🔴 +3.3 kB
assets/SubscribeButton-CUklHktl.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.05 kB 🔴 +917 B
assets/SubscribeButton-D8f2TjST.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.05 kB 🟢 -919 B
assets/cloudFeedbackTopbarButton-B8gOEKVH.js (removed) 1.9 kB 🟢 -1.9 kB 🟢 -952 B 🟢 -839 B
assets/cloudFeedbackTopbarButton-CYrqlCfi.js (new) 1.9 kB 🔴 +1.9 kB 🔴 +951 B 🔴 +839 B
assets/ComfyQueueButton-Bbv_Dg6E.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -610 B 🟢 -544 B
assets/ComfyQueueButton-cJwzevcD.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +611 B 🔴 +543 B

Status: 5 added / 5 removed / 8 unchanged

Data & Services — 3.16 MB (baseline 3.16 MB) • 🔴 +463 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-CzJjSi9U.js (new) 2.08 MB 🔴 +2.08 MB 🔴 +476 kB 🔴 +360 kB
assets/dialogService-BussRYsw.js (removed) 2.08 MB 🟢 -2.08 MB 🟢 -475 kB 🟢 -360 kB
assets/api-BAFvFa5n.js (removed) 898 kB 🟢 -898 kB 🟢 -214 kB 🟢 -169 kB
assets/api-BSZtEV6h.js (new) 898 kB 🔴 +898 kB 🔴 +214 kB 🔴 +169 kB
assets/load3dService-BmyOC9Am.js (removed) 116 kB 🟢 -116 kB 🟢 -25.4 kB 🟢 -21.6 kB
assets/load3dService-CmZ0krnw.js (new) 116 kB 🔴 +116 kB 🔴 +25.4 kB 🔴 +21.6 kB
assets/workflowShareService-DMYYcsog.js (removed) 16.7 kB 🟢 -16.7 kB 🟢 -4.92 kB 🟢 -4.36 kB
assets/workflowShareService-DX-ne_I6.js (new) 16.7 kB 🔴 +16.7 kB 🔴 +4.92 kB 🔴 +4.37 kB
assets/keybindingService-BuB4gQ3-.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.22 kB
assets/keybindingService-Dh7OKLnn.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.21 kB
assets/releaseStore-ByhVhRjj.js (new) 8.12 kB 🔴 +8.12 kB 🔴 +2.28 kB 🔴 +2 kB
assets/releaseStore-Dr1QLRny.js (removed) 8.12 kB 🟢 -8.12 kB 🟢 -2.28 kB 🟢 -1.99 kB
assets/userStore-9fpHpQwD.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -931 B 🟢 -824 B
assets/userStore-A5RwizNY.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +931 B 🔴 +825 B
assets/audioService-BR5wpwNE.js (new) 1.8 kB 🔴 +1.8 kB 🔴 +877 B 🔴 +765 B
assets/audioService-Cvim65iV.js (removed) 1.8 kB 🟢 -1.8 kB 🟢 -876 B 🟢 -764 B
assets/releaseStore-CEw-MfOp.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -579 B 🟢 -513 B
assets/releaseStore-mxRD2r6V.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +579 B 🔴 +516 B
assets/workflowDraftStore-Bf5iRvKX.js (removed) 1.21 kB 🟢 -1.21 kB 🟢 -575 B 🟢 -511 B
assets/workflowDraftStore-tjbMZrYZ.js (new) 1.21 kB 🔴 +1.21 kB 🔴 +575 B 🔴 +511 B
assets/dialogService-CdX8QwMe.js (new) 1.2 kB 🔴 +1.2 kB 🔴 +569 B 🔴 +509 B
assets/dialogService-D7u3l2Gz.js (removed) 1.2 kB 🟢 -1.2 kB 🟢 -568 B 🟢 -508 B
assets/settingStore-BLH6gXnw.js (removed) 1.2 kB 🟢 -1.2 kB 🟢 -571 B 🟢 -507 B
assets/settingStore-C5ZGnxir.js (new) 1.2 kB 🔴 +1.2 kB 🔴 +571 B 🔴 +508 B
assets/assetsStore-D99dHiAB.js (new) 1.2 kB 🔴 +1.2 kB 🔴 +571 B 🔴 +508 B
assets/assetsStore-Drni5N3t.js (removed) 1.2 kB 🟢 -1.2 kB 🟢 -570 B 🟢 -508 B

Status: 13 added / 13 removed / 4 unchanged

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-D341dqI8.js (removed) 234 kB 🟢 -234 kB 🟢 -52.1 kB 🟢 -42.4 kB
assets/useConflictDetection-HxeL8R3I.js (new) 234 kB 🔴 +234 kB 🔴 +52.1 kB 🔴 +42.4 kB
assets/useLoad3d-BzJo_9Wt.js (new) 22.7 kB 🔴 +22.7 kB 🔴 +5.22 kB 🔴 +4.61 kB
assets/useLoad3d-D095IS7P.js (removed) 22.7 kB 🟢 -22.7 kB 🟢 -5.21 kB 🟢 -4.6 kB
assets/useLoad3dViewer-CXjwpsFp.js (removed) 21 kB 🟢 -21 kB 🟢 -4.92 kB 🟢 -4.31 kB
assets/useLoad3dViewer-DzxJ6lfd.js (new) 21 kB 🔴 +21 kB 🔴 +4.92 kB 🔴 +4.3 kB
assets/useFeatureFlags-CjscMbBs.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -1.79 kB 🟢 -1.53 kB
assets/useFeatureFlags-D-zQIT6B.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +1.79 kB 🔴 +1.52 kB
assets/useCopyToClipboard-C8a9_9BC.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.57 kB
assets/useCopyToClipboard-CrFY660y.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.58 kB
assets/useWorkspaceUI-BDbuJzCB.js (new) 3.34 kB 🔴 +3.34 kB 🔴 +983 B 🔴 +816 B
assets/useWorkspaceUI-DwZ-BIY9.js (removed) 3.34 kB 🟢 -3.34 kB 🟢 -981 B 🟢 -815 B
assets/subscriptionCheckoutUtil-BVrmrLeM.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.18 kB
assets/subscriptionCheckoutUtil-D2YIWycl.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.18 kB
assets/assetPreviewUtil-FNSRj0un.js (new) 2.43 kB 🔴 +2.43 kB 🔴 +1.01 kB 🔴 +880 B
assets/assetPreviewUtil-RGbYY5hv.js (removed) 2.43 kB 🟢 -2.43 kB 🟢 -1 kB 🟢 -876 B
assets/useUpstreamValue-C-7MfL9D.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -801 B 🟢 -715 B
assets/useUpstreamValue-CwHfq1jC.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +803 B 🔴 +714 B
assets/useLoad3d-2PpJxzC_.js (removed) 1.37 kB 🟢 -1.37 kB 🟢 -638 B 🟢 -569 B
assets/useLoad3d-DTxSIXR2.js (new) 1.37 kB 🔴 +1.37 kB 🔴 +637 B 🔴 +568 B
assets/useLoad3dViewer-QawJEr_U.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -604 B 🟢 -539 B
assets/useLoad3dViewer-Vl8U0EfN.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +604 B 🔴 +542 B
assets/useCurrentUser-DUu0ysV1.js (new) 1.2 kB 🔴 +1.2 kB 🔴 +572 B 🔴 +509 B
assets/useCurrentUser-DX1YR3-7.js (removed) 1.2 kB 🟢 -1.2 kB 🟢 -571 B 🟢 -507 B
assets/useWorkspaceSwitch-CawkgZwG.js (new) 747 B 🔴 +747 B 🔴 +384 B 🔴 +326 B
assets/useWorkspaceSwitch-D04KLiQc.js (removed) 747 B 🟢 -747 B 🟢 -380 B 🟢 -325 B

Status: 13 added / 13 removed / 19 unchanged

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

External libraries and shared vendor chunks

Status: 16 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-4V4ubKzd.js (new) 77.9 kB 🔴 +77.9 kB 🔴 +20.2 kB 🔴 +17.2 kB
assets/core-DJiiw09b.js (removed) 77.9 kB 🟢 -77.9 kB 🟢 -20.2 kB 🟢 -17.2 kB
assets/groupNode-CDKl7dth.js (new) 74.9 kB 🔴 +74.9 kB 🔴 +18.7 kB 🔴 +16.5 kB
assets/groupNode-DpNSlLQ7.js (removed) 74.9 kB 🟢 -74.9 kB 🟢 -18.7 kB 🟢 -16.5 kB
assets/WidgetSelect-72YfR1fh.js (new) 67.8 kB 🔴 +67.8 kB 🔴 +14.8 kB 🔴 +12.8 kB
assets/WidgetSelect-DOtZvyHX.js (removed) 67.8 kB 🟢 -67.8 kB 🟢 -14.8 kB 🟢 -12.8 kB
assets/SubscriptionRequiredDialogContentWorkspace-Bx93SZ43.js (removed) 48.9 kB 🟢 -48.9 kB 🟢 -9.54 kB 🟢 -8.25 kB
assets/SubscriptionRequiredDialogContentWorkspace-D4aVeYgh.js (new) 48.9 kB 🔴 +48.9 kB 🔴 +9.55 kB 🔴 +8.23 kB
assets/Load3DControls-BqW9lOVD.js (new) 46.1 kB 🔴 +46.1 kB 🔴 +7.51 kB 🔴 +6.55 kB
assets/Load3DControls-DF5uOev-.js (removed) 46.1 kB 🟢 -46.1 kB 🟢 -7.5 kB 🟢 -6.55 kB
assets/WorkspacePanelContent-BxbHoq4V.js (removed) 34.2 kB 🟢 -34.2 kB 🟢 -7.43 kB 🟢 -6.59 kB
assets/WorkspacePanelContent-C7Z50A__.js (new) 34.2 kB 🔴 +34.2 kB 🔴 +7.43 kB 🔴 +6.59 kB
assets/WidgetPainter-A2m5fvSi.js (removed) 33.4 kB 🟢 -33.4 kB 🟢 -8.27 kB 🟢 -7.34 kB
assets/WidgetPainter-BguYUwFa.js (new) 33.4 kB 🔴 +33.4 kB 🔴 +8.27 kB 🔴 +7.31 kB
assets/Load3dViewerContent-BHTCITpK.js (new) 30.6 kB 🔴 +30.6 kB 🔴 +6.2 kB 🔴 +5.37 kB
assets/Load3dViewerContent-tm3co8cQ.js (removed) 30.6 kB 🟢 -30.6 kB 🟢 -6.19 kB 🟢 -5.37 kB
assets/SubscriptionRequiredDialogContent-D32XoUgq.js (new) 27.6 kB 🔴 +27.6 kB 🔴 +7 kB 🔴 +6.18 kB
assets/SubscriptionRequiredDialogContent-DgRmEkjF.js (removed) 27.6 kB 🟢 -27.6 kB 🟢 -7 kB 🟢 -6.19 kB
assets/WidgetImageCrop-CsVlqRYt.js (removed) 24.3 kB 🟢 -24.3 kB 🟢 -6.22 kB 🟢 -5.47 kB
assets/WidgetImageCrop-CvMv-ly_.js (new) 24.3 kB 🔴 +24.3 kB 🔴 +6.22 kB 🔴 +5.48 kB
assets/SubscriptionPanelContentWorkspace-2XX_WJwE.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.18 kB 🟢 -4.57 kB
assets/SubscriptionPanelContentWorkspace-DngZ0lMm.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.18 kB 🔴 +4.56 kB
assets/SignInContent-CA41-c_D.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +5.46 kB 🔴 +4.77 kB
assets/SignInContent-Dw-uBpp8.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -5.46 kB 🟢 -4.8 kB
assets/CurrentUserPopoverWorkspace-DQis6oRy.js (removed) 20.8 kB 🟢 -20.8 kB 🟢 -4.98 kB 🟢 -4.45 kB
assets/CurrentUserPopoverWorkspace-vA5l_onF.js (new) 20.8 kB 🔴 +20.8 kB 🔴 +4.98 kB 🔴 +4.47 kB
assets/WidgetInputNumber-Dt5DTlBd.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.84 kB 🟢 -4.29 kB
assets/WidgetInputNumber-mSWn945t.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.84 kB 🔴 +4.29 kB
assets/Load3D-D4ERJnQV.js (removed) 18.5 kB 🟢 -18.5 kB 🟢 -4.39 kB 🟢 -3.83 kB
assets/Load3D-uYj2PeyP.js (new) 18.5 kB 🔴 +18.5 kB 🔴 +4.39 kB 🔴 +3.83 kB
assets/WidgetRecordAudio-CACyoSgr.js (removed) 17.5 kB 🟢 -17.5 kB 🟢 -5.05 kB 🟢 -4.52 kB
assets/WidgetRecordAudio-DMMEbZ6-.js (new) 17.5 kB 🔴 +17.5 kB 🔴 +5.06 kB 🔴 +4.52 kB
assets/WidgetRange---NvbJWc.js (new) 17.1 kB 🔴 +17.1 kB 🔴 +4.63 kB 🔴 +4.13 kB
assets/WidgetRange-CTaBuUAY.js (removed) 17.1 kB 🟢 -17.1 kB 🟢 -4.63 kB 🟢 -4.13 kB
assets/load3d-2urAKTvZ.js (new) 15.8 kB 🔴 +15.8 kB 🔴 +4.61 kB 🔴 +4 kB
assets/load3d-CKVnYzjO.js (removed) 15.8 kB 🟢 -15.8 kB 🟢 -4.61 kB 🟢 -4 kB
assets/WaveAudioPlayer-B7OIqlqS.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.69 kB 🟢 -3.24 kB
assets/WaveAudioPlayer-BRlxAfcN.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.69 kB 🔴 +3.23 kB
assets/WidgetCurve-BMTY5LvQ.js (new) 12.2 kB 🔴 +12.2 kB 🔴 +3.95 kB 🔴 +3.57 kB
assets/WidgetCurve-C3hJ-ung.js (removed) 12.2 kB 🟢 -12.2 kB 🟢 -3.94 kB 🟢 -3.56 kB
assets/TeamWorkspacesDialogContent-CIgL7Y4y.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.44 kB 🟢 -3.06 kB
assets/TeamWorkspacesDialogContent-D3djxN69.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.44 kB 🔴 +3.07 kB
assets/nodeTemplates-DvGmfwev.js (removed) 9.88 kB 🟢 -9.88 kB 🟢 -3.5 kB 🟢 -3.09 kB
assets/nodeTemplates-i3EkYNTy.js (new) 9.88 kB 🔴 +9.88 kB 🔴 +3.5 kB 🔴 +3.1 kB
assets/NightlySurveyController-BRevSVyl.js (new) 9.01 kB 🔴 +9.01 kB 🔴 +3.17 kB 🔴 +2.81 kB
assets/NightlySurveyController-CmDYAY3z.js (removed) 9.01 kB 🟢 -9.01 kB 🟢 -3.17 kB 🟢 -2.81 kB
assets/Load3DConfiguration-CffgY0Yf.js (removed) 8.77 kB 🟢 -8.77 kB 🟢 -2.6 kB 🟢 -2.29 kB
assets/Load3DConfiguration-DcvFPqhN.js (new) 8.77 kB 🔴 +8.77 kB 🔴 +2.61 kB 🔴 +2.29 kB
assets/InviteMemberDialogContent-B5C8Wi_V.js (new) 7.99 kB 🔴 +7.99 kB 🔴 +2.55 kB 🔴 +2.24 kB
assets/InviteMemberDialogContent-DAZKyIkm.js (removed) 7.99 kB 🟢 -7.99 kB 🟢 -2.54 kB 🟢 -2.24 kB
assets/onboardingCloudRoutes-BTzwSrGQ.js (removed) 6.94 kB 🟢 -6.94 kB 🟢 -2.17 kB 🟢 -1.85 kB
assets/onboardingCloudRoutes-DCuSr5fT.js (new) 6.94 kB 🔴 +6.94 kB 🔴 +2.17 kB 🔴 +1.86 kB
assets/WidgetWithControl-Cz6a4irW.js (removed) 6.2 kB 🟢 -6.2 kB 🟢 -2.5 kB 🟢 -2.21 kB
assets/WidgetWithControl-DXs_fNFD.js (new) 6.2 kB 🔴 +6.2 kB 🔴 +2.5 kB 🔴 +2.19 kB
assets/CreateWorkspaceDialogContent-5tRFwo4i.js (new) 6.19 kB 🔴 +6.19 kB 🔴 +2.26 kB 🔴 +1.99 kB
assets/CreateWorkspaceDialogContent-C011uGeD.js (removed) 6.19 kB 🟢 -6.19 kB 🟢 -2.25 kB 🟢 -1.98 kB
assets/FreeTierDialogContent-D1DOlsUt.js (new) 6.06 kB 🔴 +6.06 kB 🔴 +2.15 kB 🔴 +1.91 kB
assets/FreeTierDialogContent-De-duiOv.js (removed) 6.06 kB 🟢 -6.06 kB 🟢 -2.15 kB 🟢 -1.91 kB
assets/EditWorkspaceDialogContent-ByAdfEDr.js (removed) 5.99 kB 🟢 -5.99 kB 🟢 -2.22 kB 🟢 -1.94 kB
assets/EditWorkspaceDialogContent-SXiH1o3E.js (new) 5.99 kB 🔴 +5.99 kB 🔴 +2.22 kB 🔴 +1.94 kB
assets/WidgetTextarea-DpTFHkhi.js (removed) 5.8 kB 🟢 -5.8 kB 🟢 -2.29 kB 🟢 -2.03 kB
assets/WidgetTextarea-DZpI7_-A.js (new) 5.8 kB 🔴 +5.8 kB 🔴 +2.29 kB 🔴 +2.02 kB
assets/Preview3d-BGizDoJ8.js (new) 5.77 kB 🔴 +5.77 kB 🔴 +1.94 kB 🔴 +1.7 kB
assets/Preview3d-Dqj2u0o0.js (removed) 5.77 kB 🟢 -5.77 kB 🟢 -1.94 kB 🟢 -1.69 kB
assets/ValueControlPopover-CVjBGr-X.js (new) 5.57 kB 🔴 +5.57 kB 🔴 +2.04 kB 🔴 +1.82 kB
assets/ValueControlPopover-DfRPeKzb.js (removed) 5.57 kB 🟢 -5.57 kB 🟢 -2.03 kB 🟢 -1.82 kB
assets/CancelSubscriptionDialogContent-CyHS7MOU.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2.07 kB 🟢 -1.83 kB
assets/CancelSubscriptionDialogContent-DiuOoooa.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2.08 kB 🔴 +1.83 kB
assets/DeleteWorkspaceDialogContent-B2oFK4Ar.js (new) 4.89 kB 🔴 +4.89 kB 🔴 +1.9 kB 🔴 +1.65 kB
assets/DeleteWorkspaceDialogContent-BkL6VDdv.js (removed) 4.89 kB 🟢 -4.89 kB 🟢 -1.89 kB 🟢 -1.65 kB
assets/saveMesh-74FOgd7g.js (removed) 4.75 kB 🟢 -4.75 kB 🟢 -1.89 kB 🟢 -1.68 kB
assets/saveMesh-B2nS7xSX.js (new) 4.75 kB 🔴 +4.75 kB 🔴 +1.89 kB 🔴 +1.68 kB
assets/LeaveWorkspaceDialogContent-DgE-jnxc.js (removed) 4.72 kB 🟢 -4.72 kB 🟢 -1.84 kB 🟢 -1.6 kB
assets/LeaveWorkspaceDialogContent-WAXZcMGM.js (new) 4.72 kB 🔴 +4.72 kB 🔴 +1.84 kB 🔴 +1.62 kB
assets/RemoveMemberDialogContent-BDxRGtKA.js (removed) 4.7 kB 🟢 -4.7 kB 🟢 -1.79 kB 🟢 -1.57 kB
assets/RemoveMemberDialogContent-CRoUM2E8.js (new) 4.7 kB 🔴 +4.7 kB 🔴 +1.79 kB 🔴 +1.58 kB
assets/RevokeInviteDialogContent-CKP94e73.js (removed) 4.61 kB 🟢 -4.61 kB 🟢 -1.8 kB 🟢 -1.59 kB
assets/RevokeInviteDialogContent-QTqoEpb7.js (new) 4.61 kB 🔴 +4.61 kB 🔴 +1.81 kB 🔴 +1.59 kB
assets/InviteMemberUpsellDialogContent-B8g4iubf.js (new) 4.51 kB 🔴 +4.51 kB 🔴 +1.67 kB 🔴 +1.47 kB
assets/InviteMemberUpsellDialogContent-BwxuZJDq.js (removed) 4.51 kB 🟢 -4.51 kB 🟢 -1.67 kB 🟢 -1.47 kB
assets/tierBenefits-bZJh6ZIv.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.58 kB 🔴 +1.36 kB
assets/tierBenefits-DKby64qd.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/Media3DTop-BXak5y_E.js (new) 4.39 kB 🔴 +4.39 kB 🔴 +1.79 kB 🔴 +1.6 kB
assets/Media3DTop-DDgxeJP5.js (removed) 4.39 kB 🟢 -4.39 kB 🟢 -1.79 kB 🟢 -1.6 kB
assets/cloudSessionCookie-CEI39Uvy.js (new) 4.36 kB 🔴 +4.36 kB 🔴 +1.59 kB 🔴 +1.39 kB
assets/cloudSessionCookie-DggRgpTR.js (removed) 4.36 kB 🟢 -4.36 kB 🟢 -1.59 kB 🟢 -1.39 kB
assets/GlobalToast-aXIdTFK8.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.12 kB
assets/GlobalToast-CremoS-v.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.25 kB 🟢 -1.1 kB
assets/CloudRunButtonWrapper-BuicYS-K.js (new) 2.27 kB 🔴 +2.27 kB 🔴 +1.04 kB 🔴 +924 B
assets/CloudRunButtonWrapper-k_HV39Ri.js (removed) 2.27 kB 🟢 -2.27 kB 🟢 -1.03 kB 🟢 -924 B
assets/SubscribeToRun-DYeAGsPp.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +983 B 🔴 +879 B
assets/SubscribeToRun-ewFwx64J.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -982 B 🟢 -893 B
assets/MediaAudioTop-DiZwwdAQ.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -1.01 kB 🟢 -859 B
assets/MediaAudioTop-vMouZ_hr.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +1 kB 🔴 +858 B
assets/cloudBadges-CgqTcRvf.js (new) 2.01 kB 🔴 +2.01 kB 🔴 +994 B 🔴 +862 B
assets/cloudBadges-DS8nAn1-.js (removed) 2.01 kB 🟢 -2.01 kB 🟢 -991 B 🟢 -861 B
assets/cloudSubscription-BvRsJHCt.js (new) 1.92 kB 🔴 +1.92 kB 🔴 +915 B 🔴 +798 B
assets/cloudSubscription-DKUYEhnY.js (removed) 1.92 kB 🟢 -1.92 kB 🟢 -914 B 🟢 -794 B
assets/graphHasMissingNodes-BiHQnIDC.js (removed) 1.84 kB 🟢 -1.84 kB 🟢 -858 B 🟢 -763 B
assets/graphHasMissingNodes-CJN1MwUM.js (new) 1.84 kB 🔴 +1.84 kB 🔴 +860 B 🔴 +772 B
assets/Load3D-Bauqq7Jf.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +732 B 🔴 +651 B
assets/Load3D-Cr1dABpg.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -730 B 🟢 -647 B
assets/nightlyBadges-C6mvmHJm.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +764 B 🔴 +676 B
assets/nightlyBadges-CATZvqkB.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -763 B 🟢 -674 B
assets/previousFullPath-B7MdwruQ.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -692 B 🟢 -599 B
assets/previousFullPath-CYMEw4e5.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +696 B 🔴 +597 B
assets/Load3dViewerContent-C7gPFK5s.js (removed) 1.5 kB 🟢 -1.5 kB 🟢 -680 B 🟢 -601 B
assets/Load3dViewerContent-DmdLtaTl.js (new) 1.5 kB 🔴 +1.5 kB 🔴 +680 B 🔴 +600 B
assets/SubscriptionPanelContentWorkspace-BZ5teSjT.js (removed) 1.39 kB 🟢 -1.39 kB 🟢 -637 B 🟢 -558 B
assets/SubscriptionPanelContentWorkspace-WzM73pUt.js (new) 1.39 kB 🔴 +1.39 kB 🔴 +637 B 🔴 +556 B
assets/WidgetLegacy-BK_lax0B.js (new) 1.22 kB 🔴 +1.22 kB 🔴 +583 B 🔴 +517 B
assets/WidgetLegacy-DseMKH6x.js (removed) 1.22 kB 🟢 -1.22 kB 🟢 -583 B 🟢 -517 B
assets/changeTracker-DSnE6aEd.js (removed) 1.19 kB 🟢 -1.19 kB 🟢 -570 B 🟢 -504 B
assets/changeTracker-DsOTM1B9.js (new) 1.19 kB 🔴 +1.19 kB 🔴 +571 B 🔴 +507 B

Status: 57 added / 57 removed / 85 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.2 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.6 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.3 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.0 MB heap
large-graph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 81.0 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 77.2 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 79.3 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 78.7 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.5 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.8 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.4 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 163ms TBT · 131.5 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 73.9 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 158.6 MB heap
vue-large-graph-pan: · 56.3 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 59ms TBT · 222.6 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.9 MB heap

⚠️ 8 regressions detected

Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 398ms 477ms +20% ⚠️ z=2.7
canvas-zoom-sweep: task duration 281ms 383ms +36% ⚠️ z=2.5
large-graph-idle: task duration 599ms 671ms +12% ⚠️ z=2.4
large-graph-pan: style recalc duration 18ms 19ms +10% ⚠️ z=2.7
large-graph-pan: task duration 1138ms 1211ms +6% ⚠️ z=3.0
minimap-idle: task duration 555ms 687ms +24% ⚠️ z=3.4
minimap-idle: script duration 95ms 119ms +26% ⚠️ z=2.1
subgraph-idle: task duration 405ms 529ms +30% ⚠️ z=5.1
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.5
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 10ms 11ms +2% z=-0.1
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 11 11 -5% z=-1.2
canvas-idle: task duration 398ms 477ms +20% ⚠️ z=2.7
canvas-idle: script duration 24ms 25ms +4% z=-0.0
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 66.3 MB 66.2 MB -0%
canvas-idle: DOM nodes -259 -261 +1% z=-222.4
canvas-idle: event listeners -129 -131 +2% z=-30.1
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.9
canvas-mouse-sweep: p95 frame time 17ms 17ms +1%
canvas-mouse-sweep: layout duration 4ms 4ms -3% z=-0.1
canvas-mouse-sweep: style recalc duration 39ms 42ms +9% z=-0.1
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 73 77 +5% z=-0.9
canvas-mouse-sweep: task duration 823ms 914ms +11% z=0.8
canvas-mouse-sweep: script duration 132ms 139ms +5% z=0.5
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 50.7 MB 58.6 MB +16%
canvas-mouse-sweep: DOM nodes -263 -264 +0% z=-126.2
canvas-mouse-sweep: event listeners -131 -131 +0% z=-33.5
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms -0%
canvas-zoom-sweep: layout duration 1ms 1ms +5% z=0.1
canvas-zoom-sweep: style recalc duration 16ms 19ms +20% z=-0.1
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 30 32 +7% z=1.6
canvas-zoom-sweep: task duration 281ms 383ms +36% ⚠️ z=2.5
canvas-zoom-sweep: script duration 17ms 26ms +52% z=-0.3
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 46.6 MB 56.3 MB +21%
canvas-zoom-sweep: DOM nodes 76 -67 -188% z=-184.8
canvas-zoom-sweep: event listeners 19 -51 -366% z=-14.3
dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.2
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 8ms 9ms +5% z=-1.7
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 10 11 +10% z=-4.2
dom-widget-clipping: task duration 349ms 376ms +8% z=0.7
dom-widget-clipping: script duration 66ms 66ms +0% z=-0.5
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 60.8 MB 55.0 MB -10%
dom-widget-clipping: DOM nodes 16 18 +13% z=-2.9
dom-widget-clipping: event listeners 0 1 variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.2
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 9ms 10ms +8% z=-2.4
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 8 9 +6% z=-9.9
large-graph-idle: task duration 599ms 671ms +12% ⚠️ z=2.4
large-graph-idle: script duration 93ms 115ms +24% z=1.2
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 96.2 MB 81.0 MB -16%
large-graph-idle: DOM nodes -264 -264 +0% z=-319.4
large-graph-idle: event listeners -129 -129 +0% z=-25.4
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms -1%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 18ms 19ms +10% ⚠️ z=2.7
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 69 +0% z=-0.9
large-graph-pan: task duration 1138ms 1211ms +6% ⚠️ z=3.0
large-graph-pan: script duration 404ms 417ms +3% z=0.4
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 104.4 MB 77.2 MB -26%
large-graph-pan: DOM nodes -263 -264 +0% z=-171.5
large-graph-pan: event listeners -127 -128 +1% z=-160.5
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 7ms 8ms +12%
large-graph-zoom: style recalc duration 19ms 18ms -2%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 64 -4%
large-graph-zoom: task duration 1344ms 1434ms +7%
large-graph-zoom: script duration 485ms 520ms +7%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 69.4 MB 79.3 MB +14%
large-graph-zoom: DOM nodes -266 -130 -51%
large-graph-zoom: event listeners -127 -60 -53%
minimap-idle: avg frame time 17ms 17ms +0% z=0.7
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 10ms 9ms -2% z=-0.2
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 10 9 -15% z=-1.6
minimap-idle: task duration 555ms 687ms +24% ⚠️ z=3.4
minimap-idle: script duration 95ms 119ms +26% ⚠️ z=2.1
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 84.2 MB 78.7 MB -7%
minimap-idle: DOM nodes -262 -264 +1% z=-206.6
minimap-idle: event listeners -129 -129 +0% z=-202.3
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.7
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms +1%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 12ms +7% z=-0.8
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 47 +0% z=-1.6
subgraph-dom-widget-clipping: task duration 350ms 377ms +8% z=-0.0
subgraph-dom-widget-clipping: script duration 122ms 124ms +2% z=-0.6
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 62.2 MB 57.5 MB -7%
subgraph-dom-widget-clipping: DOM nodes 20 20 +0% z=-1.9
subgraph-dom-widget-clipping: event listeners 6 6 +0% z=-1.7
subgraph-idle: avg frame time 17ms 17ms -0% z=-0.7
subgraph-idle: p95 frame time 17ms 17ms -0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 9ms 11ms +15% z=0.2
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 9 10 +11% z=-1.4
subgraph-idle: task duration 405ms 529ms +30% ⚠️ z=5.1
subgraph-idle: script duration 16ms 25ms +56% z=1.8
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 66.2 MB 64.8 MB -2%
subgraph-idle: DOM nodes -258 -260 +1% z=-188.2
subgraph-idle: event listeners -129 -146 +13% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.1
subgraph-mouse-sweep: p95 frame time 17ms 17ms -1%
subgraph-mouse-sweep: layout duration 4ms 5ms +10% z=0.3
subgraph-mouse-sweep: style recalc duration 41ms 48ms +17% z=1.7
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 78 80 +3% z=-0.1
subgraph-mouse-sweep: task duration 700ms 888ms +27% z=1.8
subgraph-mouse-sweep: script duration 100ms 106ms +6% z=0.8
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 46.2 MB 52.4 MB +13%
subgraph-mouse-sweep: DOM nodes -260 -258 -1% z=-145.4
subgraph-mouse-sweep: event listeners -129 -132 +2% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms +1%
subgraph-transition-enter: layout duration 12ms 14ms +17%
subgraph-transition-enter: style recalc duration 27ms 30ms +10%
subgraph-transition-enter: layout count 4 4 +0%
subgraph-transition-enter: style recalc count 16 14 -13%
subgraph-transition-enter: task duration 830ms 958ms +15%
subgraph-transition-enter: script duration 30ms 41ms +39%
subgraph-transition-enter: TBT 154ms 163ms +6%
subgraph-transition-enter: heap used 212.2 MB 131.5 MB -38%
subgraph-transition-enter: DOM nodes 13513 12475 -8%
subgraph-transition-enter: event listeners 2529 1288 -49%
viewport-pan-sweep: avg frame time 17ms 17ms -0%
viewport-pan-sweep: p95 frame time 17ms 17ms +0%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 52ms 54ms +5%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 250 -0%
viewport-pan-sweep: task duration 3869ms 3966ms +3%
viewport-pan-sweep: script duration 1244ms 1315ms +6%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 140.4 MB 73.9 MB -47%
viewport-pan-sweep: DOM nodes -263 -123 -53%
viewport-pan-sweep: event listeners -127 -47 -63%
vue-large-graph-idle: avg frame time 17ms 17ms -0%
vue-large-graph-idle: p95 frame time 17ms 17ms -0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 14930ms 12718ms -15%
vue-large-graph-idle: script duration 697ms 639ms -8%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 276.6 MB 158.6 MB -43%
vue-large-graph-idle: DOM nodes -8331 -8348 +0%
vue-large-graph-idle: event listeners -16486 -16464 -0%
vue-large-graph-pan: avg frame time 17ms 18ms +3%
vue-large-graph-pan: p95 frame time 17ms 17ms +0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 16ms 20ms +24%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 68 91 +34%
vue-large-graph-pan: task duration 14173ms 16327ms +15%
vue-large-graph-pan: script duration 835ms 1042ms +25%
vue-large-graph-pan: TBT 0ms 59ms
vue-large-graph-pan: heap used 158.0 MB 222.6 MB +41%
vue-large-graph-pan: DOM nodes -8331 -8330 -0%
vue-large-graph-pan: event listeners -16488 -16488 +0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms -1%
workflow-execution: layout duration 1ms 1ms +2% z=-1.0
workflow-execution: style recalc duration 25ms 21ms -15% z=-1.4
workflow-execution: layout count 6 5 -25% z=-0.8
workflow-execution: style recalc count 18 15 -19% z=-1.6
workflow-execution: task duration 147ms 111ms -25% z=-1.1
workflow-execution: script duration 25ms 27ms +6% z=-0.8
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 49.9 MB 52.9 MB +6%
workflow-execution: DOM nodes 157 156 -1% z=-0.7
workflow-execution: event listeners 69 53 -23% z=0.3
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-05-14T22:34:23.698Z",
  "gitSha": "0de302b5d918b23bd35e9f5687806046aa4dde09",
  "branch": "fix/default-input-widget-reload-v2",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2032.2630000000004,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.486999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 465.28700000000003,
      "heapDeltaBytes": 20258008,
      "heapUsedBytes": 69337140,
      "domNodes": -263,
      "jsHeapTotalBytes": 19525632,
      "scriptDurationMs": 20.330000000000002,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2062.579000000028,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 11.908,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 488.78000000000003,
      "heapDeltaBytes": 19757900,
      "heapUsedBytes": 69578036,
      "domNodes": -259,
      "jsHeapTotalBytes": 16732160,
      "scriptDurationMs": 30.144,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1980.2549999999997,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 41.931000000000004,
      "layouts": 12,
      "layoutDurationMs": 3.5580000000000003,
      "taskDurationMs": 924.559,
      "heapDeltaBytes": 6836584,
      "heapUsedBytes": 55199580,
      "domNodes": -267,
      "jsHeapTotalBytes": 14807040,
      "scriptDurationMs": 137.319,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1934.0640000000349,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 42.525,
      "layouts": 12,
      "layoutDurationMs": 3.606,
      "taskDurationMs": 902.8680000000002,
      "heapDeltaBytes": -1060188,
      "heapUsedBytes": 67750216,
      "domNodes": -261,
      "jsHeapTotalBytes": 20926464,
      "scriptDurationMs": 140.082,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1713.9460000000213,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 18.938,
      "layouts": 6,
      "layoutDurationMs": 0.6230000000000001,
      "taskDurationMs": 355.26,
      "heapDeltaBytes": 23070332,
      "heapUsedBytes": 73149344,
      "domNodes": 76,
      "jsHeapTotalBytes": 25690112,
      "scriptDurationMs": 22.362999999999996,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1732.5879999999643,
      "styleRecalcs": 33,
      "styleRecalcDurationMs": 18.938,
      "layouts": 6,
      "layoutDurationMs": 0.6690000000000002,
      "taskDurationMs": 411.71500000000003,
      "heapDeltaBytes": -3529316,
      "heapUsedBytes": 44870196,
      "domNodes": -210,
      "jsHeapTotalBytes": 19001344,
      "scriptDurationMs": 30.133,
      "eventListeners": -120,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 645.2869999999962,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.601,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 390.359,
      "heapDeltaBytes": 9142440,
      "heapUsedBytes": 57256928,
      "domNodes": 16,
      "jsHeapTotalBytes": 14417920,
      "scriptDurationMs": 65.996,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 577.3550000000114,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 9.476999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 362.027,
      "heapDeltaBytes": -10133028,
      "heapUsedBytes": 58015792,
      "domNodes": 20,
      "jsHeapTotalBytes": 19660800,
      "scriptDurationMs": 66.462,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2031.2739999999962,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 10.344,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 693.3319999999999,
      "heapDeltaBytes": 42854672,
      "heapUsedBytes": 101566384,
      "domNodes": -266,
      "jsHeapTotalBytes": 32006144,
      "scriptDurationMs": 113.64500000000001,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2037.238000000002,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 9.146,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 647.9910000000001,
      "heapDeltaBytes": 9838484,
      "heapUsedBytes": 68233312,
      "domNodes": -262,
      "jsHeapTotalBytes": 548864,
      "scriptDurationMs": 117.20299999999999,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2139.967000000013,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 17.979,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1133.0809999999997,
      "heapDeltaBytes": -1103476,
      "heapUsedBytes": 58407440,
      "domNodes": -265,
      "jsHeapTotalBytes": 1015808,
      "scriptDurationMs": 402.495,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2297.154999999975,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 20.862,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1289.1730000000002,
      "heapDeltaBytes": 42079192,
      "heapUsedBytes": 103427900,
      "domNodes": -263,
      "jsHeapTotalBytes": 38006784,
      "scriptDurationMs": 430.601,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3295.4460000000267,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 19.874,
      "layouts": 60,
      "layoutDurationMs": 8.138,
      "taskDurationMs": 1494.54,
      "heapDeltaBytes": 38906680,
      "heapUsedBytes": 106704584,
      "domNodes": 12,
      "jsHeapTotalBytes": 59387904,
      "scriptDurationMs": 538.242,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3164.22799999998,
      "styleRecalcs": 62,
      "styleRecalcDurationMs": 16.243000000000006,
      "layouts": 60,
      "layoutDurationMs": 7.678000000000001,
      "taskDurationMs": 1374.3780000000002,
      "heapDeltaBytes": -1650608,
      "heapUsedBytes": 59607784,
      "domNodes": -271,
      "jsHeapTotalBytes": 5005312,
      "scriptDurationMs": 502.47799999999995,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2091.1199999999894,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.862000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 727.376,
      "heapDeltaBytes": 41137764,
      "heapUsedBytes": 101948084,
      "domNodes": -262,
      "jsHeapTotalBytes": 33841152,
      "scriptDurationMs": 123.33300000000001,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2027.1839999999202,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.873000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 646.662,
      "heapDeltaBytes": 1449852,
      "heapUsedBytes": 63016756,
      "domNodes": -265,
      "jsHeapTotalBytes": 2965504,
      "scriptDurationMs": 115.09400000000002,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 594.5830000000001,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 11.860999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 390.10299999999995,
      "heapDeltaBytes": -4008212,
      "heapUsedBytes": 62514568,
      "domNodes": 20,
      "jsHeapTotalBytes": 22634496,
      "scriptDurationMs": 126.287,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.669999999999998,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 537.9149999999981,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 12.01,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 364.459,
      "heapDeltaBytes": 9086328,
      "heapUsedBytes": 58158820,
      "domNodes": 20,
      "jsHeapTotalBytes": 16252928,
      "scriptDurationMs": 122.45,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2056.56799999997,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 10.702,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 521.0380000000001,
      "heapDeltaBytes": 177824,
      "heapUsedBytes": 66492784,
      "domNodes": -259,
      "jsHeapTotalBytes": 22499328,
      "scriptDurationMs": 26.329000000000004,
      "eventListeners": -161,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2023.5430000000179,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 10.408999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 536.3530000000001,
      "heapDeltaBytes": 20149720,
      "heapUsedBytes": 69313688,
      "domNodes": -260,
      "jsHeapTotalBytes": 18739200,
      "scriptDurationMs": 23.514,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1959.4400000000292,
      "styleRecalcs": 82,
      "styleRecalcDurationMs": 55.24,
      "layouts": 16,
      "layoutDurationMs": 4.763,
      "taskDurationMs": 956.7370000000001,
      "heapDeltaBytes": 1082572,
      "heapUsedBytes": 50019424,
      "domNodes": -260,
      "jsHeapTotalBytes": 14807040,
      "scriptDurationMs": 102.348,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1771.178999999961,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 41.207,
      "layouts": 16,
      "layoutDurationMs": 4.805000000000001,
      "taskDurationMs": 819.3820000000001,
      "heapDeltaBytes": -8696800,
      "heapUsedBytes": 59912424,
      "domNodes": -256,
      "jsHeapTotalBytes": 26955776,
      "scriptDurationMs": 109.922,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1230.6460000000925,
      "styleRecalcs": 14,
      "styleRecalcDurationMs": 29.71399999999999,
      "layouts": 4,
      "layoutDurationMs": 14.041000000000002,
      "taskDurationMs": 957.9450000000003,
      "heapDeltaBytes": -22987512,
      "heapUsedBytes": 137928108,
      "domNodes": 12475,
      "jsHeapTotalBytes": -14163968,
      "scriptDurationMs": 41.156,
      "eventListeners": 1288,
      "totalBlockingTimeMs": 163,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8210.513000000048,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 54.681999999999995,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3975.2950000000005,
      "heapDeltaBytes": 12756688,
      "heapUsedBytes": 71309076,
      "domNodes": -261,
      "jsHeapTotalBytes": 7307264,
      "scriptDurationMs": 1307.482,
      "eventListeners": -113,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8105.199999999968,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 53.582,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3957.074,
      "heapDeltaBytes": 17422092,
      "heapUsedBytes": 83628248,
      "domNodes": 16,
      "jsHeapTotalBytes": 18145280,
      "scriptDurationMs": 1321.5499999999997,
      "eventListeners": 20,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12792.705000000013,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12764.043,
      "heapDeltaBytes": -44670076,
      "heapUsedBytes": 172971388,
      "domNodes": -8365,
      "jsHeapTotalBytes": 27062272,
      "scriptDurationMs": 646.95,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12683.657999999923,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12672.002,
      "heapDeltaBytes": -57454232,
      "heapUsedBytes": 159568316,
      "domNodes": -8331,
      "jsHeapTotalBytes": 26275840,
      "scriptDurationMs": 631.005,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14923.129000000017,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 18.015000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14897.381000000001,
      "heapDeltaBytes": -41111956,
      "heapUsedBytes": 174731200,
      "domNodes": -8331,
      "jsHeapTotalBytes": -24576,
      "scriptDurationMs": 929.4500000000002,
      "eventListeners": -16490,
      "totalBlockingTimeMs": 99,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 17786.201000000005,
      "styleRecalcs": 114,
      "styleRecalcDurationMs": 21.19199999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17757.121000000003,
      "heapDeltaBytes": 14079748,
      "heapUsedBytes": 292056084,
      "domNodes": -8329,
      "jsHeapTotalBytes": 30994432,
      "scriptDurationMs": 1155.429,
      "eventListeners": -16486,
      "totalBlockingTimeMs": 18,
      "frameDurationMs": 17.776666666666763,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "workflow-execution",
      "durationMs": 461.6049999999632,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 22.973999999999997,
      "layouts": 5,
      "layoutDurationMs": 1.3560000000000003,
      "taskDurationMs": 126.13000000000002,
      "heapDeltaBytes": 5429520,
      "heapUsedBytes": 57164716,
      "domNodes": 168,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 28.537,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "workflow-execution",
      "durationMs": 134.08000000003995,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 19.130000000000003,
      "layouts": 4,
      "layoutDurationMs": 1.4569999999999999,
      "taskDurationMs": 96.01799999999996,
      "heapDeltaBytes": 3470896,
      "heapUsedBytes": 53725440,
      "domNodes": 144,
      "jsHeapTotalBytes": 524288,
      "scriptDurationMs": 24.718,
      "eventListeners": 37,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

@christian-byrne
Copy link
Copy Markdown
Contributor Author

/update-playwright

@codecov
Copy link
Copy Markdown

codecov Bot commented May 14, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@             Coverage Diff             @@
##             main   #12279       +/-   ##
===========================================
- Coverage   74.27%   59.52%   -14.76%     
===========================================
  Files        1521     1411      -110     
  Lines       90478    71866    -18612     
  Branches    25722    19019     -6703     
===========================================
- Hits        67204    42777    -24427     
- Misses      22426    28615     +6189     
+ Partials      848      474      -374     
Flag Coverage Δ
e2e ?
unit 59.52% <ø> (+<0.01%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/stores/nodeDefStore.ts 80.00% <ø> (-15.00%) ⬇️

... and 1004 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@christian-byrne
Copy link
Copy Markdown
Contributor Author

/update-playwright

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 14, 2026

Caution

Failed to replace (edit) comment. This is likely due to insufficient permissions or the comment being deleted.

Error details
{}

Copy link
Copy Markdown
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

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/schemas/nodeDef/migration.test.ts`:
- Around line 635-660: The test creates a console.warn spy (warnSpy) but
restores it unconditionally after the assertion, which can be skipped if
expect() throws; wrap the assertion and any code that might throw inside a
try/finally so warnSpy.mockRestore() always runs. Locate the test case that
constructs new ComfyNodeDefImpl({...}) and the
expect(warnSpy).toHaveBeenCalledWith(...) call, and refactor it so the spy is
created, the body (construction and expect) runs inside try, and
warnSpy.mockRestore() is executed in the finally block to guarantee cleanup.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 5f7aa35b-a538-429d-b96a-e907bbe4dd89

📥 Commits

Reviewing files that changed from the base of the PR and between b578147 and 99b9e64.

📒 Files selected for processing (2)
  • src/schemas/nodeDef/migration.test.ts
  • src/stores/nodeDefStore.ts

Comment thread src/schemas/nodeDef/migration.test.ts
Copy link
Copy Markdown
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.

♻️ Duplicate comments (1)
src/schemas/nodeDef/migration.test.ts (1)

635-660: ⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Make console.warn spy cleanup failure-safe.

If this test throws before cleanup, console.warn stays mocked and can leak into later tests. Wrap the body in try/finally so restore always runs.

Proposed patch
     it('should emit deprecation warning for optional input with defaultInput', () => {
       const warnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {})
-
-      new ComfyNodeDefImpl({
-        name: 'TestNode',
-        display_name: 'Test Node',
-        category: 'Test',
-        python_module: 'test_module',
-        description: 'A test node',
-        input: {
-          optional: {
-            seed: ['INT', { defaultInput: true }]
-          }
-        },
-        output: [],
-        output_is_list: [],
-        output_name: [],
-        output_node: false
-      } as ComfyNodeDefV1)
-
-      expect(warnSpy).toHaveBeenCalledWith(
-        'Use of defaultInput on optional input test_module:TestNode:seed is deprecated and ignored. Remove defaultInput. Use forceInput only if you intentionally want a socket-only input.'
-      )
-
-      warnSpy.mockRestore()
+      try {
+        new ComfyNodeDefImpl({
+          name: 'TestNode',
+          display_name: 'Test Node',
+          category: 'Test',
+          python_module: 'test_module',
+          description: 'A test node',
+          input: {
+            optional: {
+              seed: ['INT', { defaultInput: true }]
+            }
+          },
+          output: [],
+          output_is_list: [],
+          output_name: [],
+          output_node: false
+        } as ComfyNodeDefV1)
+
+        expect(warnSpy).toHaveBeenCalledWith(
+          'Use of defaultInput on optional input test_module:TestNode:seed is deprecated and ignored. Remove defaultInput. Use forceInput only if you intentionally want a socket-only input.'
+        )
+      } finally {
+        warnSpy.mockRestore()
+      }
     })
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/schemas/nodeDef/migration.test.ts` around lines 635 - 660, The test
currently spies on console.warn using vi.spyOn and calls warnSpy.mockRestore()
at the end, but if the test body throws the spy may not be restored; update the
'should emit deprecation warning for optional input with defaultInput' test to
wrap the creation of ComfyNodeDefImpl and the expect assertion in a try/finally
block and call warnSpy.mockRestore() inside finally so the console.warn spy is
always restored even on failure; reference the existing warnSpy, console.warn,
and ComfyNodeDefImpl symbols when making the change.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Duplicate comments:
In `@src/schemas/nodeDef/migration.test.ts`:
- Around line 635-660: The test currently spies on console.warn using vi.spyOn
and calls warnSpy.mockRestore() at the end, but if the test body throws the spy
may not be restored; update the 'should emit deprecation warning for optional
input with defaultInput' test to wrap the creation of ComfyNodeDefImpl and the
expect assertion in a try/finally block and call warnSpy.mockRestore() inside
finally so the console.warn spy is always restored even on failure; reference
the existing warnSpy, console.warn, and ComfyNodeDefImpl symbols when making the
change.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 44411b41-5acf-4435-aa00-8614d02efe3a

📥 Commits

Reviewing files that changed from the base of the PR and between b578147 and 98b7934.

⛔ Files ignored due to path filters (2)
  • browser_tests/tests/interaction.spec.ts-snapshots/dragged-node1-chromium-linux.png is excluded by !**/*.png
  • browser_tests/tests/nodeDisplay.spec.ts-snapshots/default-input-chromium-linux.png is excluded by !**/*.png
📒 Files selected for processing (2)
  • src/schemas/nodeDef/migration.test.ts
  • src/stores/nodeDefStore.ts

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
@christian-byrne
Copy link
Copy Markdown
Contributor Author

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 14, 2026

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@christian-byrne
Copy link
Copy Markdown
Contributor Author

cc @Lidang-Jiang - This PR supersedes your #10706. All CI passing, just needs CodeRabbit approval (or dismissal of old review). The try/finally fix addresses their feedback.

@christian-byrne
Copy link
Copy Markdown
Contributor Author

/assign @Lidang-Jiang

@christian-byrne christian-byrne self-assigned this May 18, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

New Browser Test Expectations New browser test screenshot should be set by github action size:S This PR changes 10-29 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

defaultInput changes widget to input on reload

2 participants