Skip to content

fix(assets): resolve annotated widget values to their own directory - #15065

Open
christian-byrne wants to merge 4 commits into
mainfrom
cb/trackB-assets-loadimage
Open

fix(assets): resolve annotated widget values to their own directory#15065
christian-byrne wants to merge 4 commits into
mainfrom
cb/trackB-assets-loadimage

Conversation

@christian-byrne

@christian-byrne christian-byrne commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Load Image nodes populated from the assets sidebar's Generated tab show "Image failed to load" permanently, on the same nodes, surviving reload and re-upload.

Root cause

createAnnotatedPath writes <path> [output] / <path> [temp] for assets that don't live under the implicit input root. Nothing could read that format back.

nodeOutputStore.createOutputs handed the raw widget value to parseFilePath, which only splits on the last / and leaves the annotation glued to the filename, then typed every image with the caller's folder — which defaults to 'input' and is never passed by the Load Image combo callback. So a value of runs/2026/generated.png [output] produced:

/api/view?type=input&filename=generated.png+%5Boutput%5D&subfolder=runs%2F2026

which 404s. The value is stored in the workflow, so the failure is deterministic per node and re-uploading the asset never helps.

This is why file-picker uploads work and sidebar-inserted assets don't: uploads write a bare input-rooted name, which parses correctly by accident.

Change

parseAnnotatedPath, the exact inverse of createAnnotatedPath, colocated with it. createOutputs uses it so the annotation decides the directory instead of leaking into the filename. Unannotated values still resolve to the caller's folder, so the upload path is byte-for-byte unchanged.

useMaskEditorSaver (:308) passes an annotated path with folder: 'input' and had the same latent bug; it is fixed by the same change.

Regression coverage

Red commit first (8e5780729c) — the repro asserts the broken URL, and CI on that commit shows it failing.

  • Unit: setNodeOutputs routes [output]/[temp] values to the right directory, preserves subfolders, builds an annotation-free /api/view URL, and leaves unannotated values alone.
  • Unit: parseAnnotatedPath round-trips against createAnnotatedPath, honours the fallback root, and does not treat a mid-path bracket as an annotation.
  • E2E: browser_tests/tests/loadImageAnnotatedPath.spec.ts loads a workflow whose Load Image widget holds an [output] value and asserts the intercepted /api/view request carries type=output and an unannotated filename.

Knock-on fix included

The empty-execution preservation guard in setOutputsByLocatorId identified widget previews by directory — "every image is type: input". That proxy only held because annotated values were being misparsed into the input directory. Once an [output] widget value resolves correctly, running the graph would have cleared the preview.

So the guard now tracks widget-sourced locators explicitly, which covers a widget pointing at an output or temp asset as well as an input one. Two tests cover it, and I verified they fail when the new clause is removed.

Scope

Client-side parsing of a string the client itself produced — no API, schema, or backend contract involved. Independent of the assets rework.

Notes for review

  • Reported in FE-1425 (three bugs in one ticket; this is the "Failed to load image" one). The drag-drop preview-restore and draft-persistence halves are separate and not addressed here.
  • Two other copies of this annotation regex already exist — Load3DConfiguration.parseAnnotatedFilename and assetMappers.stripDirectoryAnnotation. Deliberately not consolidated in this PR to keep the diff minimal; worth a follow-up.
  • The e2e was not executed locally (no ComfyUI backend on this machine); unit tests and typecheck were.

Connor Byrne added 2 commits August 11, 2026 16:05
…ut dir

A Load Image node populated from the assets sidebar's Generated tab holds an
[output]-annotated widget value. setNodeOutputs parses it with parseFilePath,
which does not strip the annotation, and types every image with the caller's
folder (default 'input'), so the preview requests

  /api/view?type=input&filename=generated.png+%5Boutput%5D&subfolder=runs%2F2026

which 404s and renders 'Image failed to load' on the node.
createAnnotatedPath writes '<path> [output]' / '[temp]' for assets that do not
live under the input root, but nothing could read that back: setNodeOutputs
handed the raw value to parseFilePath, which only splits on the last '/', and
typed every image with the caller's folder (default 'input').

Add parseAnnotatedPath as the inverse of createAnnotatedPath and use it when
building outputs, so the annotation decides the directory and never leaks into
the filename. Unannotated values keep resolving to the caller's folder, so the
upload path is unchanged.

Also fixes the same latent bug in useMaskEditorSaver, which passes an annotated
path with folder: 'input'.
@christian-byrne
christian-byrne requested a review from a team August 11, 2026 23:10
@dosubot dosubot Bot added the size:S This PR changes 10-29 lines, ignoring generated files. label Aug 11, 2026
@coderabbitai

coderabbitai Bot commented Aug 11, 2026

Copy link
Copy Markdown
Contributor

Warning

Review limit reached

You’ve reached a temporary PR review limit under our Fair Usage Limits Policy.

Your recent review volume is higher than typical usage, so adaptive limits are currently applied.

Next review available in: 7 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: c9f5b0b3-302d-463a-b373-3b3508fb500c

📥 Commits

Reviewing files that changed from the base of the PR and between 2bdf764 and 46cf8dd.

📒 Files selected for processing (6)
  • browser_tests/assets/widgets/load_image_widget_output_annotated.json
  • browser_tests/tests/loadImageAnnotatedPath.spec.ts
  • src/stores/nodeOutputStore.test.ts
  • src/stores/nodeOutputStore.ts
  • src/utils/createAnnotatedPath.test.ts
  • src/utils/createAnnotatedPath.ts

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

@github-actions

github-actions Bot commented Aug 11, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 08/11/2026, 11:22:54 PM UTC

Links

🎭 Playwright: ✅ 1801 passed, 0 failed · 3 flaky

📊 Browser Reports
  • chromium: View Report (✅ 1780 / ❌ 0 / ⚠️ 3 / ⏭️ 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)
  • New-test walkthrough (chromium, recorded video): View Report

📦 Bundle: 8.7 MB gzip 🔴 +642 B

Details

Summary

  • Raw size: 36.7 MB baseline 36.7 MB — 🔴 +1.47 kB
  • Gzip: 8.7 MB baseline 8.69 MB — 🔴 +642 B
  • Brotli: 6.06 MB baseline 6.06 MB — 🔴 +407 B
  • Bundles: 436 current • 436 baseline • 145 added / 145 removed

Category Glance
Data & Services 🔴 +1.47 kB (3.5 MB) · Vendor & Third-Party ⚪ 0 B (16.3 MB) · Other ⚪ 0 B (14 MB) · Graph Workspace ⚪ 0 B (1.36 MB) · Panels & Settings ⚪ 0 B (565 kB) · Utilities & Hooks ⚪ 0 B (550 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-CjAgy9yn.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.84 kB 🔴 +1.59 kB
assets/index-XOO5r9j7.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.84 kB 🟢 -1.59 kB

Status: 1 added / 1 removed

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

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-D3yn5Mn5.js (removed) 1.35 MB 🟢 -1.35 MB 🟢 -294 kB 🟢 -221 kB
assets/GraphView-DR9VnNQ-.js (new) 1.35 MB 🔴 +1.35 MB 🔴 +294 kB 🔴 +221 kB
assets/WidgetCompositor-3dGfz6mp.js (new) 8.17 kB 🔴 +8.17 kB 🔴 +2.75 kB 🔴 +2.45 kB
assets/WidgetCompositor-CDwnhaC9.js (removed) 8.17 kB 🟢 -8.17 kB 🟢 -2.75 kB 🟢 -2.45 kB

Status: 2 added / 2 removed / 1 unchanged

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-CY8r7DJc.js (removed) 25 kB 🟢 -25 kB 🟢 -6.24 kB 🟢 -5.52 kB
assets/CloudSurveyView-DrLUKy1l.js (new) 25 kB 🔴 +25 kB 🔴 +6.24 kB 🔴 +5.52 kB
assets/CloudLayoutView-DZmjBPZj.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +6.56 kB 🔴 +5.74 kB
assets/CloudLayoutView-iHzQiZCP.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -6.56 kB 🟢 -5.74 kB
assets/UserCheckView-D3_s53Wm.js (removed) 8.75 kB 🟢 -8.75 kB 🟢 -2.19 kB 🟢 -1.9 kB
assets/UserCheckView-DFFzgO1I.js (new) 8.75 kB 🔴 +8.75 kB 🔴 +2.19 kB 🔴 +1.9 kB
assets/CloudLoginView-Ba_t4Vm6.js (removed) 8.74 kB 🟢 -8.74 kB 🟢 -2.55 kB 🟢 -2.26 kB
assets/CloudLoginView-DSJYV3KZ.js (new) 8.74 kB 🔴 +8.74 kB 🔴 +2.55 kB 🔴 +2.27 kB
assets/useCloudAuthPage-BaZ2mIk2.js (new) 7.08 kB 🔴 +7.08 kB 🔴 +2.51 kB 🔴 +2.21 kB
assets/useCloudAuthPage-CzgDi3Hd.js (removed) 7.08 kB 🟢 -7.08 kB 🟢 -2.51 kB 🟢 -2.2 kB
assets/CloudSignupView-BgcK04uR.js (removed) 6.56 kB 🟢 -6.56 kB 🟢 -2.17 kB 🟢 -1.91 kB
assets/CloudSignupView-C4or1v2I.js (new) 6.56 kB 🔴 +6.56 kB 🔴 +2.17 kB 🔴 +1.91 kB
assets/WidgetTextPreview-BIGStghl.js (removed) 6.07 kB 🟢 -6.07 kB 🟢 -2.13 kB 🟢 -1.88 kB
assets/WidgetTextPreview-BU954hsb.js (new) 6.07 kB 🔴 +6.07 kB 🔴 +2.13 kB 🔴 +1.89 kB
assets/CloudSubscriptionRedirectView-9G_mZQ15.js (removed) 6.05 kB 🟢 -6.05 kB 🟢 -2.25 kB 🟢 -1.96 kB
assets/CloudSubscriptionRedirectView-DkIKCOOh.js (new) 6.05 kB 🔴 +6.05 kB 🔴 +2.25 kB 🔴 +1.96 kB
assets/UserSelectView-CShdEGNh.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.95 kB 🔴 +1.71 kB
assets/UserSelectView-DBwXFkTr.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.95 kB 🟢 -1.71 kB
assets/CloudForgotPasswordView-CZ23-tXW.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.72 kB 🟢 -1.49 kB
assets/CloudForgotPasswordView-D6dKReaF.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.72 kB 🔴 +1.49 kB
assets/CloudAuthTimeoutView-BDD16x-c.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.54 kB 🔴 +1.33 kB
assets/CloudAuthTimeoutView-BKP03nHE.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.54 kB 🟢 -1.33 kB
assets/OAuthLayoutView-ChN_kfXr.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +697 B 🔴 +600 B
assets/OAuthLayoutView-CZH2_cVN.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -696 B 🟢 -600 B
assets/WidgetTextPreview-CLz7Xeia.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -90 B
assets/WidgetTextPreview-yx6C-y83.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +89 B

Status: 13 added / 13 removed / 4 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-Bb0BveK4.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.94 kB 🟢 -8.81 kB
assets/KeybindingPanel-DxTZhcdK.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.94 kB 🔴 +8.81 kB
assets/SecretsPanel-BA9rdJ64.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +7.86 kB 🔴 +6.91 kB
assets/SecretsPanel-Ce1E7eE3.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -7.87 kB 🟢 -6.9 kB
assets/CreditsPanel-CP1ioakN.js (removed) 11.5 kB 🟢 -11.5 kB 🟢 -3.2 kB 🟢 -2.82 kB
assets/CreditsPanel-DZqZJsSE.js (new) 11.5 kB 🔴 +11.5 kB 🔴 +3.2 kB 🔴 +2.81 kB
assets/AboutPanel-BwjYnm24.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.02 kB 🟢 -2.73 kB
assets/AboutPanel-C-92D1y8.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.03 kB 🔴 +2.73 kB
assets/ExtensionPanel-b_48rOHH.js (removed) 9.19 kB 🟢 -9.19 kB 🟢 -2.51 kB 🟢 -2.22 kB
assets/ExtensionPanel-C-idEWlE.js (new) 9.19 kB 🔴 +9.19 kB 🔴 +2.51 kB 🔴 +2.22 kB
assets/ServerConfigPanel-Bz89ahq1.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +1.93 kB 🔴 +1.72 kB
assets/ServerConfigPanel-X09tpH8M.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -1.93 kB 🟢 -1.72 kB
assets/UserPanel-ClDKUWD7.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.78 kB 🟢 -1.54 kB
assets/UserPanel-DYizLaw3.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.78 kB 🔴 +1.54 kB
assets/refreshRemoteConfig-CBY6DX0B.js (new) 3.44 kB 🔴 +3.44 kB 🔴 +1.33 kB 🔴 +1.17 kB
assets/refreshRemoteConfig-D8EXd-u5.js (removed) 3.44 kB 🟢 -3.44 kB 🟢 -1.33 kB 🟢 -1.17 kB
assets/cloudRemoteConfig-ItiOPeRB.js (new) 951 B 🔴 +951 B 🔴 +516 B 🔴 +422 B
assets/cloudRemoteConfig-oHmgZext.js (removed) 951 B 🟢 -951 B 🟢 -514 B 🟢 -420 B
assets/refreshRemoteConfig-B5UCpeyA.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -77 B
assets/refreshRemoteConfig-C83rzM69.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +81 B

Status: 10 added / 10 removed / 16 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SignUpForm-BOzs0amc.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -4.31 kB 🟢 -3.76 kB
assets/SignUpForm-RtZQu0GF.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +4.32 kB 🔴 +3.76 kB
assets/auth-BokyovlP.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.28 kB 🟢 -1.1 kB
assets/auth-Cauv3Mcd.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.28 kB 🔴 +1.1 kB
assets/UpdatePasswordContent-1lMjX_u4.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -842 B 🟢 -733 B
assets/UpdatePasswordContent-cTdkWqQK.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +844 B 🔴 +731 B
assets/authStore-Cd8-yMM0.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -105 B
assets/authStore-CV2SUUUl.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +105 B
assets/workspaceAuthStore-CPts0R7n.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +107 B
assets/workspaceAuthStore-DPLbsuaA.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -106 B
assets/auth-BAUiXMC7.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +74 B
assets/auth-DxTd3LTI.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -80 B

Status: 6 added / 6 removed / 4 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-iHePV07Q.js (removed) 90.1 kB 🟢 -90.1 kB 🟢 -19.3 kB 🟢 -16.5 kB
assets/ComfyHubPublishDialog-Z5CYzBeZ.js (new) 90.1 kB 🔴 +90.1 kB 🔴 +19.3 kB 🔴 +16.5 kB
assets/useShareDialog-n0DdFgM7.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.69 kB 🟢 -5.03 kB
assets/useShareDialog-NS8MOz8X.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.7 kB 🔴 +5.04 kB
assets/feedbackDialog-C5rHz6md.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.87 kB 🔴 +1.59 kB
assets/feedbackDialog-CG9J8L_R.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.86 kB 🟢 -1.59 kB
assets/useRangeEditor-BCIPeND7.js (removed) 3.29 kB 🟢 -3.29 kB 🟢 -1.14 kB 🟢 -1.04 kB
assets/useRangeEditor-KeD_0Nme.js (new) 3.29 kB 🔴 +3.29 kB 🔴 +1.14 kB 🔴 +1.04 kB
assets/useLayerEditor-BOvxNR3T.js (removed) 1.01 kB 🟢 -1.01 kB 🟢 -491 B 🟢 -407 B
assets/useLayerEditor-BWgKXYBS.js (new) 1.01 kB 🔴 +1.01 kB 🔴 +491 B 🔴 +407 B
assets/ComfyHubPublishDialog-CMM3WVPi.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +89 B
assets/ComfyHubPublishDialog-CO2CuIaJ.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -88 B
assets/useSubscriptionDialog-DSn_VhDE.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -86 B
assets/useSubscriptionDialog-jdQA8wpe.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +92 B

Status: 7 added / 7 removed / 1 unchanged

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-D06o20ss.js (removed) 14.6 kB 🟢 -14.6 kB 🟢 -3.96 kB 🟢 -3.51 kB
assets/ComfyQueueButton-DJF0SfTd.js (new) 14.6 kB 🔴 +14.6 kB 🔴 +3.96 kB 🔴 +3.51 kB
assets/useTerminalTabs-CrtAI2sH.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.69 kB 🔴 +3.26 kB
assets/useTerminalTabs-UiXlktCL.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.69 kB 🟢 -3.26 kB
assets/InviteMembersForm-CkBxrXk4.js (removed) 8.2 kB 🟢 -8.2 kB 🟢 -2.72 kB 🟢 -2.44 kB
assets/InviteMembersForm-CmlxPqWo.js (new) 8.2 kB 🔴 +8.2 kB 🔴 +2.72 kB 🔴 +2.44 kB
assets/SubscribeButton-B-AzjpNE.js (removed) 2.15 kB 🟢 -2.15 kB 🟢 -966 B 🟢 -845 B
assets/SubscribeButton-BPBc7nvb.js (new) 2.15 kB 🔴 +2.15 kB 🔴 +969 B 🔴 +847 B
assets/cloudFeedbackTopbarButton-BoTDeLiQ.js (removed) 705 B 🟢 -705 B 🟢 -423 B 🟢 -360 B
assets/cloudFeedbackTopbarButton-CufugCVM.js (new) 705 B 🔴 +705 B 🔴 +423 B 🔴 +362 B
assets/ComfyQueueButton-CWaJOYj3.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -95 B
assets/ComfyQueueButton-RgqTuL9s.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +92 B

Status: 6 added / 6 removed / 8 unchanged

Data & Services — 3.5 MB (baseline 3.5 MB) • 🔴 +1.47 kB

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-wHA3z247.js (new) 3.22 MB 🔴 +3.22 MB 🔴 +747 kB 🔴 +563 kB
assets/settingStore-C6eSZaMK.js (removed) 3.22 MB 🟢 -3.22 MB 🟢 -747 kB 🟢 -562 kB
assets/load3dService-BBjhk4-e.js (new) 132 kB 🔴 +132 kB 🔴 +29.3 kB 🔴 +24.6 kB
assets/load3dService-C2w-Rv8A.js (removed) 132 kB 🟢 -132 kB 🟢 -29.3 kB 🟢 -24.6 kB
assets/api-B0uaqT5O.js (new) 98.3 kB 🔴 +98.3 kB 🔴 +27.2 kB 🔴 +23.4 kB
assets/api-BtSYSJKL.js (removed) 98.3 kB 🟢 -98.3 kB 🟢 -27.2 kB 🟢 -23.4 kB
assets/workflowShareService-BMGV7tny.js (removed) 16.5 kB 🟢 -16.5 kB 🟢 -4.91 kB 🟢 -4.35 kB
assets/workflowShareService-Dlo9F48V.js (new) 16.5 kB 🔴 +16.5 kB 🔴 +4.91 kB 🔴 +4.35 kB
assets/keybindingService-BtuMAxfn.js (removed) 6.89 kB 🟢 -6.89 kB 🟢 -1.73 kB 🟢 -1.5 kB
assets/keybindingService-D2fsS0ck.js (new) 6.89 kB 🔴 +6.89 kB 🔴 +1.73 kB 🔴 +1.5 kB
assets/releaseStore-CYWcxD5G.js (new) 6.72 kB 🔴 +6.72 kB 🔴 +2.03 kB 🔴 +1.78 kB
assets/releaseStore-odR82fVp.js (removed) 6.72 kB 🟢 -6.72 kB 🟢 -2.03 kB 🟢 -1.78 kB
assets/systemStatsStore-BMuWp6yw.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.74 kB 🟢 -1.47 kB
assets/systemStatsStore-CWXb_RkE.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.74 kB 🔴 +1.47 kB
assets/userStore-CCco9OUK.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -898 B 🟢 -791 B
assets/userStore-DeRdfPWZ.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +896 B 🔴 +792 B
assets/audioService-DhwWINkS.js (new) 1.71 kB 🔴 +1.71 kB 🔴 +828 B 🔴 +719 B
assets/audioService-EbeBKLtk.js (removed) 1.71 kB 🟢 -1.71 kB 🟢 -828 B 🟢 -720 B
assets/dialogService-CiRSbYh1.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +84 B
assets/dialogService-mxysN6Uy.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -90 B
assets/releaseStore-8bvpyGIp.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -87 B
assets/releaseStore-jmaV56Mc.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +80 B
assets/settingStore-bDpzPirU.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -81 B
assets/settingStore-BzfUzSGb.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +78 B
assets/assetsStore-B9lwfspg.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -82 B
assets/assetsStore-DrmJnAY_.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +85 B
assets/api-DtU4rDN-.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-qf1_O0Bw.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B

Status: 14 added / 14 removed / 3 unchanged

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-BakqdX_0.js (removed) 236 kB 🟢 -236 kB 🟢 -53 kB 🟢 -43.1 kB
assets/useConflictDetection-huBdjNJj.js (new) 236 kB 🔴 +236 kB 🔴 +53 kB 🔴 +43.2 kB
assets/useLayerEditorSession-BTSSs3UB.js (new) 158 kB 🔴 +158 kB 🔴 +40.8 kB 🔴 +34.3 kB
assets/useLayerEditorSession-D94DHfvX.js (removed) 158 kB 🟢 -158 kB 🟢 -40.8 kB 🟢 -34.3 kB
assets/useLoad3d-B6KRAVnN.js (new) 25.8 kB 🔴 +25.8 kB 🔴 +5.8 kB 🔴 +5.14 kB
assets/useLoad3d-DXAQH_sr.js (removed) 25.8 kB 🟢 -25.8 kB 🟢 -5.8 kB 🟢 -5.16 kB
assets/useLoad3dViewer-BThKgXOw.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -4.98 kB 🟢 -4.36 kB
assets/useLoad3dViewer-Dfk6eYHE.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +4.98 kB 🔴 +4.35 kB
assets/useImageCrop-Cv3kU56Q.js (removed) 14.9 kB 🟢 -14.9 kB 🟢 -3.42 kB 🟢 -2.98 kB
assets/useImageCrop-DKsmWS49.js (new) 14.9 kB 🔴 +14.9 kB 🔴 +3.42 kB 🔴 +3 kB
assets/useDowngradeToPersonal-BTwsrbzT.js (new) 10.9 kB 🔴 +10.9 kB 🔴 +2.75 kB 🔴 +2.37 kB
assets/useDowngradeToPersonal-DSGiBluc.js (removed) 10.9 kB 🟢 -10.9 kB 🟢 -2.75 kB 🟢 -2.37 kB
assets/useFeatureFlags-CBc6yI0b.js (removed) 6.99 kB 🟢 -6.99 kB 🟢 -2 kB 🟢 -1.7 kB
assets/useFeatureFlags-wa-aUjLP.js (new) 6.99 kB 🔴 +6.99 kB 🔴 +2 kB 🔴 +1.7 kB
assets/useCompositorLayers-2ckUZK39.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -897 B 🟢 -797 B
assets/useCompositorLayers-DXBI2-lS.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +900 B 🔴 +799 B
assets/assetPreviewUtil-nawzfN9J.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -970 B 🟢 -839 B
assets/assetPreviewUtil-OofK8yk6.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +971 B 🔴 +845 B
assets/useUpstreamValue-DHi_08Ey.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -758 B 🟢 -676 B
assets/useUpstreamValue-QkP9kGw1.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +759 B 🔴 +678 B
assets/useWorkspaceTierLabel-CaLlMNgj.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -812 B 🟢 -698 B
assets/useWorkspaceTierLabel-VnKP1upX.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +813 B 🔴 +698 B
assets/subscriptionCheckoutUtil-C4WwE0sJ.js (new) 877 B 🔴 +877 B 🔴 +523 B 🔴 +437 B
assets/subscriptionCheckoutUtil-CUWNcaS9.js (removed) 877 B 🟢 -877 B 🟢 -523 B 🟢 -458 B
assets/useSessionCookie-C6w3qtbn.js (new) 652 B 🔴 +652 B 🔴 +339 B 🔴 +293 B
assets/useSessionCookie-CzzAFMkQ.js (removed) 652 B 🟢 -652 B 🟢 -337 B 🟢 -294 B
assets/useLoad3d-_W4Nprvn.js (removed) 311 B 🟢 -311 B 🟢 -165 B 🟢 -152 B
assets/useLoad3d-BwhIYrsS.js (new) 311 B 🔴 +311 B 🔴 +165 B 🔴 +147 B
assets/useSessionCookie-DwbBTZmM.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -83 B
assets/useSessionCookie-Xd5yaHua.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +78 B
assets/useFeatureFlags-CCsNYuuw.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +84 B
assets/useFeatureFlags-CYqPkbIz.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -80 B
assets/useLoad3dViewer-CeRScJaD.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -86 B
assets/useLoad3dViewer-Cpbr0ioC.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +87 B
assets/useCurrentUser-C98fKHQs.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -80 B
assets/useCurrentUser-DgEX29jo.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +98 B

Status: 18 added / 18 removed / 20 unchanged

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

External libraries and shared vendor chunks

Status: 17 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-DZ2x3dw4.js (new) 115 kB 🔴 +115 kB 🔴 +29.7 kB 🔴 +25.1 kB
assets/core-IfjwmzEB.js (removed) 115 kB 🟢 -115 kB 🟢 -29.7 kB 🟢 -25.1 kB
assets/WidgetSelect-CGP-sVfH.js (removed) 88.8 kB 🟢 -88.8 kB 🟢 -20.1 kB 🟢 -17.2 kB
assets/WidgetSelect-slK8ZT9X.js (new) 88.8 kB 🔴 +88.8 kB 🔴 +20.1 kB 🔴 +17.2 kB
assets/SubscriptionPanelContentWorkspace-Bw9nIC1O.js (new) 80 kB 🔴 +80 kB 🔴 +15.8 kB 🔴 +13.6 kB
assets/SubscriptionPanelContentWorkspace-VC791dP6.js (removed) 80 kB 🟢 -80 kB 🟢 -15.8 kB 🟢 -13.6 kB
assets/Load3D-Dq9jGteR.js (new) 71.3 kB 🔴 +71.3 kB 🔴 +11.7 kB 🔴 +9.98 kB
assets/Load3D-SyLusnyO.js (removed) 71.3 kB 🟢 -71.3 kB 🟢 -11.7 kB 🟢 -9.98 kB
assets/WidgetVideoEdit-D4e6LFeQ.js (new) 67.5 kB 🔴 +67.5 kB 🔴 +15.7 kB 🔴 +13.9 kB
assets/WidgetVideoEdit-siTEbM2M.js (removed) 67.5 kB 🟢 -67.5 kB 🟢 -15.7 kB 🟢 -13.9 kB
assets/SubscriptionTransitionPreviewWorkspace-BTX__cuG.js (removed) 66.4 kB 🟢 -66.4 kB 🟢 -13.4 kB 🟢 -11.7 kB
assets/SubscriptionTransitionPreviewWorkspace-CmRf0t-U.js (new) 66.4 kB 🔴 +66.4 kB 🔴 +13.4 kB 🔴 +11.7 kB
assets/WorkspaceSettingsPanelContent-B2sHQTuY.js (new) 61.7 kB 🔴 +61.7 kB 🔴 +13.2 kB 🔴 +11.5 kB
assets/WorkspaceSettingsPanelContent-BpSK5x4J.js (removed) 61.7 kB 🟢 -61.7 kB 🟢 -13.2 kB 🟢 -11.5 kB
assets/Preview3d-B-I2Cqce.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.31 kB 🔴 +7.25 kB
assets/Preview3d-CsuS6AoK.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.31 kB 🟢 -7.24 kB
assets/main-B_whnqWT.js (new) 45.1 kB 🔴 +45.1 kB 🔴 +13.1 kB 🔴 +11.4 kB
assets/main-BtnR_D1H.js (removed) 45.1 kB 🟢 -45.1 kB 🟢 -13.1 kB 🟢 -11.4 kB
assets/SubscriptionRequiredDialogContentUnified-BSj0Uuf-.js (removed) 42.6 kB 🟢 -42.6 kB 🟢 -9.35 kB 🟢 -8.16 kB
assets/SubscriptionRequiredDialogContentUnified-Ci95alOO.js (new) 42.6 kB 🔴 +42.6 kB 🔴 +9.35 kB 🔴 +8.16 kB
assets/LayerEditorContent-DeRAge7Q.js (removed) 42.5 kB 🟢 -42.5 kB 🟢 -9.61 kB 🟢 -8.44 kB
assets/LayerEditorContent-DhwCMx0h.js (new) 42.5 kB 🔴 +42.5 kB 🔴 +9.61 kB 🔴 +8.45 kB
assets/WidgetBoundingBoxes-BbR4SJ_G.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +9.16 kB 🔴 +8.13 kB
assets/WidgetBoundingBoxes-zJMzry6i.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -9.16 kB 🟢 -8.13 kB
assets/WidgetPainter-CHWx7yEr.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.87 kB 🟢 -6.97 kB
assets/WidgetPainter-ux5_eAuM.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.87 kB 🔴 +6.97 kB
assets/Load3dViewerContent-C7Ug5RJy.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.28 kB 🔴 +5.46 kB
assets/Load3dViewerContent-Cz_E2U6S.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.28 kB 🟢 -5.45 kB
assets/SubscriptionRequiredDialogContent-BauYCRtM.js (new) 27 kB 🔴 +27 kB 🔴 +6.37 kB 🔴 +5.61 kB
assets/SubscriptionRequiredDialogContent-BrTDIhWR.js (removed) 27 kB 🟢 -27 kB 🟢 -6.37 kB 🟢 -5.61 kB
assets/SubscriptionRequiredDialogContentWorkspace--yb2Qt7c.js (removed) 25.1 kB 🟢 -25.1 kB 🟢 -5.79 kB 🟢 -5.1 kB
assets/SubscriptionRequiredDialogContentWorkspace-DN3nFg-u.js (new) 25.1 kB 🔴 +25.1 kB 🔴 +5.79 kB 🔴 +5.11 kB
assets/CreditsTile-CnbwISg6.js (new) 24.9 kB 🔴 +24.9 kB 🔴 +6.64 kB 🔴 +5.83 kB
assets/CreditsTile-Cqtmisr1.js (removed) 24.9 kB 🟢 -24.9 kB 🟢 -6.64 kB 🟢 -5.83 kB
assets/load3d-BPUqCOP5.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.4 kB 🟢 -4.67 kB
assets/load3d-CZ1Mkies.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.41 kB 🔴 +4.67 kB
assets/CurrentUserPopoverWorkspace-CG0EMogE.js (new) 21.5 kB 🔴 +21.5 kB 🔴 +4.84 kB 🔴 +4.32 kB
assets/CurrentUserPopoverWorkspace-DHOUrG5t.js (removed) 21.5 kB 🟢 -21.5 kB 🟢 -4.84 kB 🟢 -4.32 kB
assets/SignInContent-DbvrRLzs.js (removed) 20.2 kB 🟢 -20.2 kB 🟢 -5.09 kB 🟢 -4.45 kB
assets/SignInContent-DfQGIv0Y.js (new) 20.2 kB 🔴 +20.2 kB 🔴 +5.09 kB 🔴 +4.44 kB
assets/WidgetRecordAudio-BbqPahR7.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.6 kB 🔴 +4.1 kB
assets/WidgetRecordAudio-Bfp2S3nj.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.59 kB 🟢 -4.1 kB
assets/WidgetInputNumber-CZ4Vn5-Z.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.63 kB 🟢 -3.21 kB
assets/WidgetInputNumber-DJ9Bvl--.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.63 kB 🔴 +3.21 kB
assets/WidgetRange-CuSSDGRt.js (removed) 13.7 kB 🟢 -13.7 kB 🟢 -3.55 kB 🟢 -3.13 kB
assets/WidgetRange-DNCPzWFu.js (new) 13.7 kB 🔴 +13.7 kB 🔴 +3.55 kB 🔴 +3.13 kB
assets/WaveAudioPlayer-ChXNcOTs.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.46 kB 🔴 +3.05 kB
assets/WaveAudioPlayer-Z2lpyUlE.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.47 kB 🟢 -3.05 kB
assets/WidgetCurve-BmRu-7Re.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.47 kB 🔴 +3.15 kB
assets/WidgetCurve-BYvp7tMs.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.47 kB 🟢 -3.15 kB
assets/TeamWorkspacesDialogContent-BaVrwkoH.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +2.96 kB 🔴 +2.63 kB
assets/TeamWorkspacesDialogContent-DgPIfeyE.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -2.96 kB 🟢 -2.63 kB
assets/onboardingCloudRoutes-BGrOH1MC.js (removed) 9.33 kB 🟢 -9.33 kB 🟢 -2.84 kB 🟢 -2.44 kB
assets/onboardingCloudRoutes-MMDWIPVh.js (new) 9.33 kB 🔴 +9.33 kB 🔴 +2.84 kB 🔴 +2.42 kB
assets/Load3DConfiguration-C2tlpxiK.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/Load3DConfiguration-SyeEznWo.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -2.61 kB 🟢 -2.29 kB
assets/WidgetImageCrop-C9KpZO3k.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.65 kB 🔴 +2.33 kB
assets/WidgetImageCrop-D5Rutrip.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.65 kB 🟢 -2.34 kB
assets/SetMemberCreditLimitDialogContent-CCVJ6KhL.js (removed) 8.47 kB 🟢 -8.47 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/SetMemberCreditLimitDialogContent-XP4CKWsr.js (new) 8.47 kB 🔴 +8.47 kB 🔴 +2.34 kB 🔴 +2.06 kB
assets/nodeTemplates-C7ImtYzu.js (new) 8.32 kB 🔴 +8.32 kB 🔴 +2.85 kB 🔴 +2.51 kB
assets/nodeTemplates-DRfIdtiu.js (removed) 8.32 kB 🟢 -8.32 kB 🟢 -2.85 kB 🟢 -2.5 kB
assets/NightlySurveyController-DggerIr_.js (removed) 7.5 kB 🟢 -7.5 kB 🟢 -2.55 kB 🟢 -2.25 kB
assets/NightlySurveyController-xxeYPefH.js (new) 7.5 kB 🔴 +7.5 kB 🔴 +2.55 kB 🔴 +2.24 kB
assets/CloudRunButtonWrapper-BwBXlWZX.js (removed) 6.84 kB 🟢 -6.84 kB 🟢 -2.17 kB 🟢 -1.91 kB
assets/CloudRunButtonWrapper-CTTj_qrH.js (new) 6.84 kB 🔴 +6.84 kB 🔴 +2.18 kB 🔴 +1.91 kB
assets/WidgetWithControl-3HwBdJy_.js (removed) 6.41 kB 🟢 -6.41 kB 🟢 -2.61 kB 🟢 -2.31 kB
assets/WidgetWithControl-DRV8r7p7.js (new) 6.41 kB 🔴 +6.41 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/missingModelMetadata--OsqJpnT.js (removed) 6.17 kB 🟢 -6.17 kB 🟢 -2.13 kB 🟢 -1.86 kB
assets/missingModelMetadata-BC_ZUivD.js (new) 6.17 kB 🔴 +6.17 kB 🔴 +2.13 kB 🔴 +1.87 kB
assets/CancelSubscriptionDialogContent-BwUV97Hz.js (removed) 5.97 kB 🟢 -5.97 kB 🟢 -1.98 kB 🟢 -1.75 kB
assets/CancelSubscriptionDialogContent-mTz0J3GE.js (new) 5.97 kB 🔴 +5.97 kB 🔴 +1.98 kB 🔴 +1.75 kB
assets/load3dPreviewExtensions-Ba0JOOLO.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/load3dPreviewExtensions-DkjUfR1v.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -1.81 kB 🟢 -1.59 kB
assets/launchCancellationFlow-C7ITEPLq.js (new) 5.18 kB 🔴 +5.18 kB 🔴 +1.78 kB 🔴 +1.56 kB
assets/launchCancellationFlow-DCzGkWLN.js (removed) 5.18 kB 🟢 -5.18 kB 🟢 -1.78 kB 🟢 -1.56 kB
assets/CreateWorkspaceDialogContent-cJq9VAf7.js (new) 5.12 kB 🔴 +5.12 kB 🔴 +1.79 kB 🔴 +1.55 kB
assets/CreateWorkspaceDialogContent-Mf-k7H0E.js (removed) 5.12 kB 🟢 -5.12 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/ChangeMemberRoleDialogContent-COwB0HtO.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.64 kB 🔴 +1.42 kB
assets/ChangeMemberRoleDialogContent-Cx42NEp_.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.64 kB 🟢 -1.43 kB
assets/InviteMemberDialogContent-Cvk_w6XX.js (removed) 4.96 kB 🟢 -4.96 kB 🟢 -1.64 kB 🟢 -1.43 kB
assets/InviteMemberDialogContent-qA0yrbfV.js (new) 4.96 kB 🔴 +4.96 kB 🔴 +1.64 kB 🔴 +1.43 kB
assets/EditWorkspaceDialogContent-Mu1tuPyx.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.76 kB 🔴 +1.53 kB
assets/EditWorkspaceDialogContent-pyVjw357.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.76 kB 🟢 -1.53 kB
assets/WidgetTextarea-ChsQ-T-O.js (new) 4.81 kB 🔴 +4.81 kB 🔴 +1.87 kB 🔴 +1.63 kB
assets/WidgetTextarea-OSf793IC.js (removed) 4.81 kB 🟢 -4.81 kB 🟢 -1.87 kB 🟢 -1.63 kB
assets/saveMesh-BQKpZLus.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.52 kB 🟢 -1.34 kB
assets/saveMesh-CbbQTJZM.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.52 kB 🔴 +1.35 kB
assets/WorkspacePanelContent-CIf_5mxD.js (new) 4.74 kB 🔴 +4.74 kB 🔴 +1.62 kB 🔴 +1.43 kB
assets/WorkspacePanelContent-Cz6if3Xe.js (removed) 4.74 kB 🟢 -4.74 kB 🟢 -1.63 kB 🟢 -1.43 kB
assets/ValueControlPopover-CTBPpBbh.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.55 kB 🔴 +1.38 kB
assets/ValueControlPopover-Vq-K8l7e.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.55 kB 🟢 -1.38 kB
assets/DeleteWorkspaceDialogContent-BBZNgoLf.js (removed) 3.84 kB 🟢 -3.84 kB 🟢 -1.44 kB 🟢 -1.24 kB
assets/DeleteWorkspaceDialogContent-Bp40HxA8.js (new) 3.84 kB 🔴 +3.84 kB 🔴 +1.44 kB 🔴 +1.24 kB
assets/RemoveMemberDialogContent-CAlEp2Ek.js (removed) 3.76 kB 🟢 -3.76 kB 🟢 -1.38 kB 🟢 -1.19 kB
assets/RemoveMemberDialogContent-DkEgZmJh.js (new) 3.76 kB 🔴 +3.76 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/RevokeInviteDialogContent-CrDfR0D6.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.39 kB 🟢 -1.21 kB
assets/RevokeInviteDialogContent-kBjMMyF0.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.39 kB 🔴 +1.21 kB
assets/LeaveWorkspaceDialogContent-BdSCJg0D.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.38 kB 🟢 -1.19 kB
assets/LeaveWorkspaceDialogContent-DNke3MBl.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.38 kB 🔴 +1.19 kB
assets/InviteMemberUpsellDialogContent-BnaeSkEN.js (new) 3.47 kB 🔴 +3.47 kB 🔴 +1.24 kB 🔴 +1.08 kB
assets/InviteMemberUpsellDialogContent-BusvtrXU.js (removed) 3.47 kB 🟢 -3.47 kB 🟢 -1.24 kB 🟢 -1.09 kB
assets/workspaceCheckoutTelemetry-C_ms-dTB.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.52 kB 🟢 -1.33 kB
assets/workspaceCheckoutTelemetry-CMT6VU-U.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.52 kB 🔴 +1.32 kB
assets/GlobalToast-BCpqrdh1.js (removed) 3.25 kB 🟢 -3.25 kB 🟢 -1.3 kB 🟢 -1.11 kB
assets/GlobalToast-BTJDBxn-.js (new) 3.25 kB 🔴 +3.25 kB 🔴 +1.3 kB 🔴 +1.11 kB
assets/Media3DTop-BtP0APCh.js (new) 3.21 kB 🔴 +3.21 kB 🔴 +1.26 kB 🔴 +1.1 kB
assets/Media3DTop-C6sxIv0T.js (removed) 3.21 kB 🟢 -3.21 kB 🟢 -1.26 kB 🟢 -1.1 kB
assets/load3dAdvanced-CvnkN6Gg.js (removed) 2.82 kB 🟢 -2.82 kB 🟢 -1.09 kB 🟢 -950 B
assets/load3dAdvanced-xqN9gS94.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.09 kB 🔴 +955 B
assets/SubscribeToRun-CcMFEBB-.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -1.03 kB 🟢 -928 B
assets/SubscribeToRun-LPU8N2Rc.js (new) 2.39 kB 🔴 +2.39 kB 🔴 +1.03 kB 🔴 +927 B
assets/MediaAudioTop-BiyVQSi5.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +807 B 🔴 +672 B
assets/MediaAudioTop-BYxnQHb-.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -806 B 🟢 -670 B
assets/cloudSessionCookie-CE5DsDtK.js (new) 933 B 🔴 +933 B 🔴 +434 B 🔴 +377 B
assets/cloudSessionCookie-O88oAbcC.js (removed) 933 B 🟢 -933 B 🟢 -434 B 🟢 -379 B
assets/cloudBadges-B5KcUySW.js (removed) 922 B 🟢 -922 B 🟢 -514 B 🟢 -464 B
assets/cloudBadges-BEAJK4Am.js (new) 922 B 🔴 +922 B 🔴 +517 B 🔴 +437 B
assets/Load3DAdvanced-CMzm_sf8.js (removed) 761 B 🟢 -761 B 🟢 -423 B 🟢 -358 B
assets/Load3DAdvanced-fdHt1mwR.js (new) 761 B 🔴 +761 B 🔴 +424 B 🔴 +359 B
assets/nightlyBadges-KKnzwogI.js (removed) 411 B 🟢 -411 B 🟢 -273 B 🟢 -268 B
assets/nightlyBadges-P3uX1uMT.js (new) 411 B 🔴 +411 B 🔴 +274 B 🔴 +271 B
assets/Load3dViewerContent-C8q6HtR5.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +97 B
assets/Load3dViewerContent-DdR0dMEO.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -109 B
assets/missingModelMetadata-CTW6RCuu.js (new) 125 B 🔴 +125 B 🔴 +103 B 🔴 +104 B
assets/missingModelMetadata-WvbBZ2Dv.js (removed) 125 B 🟢 -125 B 🟢 -103 B 🟢 -103 B
assets/Load3DAdvanced-Bym4NPd7.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -97 B
assets/Load3DAdvanced-Ddkl8H98.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +89 B
assets/WidgetLegacy-Db_skRQn.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +105 B
assets/WidgetLegacy-k4c7QbpV.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -102 B
assets/workflowDraftStoreV2-Dh-pHubc.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -109 B
assets/workflowDraftStoreV2-M1yJeJyE.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +110 B
assets/Load3D-DgiZmzz_.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +88 B
assets/Load3D-ktcbRmW8.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -78 B
assets/changeTracker-B8P75GHX.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +86 B
assets/changeTracker-Dlp2Fuy8.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -91 B

Status: 68 added / 68 removed / 217 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.9 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 51.5 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.8 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 50.8 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 63.9 MB heap
large-graph-pan: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.7 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.6 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.2 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 51.7 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.5 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 51.1 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 148ms TBT · 73.1 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 74.7 MB heap
vue-large-graph-idle: · 54.5 avg FPS · 39.8 P5 FPS ❌ (target: ≥52) · 0ms TBT · 156.6 MB heap
vue-large-graph-pan: · 53.7 avg FPS · 40.1 P5 FPS ❌ (target: ≥52) · 1348ms TBT · 153.9 MB heap
workflow-execution: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.3 MB heap

⚠️ 17 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 564ms 708ms +26% ⚠️ z=10.1
canvas-idle: script duration 21ms 30ms +41% ⚠️ z=2.1
canvas-mouse-sweep: layout duration 4ms 5ms +29% ⚠️ z=5.9
canvas-mouse-sweep: style recalc duration 41ms 52ms +26% ⚠️ z=2.9
canvas-mouse-sweep: task duration 955ms 1118ms +17% ⚠️ z=4.3
canvas-zoom-sweep: task duration 491ms 506ms +3% ⚠️ z=7.8
dom-widget-clipping: task duration 388ms 467ms +20% ⚠️ z=6.3
large-graph-idle: task duration 751ms 955ms +27% ⚠️ z=7.6
large-graph-idle: script duration 116ms 148ms +28% ⚠️ z=4.3
large-graph-pan: task duration 1412ms 1526ms +8% ⚠️ z=10.3
large-graph-pan: script duration 450ms 483ms +7% ⚠️ z=3.8
minimap-idle: task duration 776ms 946ms +22% ⚠️ z=8.8
minimap-idle: script duration 118ms 141ms +19% ⚠️ z=4.3
subgraph-dom-widget-clipping: task duration 443ms 482ms +9% ⚠️ z=5.6
subgraph-idle: task duration 519ms 672ms +29% ⚠️ z=9.6
subgraph-mouse-sweep: layout duration 5ms 5ms +6% ⚠️ z=2.4
subgraph-mouse-sweep: task duration 900ms 967ms +7% ⚠️ z=2.9
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.1
canvas-idle: p95 frame time 17ms 17ms -0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 8ms 10ms +25% z=-1.5
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 8 8 +0% z=-5.6
canvas-idle: task duration 564ms 708ms +26% ⚠️ z=10.1
canvas-idle: script duration 21ms 30ms +41% ⚠️ z=2.1
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 67.0 MB 66.9 MB -0%
canvas-idle: DOM nodes 16 16 +0% z=-5.2
canvas-idle: event listeners 4 4 +0% z=-1.6
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.4
canvas-mouse-sweep: p95 frame time 17ms 17ms -0%
canvas-mouse-sweep: layout duration 4ms 5ms +29% ⚠️ z=5.9
canvas-mouse-sweep: style recalc duration 41ms 52ms +26% ⚠️ z=2.9
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 75 78 +4% z=-0.3
canvas-mouse-sweep: task duration 955ms 1118ms +17% ⚠️ z=4.3
canvas-mouse-sweep: script duration 122ms 144ms +18% z=1.4
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 49.3 MB 51.5 MB +4%
canvas-mouse-sweep: DOM nodes -281 -282 +0% z=-132.9
canvas-mouse-sweep: event listeners -153 -154 +1% z=-39.0
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 +2% z=1.8
canvas-zoom-sweep: style recalc duration 20ms 22ms +11% z=1.8
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 31 +0% z=-0.6
canvas-zoom-sweep: task duration 491ms 506ms +3% ⚠️ z=7.8
canvas-zoom-sweep: script duration 30ms 32ms +6% z=1.5
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 69.9 MB 69.8 MB -0%
canvas-zoom-sweep: DOM nodes 77 77 -1% z=-3.5
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
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 8ms +2% z=-2.7
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 12 9 -25% z=-8.3
dom-widget-clipping: task duration 388ms 467ms +20% ⚠️ z=6.3
dom-widget-clipping: script duration 58ms 70ms +21% z=0.8
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 50.7 MB 50.8 MB +0%
dom-widget-clipping: DOM nodes 20 14 -30% z=-5.7
dom-widget-clipping: event listeners 0 2 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 7ms 10ms +41% z=-1.7
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 751ms 955ms +27% ⚠️ z=7.6
large-graph-idle: script duration 116ms 148ms +28% ⚠️ z=4.3
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 63.6 MB 63.9 MB +1%
large-graph-idle: DOM nodes -284 -282 -1% z=-338.8
large-graph-idle: event listeners -149 -165 +11% z=-31.3
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 15ms 17ms +17% z=0.1
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 68 69 +1% z=-1.7
large-graph-pan: task duration 1412ms 1526ms +8% ⚠️ z=10.3
large-graph-pan: script duration 450ms 483ms +7% ⚠️ z=3.8
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 62.7 MB 52.7 MB -16%
large-graph-pan: DOM nodes -286 -284 -1% z=-183.7
large-graph-pan: event listeners -150 -179 +19% z=-222.1
large-graph-zoom: avg frame time 17ms 17ms -0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 9ms 10ms +11%
large-graph-zoom: style recalc duration 16ms 17ms +8%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 64 64 +0%
large-graph-zoom: task duration 1634ms 1807ms +11%
large-graph-zoom: script duration 562ms 640ms +14%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 64.3 MB 57.6 MB -10%
large-graph-zoom: DOM nodes -288 -140 -52%
large-graph-zoom: event listeners -153 -86 -44%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.4
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 7ms 8ms +23% z=-1.7
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 7 8 +7% z=-3.0
minimap-idle: task duration 776ms 946ms +22% ⚠️ z=8.8
minimap-idle: script duration 118ms 141ms +19% ⚠️ z=4.3
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 64.5 MB 65.2 MB +1%
minimap-idle: DOM nodes -284 -285 +0% z=-222.4
minimap-idle: event listeners -179 -149 -17% z=-232.6
subgraph-dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.4
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms +0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 12ms +1% z=-1.2
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 46 46 -1% z=-4.2
subgraph-dom-widget-clipping: task duration 443ms 482ms +9% ⚠️ z=5.6
subgraph-dom-widget-clipping: script duration 129ms 138ms +7% z=1.5
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 51.3 MB 51.7 MB +1%
subgraph-dom-widget-clipping: DOM nodes 18 17 -6% z=-4.6
subgraph-dom-widget-clipping: event listeners 8 8 +0% z=-1.4
subgraph-idle: avg frame time 17ms 17ms +0% z=0.4
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 9ms 10ms +4% z=-1.1
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 9 -10% z=-2.9
subgraph-idle: task duration 519ms 672ms +29% ⚠️ z=9.6
subgraph-idle: script duration 19ms 26ms +32% z=2.0
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 67.1 MB 55.5 MB -17%
subgraph-idle: DOM nodes 20 10 -53% z=-8.2
subgraph-idle: event listeners 4 -75 -1963% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms -0%
subgraph-mouse-sweep: layout duration 5ms 5ms +6% ⚠️ z=2.4
subgraph-mouse-sweep: style recalc duration 43ms 47ms +9% z=1.3
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 80 79 -2% z=-0.8
subgraph-mouse-sweep: task duration 900ms 967ms +7% ⚠️ z=2.9
subgraph-mouse-sweep: script duration 101ms 111ms +9% z=1.5
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 44.6 MB 51.1 MB +15%
subgraph-mouse-sweep: DOM nodes -279 32 -111% z=-15.8
subgraph-mouse-sweep: event listeners -153 -75 -51% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms +0%
subgraph-transition-enter: p95 frame time 17ms 17ms +0%
subgraph-transition-enter: layout duration 11ms 15ms +32%
subgraph-transition-enter: style recalc duration 29ms 33ms +12%
subgraph-transition-enter: layout count 15 16 +7%
subgraph-transition-enter: style recalc count 19 20 +5%
subgraph-transition-enter: task duration 940ms 1145ms +22%
subgraph-transition-enter: script duration 35ms 47ms +34%
subgraph-transition-enter: TBT 124ms 148ms +19%
subgraph-transition-enter: heap used 94.9 MB 73.1 MB -23%
subgraph-transition-enter: DOM nodes 13673 13673 +0%
subgraph-transition-enter: event listeners 2375 2373 -0%
viewport-pan-sweep: avg frame time 17ms 17ms +0%
viewport-pan-sweep: p95 frame time 17ms 17ms +1%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 42ms 47ms +12%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 249 250 +0%
viewport-pan-sweep: task duration 4829ms 5410ms +12%
viewport-pan-sweep: script duration 1396ms 1597ms +14%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 71.3 MB 74.7 MB +5%
viewport-pan-sweep: DOM nodes -282 -284 +1%
viewport-pan-sweep: event listeners -131 -147 +12%
vue-large-graph-idle: avg frame time 18ms 18ms +3%
vue-large-graph-idle: p95 frame time 17ms 25ms +49%
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 18217ms 19655ms +8%
vue-large-graph-idle: script duration 587ms 612ms +4%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 159.6 MB 156.6 MB -2%
vue-large-graph-idle: DOM nodes -8312 -8314 +0%
vue-large-graph-idle: event listeners -16387 -16387 +0%
vue-large-graph-pan: avg frame time 18ms 19ms +2%
vue-large-graph-pan: p95 frame time 17ms 25ms +49%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 26ms 32ms +20%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 170 180 +6%
vue-large-graph-pan: task duration 23007ms 24703ms +7%
vue-large-graph-pan: script duration 939ms 1023ms +9%
vue-large-graph-pan: TBT 830ms 1348ms +62%
vue-large-graph-pan: heap used 159.5 MB 153.9 MB -3%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16381 -16378 -0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.1
workflow-execution: p95 frame time 17ms 17ms +0%
workflow-execution: layout duration 1ms 1ms -45% z=-6.0
workflow-execution: style recalc duration 20ms 22ms +7% z=-1.1
workflow-execution: layout count 3 3 +0% z=-3.6
workflow-execution: style recalc count 14 11 -21% z=-3.3
workflow-execution: task duration 112ms 124ms +10% z=0.1
workflow-execution: script duration 9ms 13ms +41% z=-5.4
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 65.4 MB 65.3 MB -0%
workflow-execution: DOM nodes 126 121 -4% z=-5.7
workflow-execution: event listeners 97 98 +1% z=10.6
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-08-11T23:36:38.676Z",
  "gitSha": "ec053a11512126560dabd94def40f1eaacce4b82",
  "branch": "cb/trackB-assets-loadimage",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2108.86899999997,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 9.513,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 755.7230000000001,
      "heapDeltaBytes": 5878480,
      "heapUsedBytes": 70181256,
      "domNodes": 16,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 31.041,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2037.98699999993,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 9.509,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 661.006,
      "heapDeltaBytes": 5803528,
      "heapUsedBytes": 70176056,
      "domNodes": 16,
      "jsHeapTotalBytes": 24641536,
      "scriptDurationMs": 29.002000000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2098.410000000001,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 55.269000000000005,
      "layouts": 12,
      "layoutDurationMs": 4.1610000000000005,
      "taskDurationMs": 1139.973,
      "heapDeltaBytes": -10406888,
      "heapUsedBytes": 53913392,
      "domNodes": -281,
      "jsHeapTotalBytes": 24616960,
      "scriptDurationMs": 143.88899999999998,
      "eventListeners": -155,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1990.8060000000205,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 48.287,
      "layouts": 12,
      "layoutDurationMs": 5.372,
      "taskDurationMs": 1096.248,
      "heapDeltaBytes": -10283316,
      "heapUsedBytes": 54076216,
      "domNodes": -282,
      "jsHeapTotalBytes": 23830528,
      "scriptDurationMs": 145.007,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1748.078000000021,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 21.353,
      "layouts": 6,
      "layoutDurationMs": 0.7209999999999999,
      "taskDurationMs": 505.61400000000003,
      "heapDeltaBytes": 8846344,
      "heapUsedBytes": 73206872,
      "domNodes": 76,
      "jsHeapTotalBytes": 24641536,
      "scriptDurationMs": 31.503000000000004,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1742.6860000000488,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 22.467,
      "layouts": 6,
      "layoutDurationMs": 0.7259999999999999,
      "taskDurationMs": 506.738,
      "heapDeltaBytes": 8768160,
      "heapUsedBytes": 73156152,
      "domNodes": 77,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 31.587999999999997,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 747.3170000000096,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.056,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 490.07900000000006,
      "heapDeltaBytes": -11308104,
      "heapUsedBytes": 53226332,
      "domNodes": 12,
      "jsHeapTotalBytes": 25690112,
      "scriptDurationMs": 75.132,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 693.9539999999624,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.45,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 444.83900000000006,
      "heapDeltaBytes": -11045944,
      "heapUsedBytes": 53285924,
      "domNodes": 16,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 65.461,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2126.751000000013,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 11.674,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 969.052,
      "heapDeltaBytes": 6827636,
      "heapUsedBytes": 66685344,
      "domNodes": -282,
      "jsHeapTotalBytes": 3248128,
      "scriptDurationMs": 151.23600000000002,
      "eventListeners": -181,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2109.6300000000383,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 9.158,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 940.8829999999999,
      "heapDeltaBytes": 7814932,
      "heapUsedBytes": 67304684,
      "domNodes": -281,
      "jsHeapTotalBytes": 3510272,
      "scriptDurationMs": 144.082,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2455.246000000045,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 18.372999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1524.5910000000001,
      "heapDeltaBytes": -5163012,
      "heapUsedBytes": 55430764,
      "domNodes": -281,
      "jsHeapTotalBytes": 4296704,
      "scriptDurationMs": 491.828,
      "eventListeners": -179,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2369.372999999996,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 16.305000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1526.806,
      "heapDeltaBytes": -5926504,
      "heapUsedBytes": 55013340,
      "domNodes": -287,
      "jsHeapTotalBytes": 4820992,
      "scriptDurationMs": 474.323,
      "eventListeners": -179,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3729.5009999999706,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 16.663,
      "layouts": 60,
      "layoutDurationMs": 9.32,
      "taskDurationMs": 1840.7279999999998,
      "heapDeltaBytes": -4773720,
      "heapUsedBytes": 57544480,
      "domNodes": -289,
      "jsHeapTotalBytes": 5869568,
      "scriptDurationMs": 641.054,
      "eventListeners": -181,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3597.488999999996,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 17.162,
      "layouts": 60,
      "layoutDurationMs": 9.746,
      "taskDurationMs": 1772.7240000000002,
      "heapDeltaBytes": 1183376,
      "heapUsedBytes": 63314484,
      "domNodes": 10,
      "jsHeapTotalBytes": 8126464,
      "scriptDurationMs": 638.696,
      "eventListeners": 10,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "minimap-idle",
      "durationMs": 2081.08900000002,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 7.987000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 950.5130000000001,
      "heapDeltaBytes": 7798800,
      "heapUsedBytes": 68590596,
      "domNodes": -285,
      "jsHeapTotalBytes": 2723840,
      "scriptDurationMs": 139.08399999999997,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2086.618999999928,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.288,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 942.0930000000001,
      "heapDeltaBytes": 7627816,
      "heapUsedBytes": 68204600,
      "domNodes": -285,
      "jsHeapTotalBytes": 3772416,
      "scriptDurationMs": 142.34999999999997,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 697.3949999999718,
      "styleRecalcs": 45,
      "styleRecalcDurationMs": 10.949,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 475.45399999999995,
      "heapDeltaBytes": -10202808,
      "heapUsedBytes": 54261096,
      "domNodes": 16,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 134.91,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 720.0689999999668,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 12.136999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 487.658,
      "heapDeltaBytes": -10418260,
      "heapUsedBytes": 54100628,
      "domNodes": 18,
      "jsHeapTotalBytes": 25165824,
      "scriptDurationMs": 140.658,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2018.8139999999635,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 10.342999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 641.0989999999999,
      "heapDeltaBytes": 5859956,
      "heapUsedBytes": 70265196,
      "domNodes": 18,
      "jsHeapTotalBytes": 24903680,
      "scriptDurationMs": 24.845,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2058.7240000000975,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.817,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 703.082,
      "heapDeltaBytes": -18257920,
      "heapUsedBytes": 46120892,
      "domNodes": 1,
      "jsHeapTotalBytes": 23044096,
      "scriptDurationMs": 26.180000000000003,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1803.6920000000123,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 44.80199999999999,
      "layouts": 16,
      "layoutDurationMs": 5.37,
      "taskDurationMs": 931.6719999999999,
      "heapDeltaBytes": -3373576,
      "heapUsedBytes": 61119468,
      "domNodes": 62,
      "jsHeapTotalBytes": 25427968,
      "scriptDurationMs": 109.84200000000001,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1899.6630000000323,
      "styleRecalcs": 80,
      "styleRecalcDurationMs": 48.816,
      "layouts": 16,
      "layoutDurationMs": 5.556,
      "taskDurationMs": 1003.1719999999999,
      "heapDeltaBytes": -18334108,
      "heapUsedBytes": 46075132,
      "domNodes": 1,
      "jsHeapTotalBytes": 22781952,
      "scriptDurationMs": 111.42799999999998,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1448.3220000000756,
      "styleRecalcs": 20,
      "styleRecalcDurationMs": 32.859,
      "layouts": 16,
      "layoutDurationMs": 15.027000000000003,
      "taskDurationMs": 1145.4240000000002,
      "heapDeltaBytes": 3858704,
      "heapUsedBytes": 76658292,
      "domNodes": 13673,
      "jsHeapTotalBytes": 15728640,
      "scriptDurationMs": 47.23399999999999,
      "eventListeners": 2373,
      "totalBlockingTimeMs": 148,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 9165.238999999985,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 47.622,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 5430.944,
      "heapDeltaBytes": 17701316,
      "heapUsedBytes": 77193160,
      "domNodes": -284,
      "jsHeapTotalBytes": 5275648,
      "scriptDurationMs": 1604.671,
      "eventListeners": -161,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 9002.357999999958,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 46.967999999999996,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 5389.241999999999,
      "heapDeltaBytes": 19892204,
      "heapUsedBytes": 79455548,
      "domNodes": -283,
      "jsHeapTotalBytes": 5537792,
      "scriptDurationMs": 1589.557,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 19664.21200000002,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 19618.006,
      "heapDeltaBytes": -41149560,
      "heapUsedBytes": 160623708,
      "domNodes": -8316,
      "jsHeapTotalBytes": -8331264,
      "scriptDurationMs": 627.0910000000001,
      "eventListeners": -16385,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 18.33666666666662,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 19711.231,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 19692.788,
      "heapDeltaBytes": -58445596,
      "heapUsedBytes": 167853636,
      "domNodes": -8312,
      "jsHeapTotalBytes": -5971968,
      "scriptDurationMs": 597.166,
      "eventListeners": -16389,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 18.333333333333332,
      "p95FrameDurationMs": 33.400000000001455
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 24975.833999999963,
      "styleRecalcs": 181,
      "styleRecalcDurationMs": 32.869999999999955,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 24939.915000000005,
      "heapDeltaBytes": -49854992,
      "heapUsedBytes": 156023092,
      "domNodes": -8312,
      "jsHeapTotalBytes": -10162176,
      "scriptDurationMs": 1055.209,
      "eventListeners": -16379,
      "totalBlockingTimeMs": 1287,
      "frameDurationMs": 18.886666666666617,
      "p95FrameDurationMs": 33.200000000004366
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 24492.886999999995,
      "styleRecalcs": 178,
      "styleRecalcDurationMs": 30.547999999999963,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 24465.533,
      "heapDeltaBytes": -56199964,
      "heapUsedBytes": 166753392,
      "domNodes": -8312,
      "jsHeapTotalBytes": -9641984,
      "scriptDurationMs": 989.841,
      "eventListeners": -16377,
      "totalBlockingTimeMs": 1408,
      "frameDurationMs": 18.33666666666662,
      "p95FrameDurationMs": 16.700000000004366
    },
    {
      "name": "workflow-execution",
      "durationMs": 466.61200000005465,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 21.374999999999996,
      "layouts": 3,
      "layoutDurationMs": 0.6880000000000001,
      "taskDurationMs": 127.56300000000002,
      "heapDeltaBytes": 5063096,
      "heapUsedBytes": 68482168,
      "domNodes": 122,
      "jsHeapTotalBytes": 5767168,
      "scriptDurationMs": 12.328,
      "eventListeners": 99,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 470.03799999993134,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 22.032999999999998,
      "layouts": 3,
      "layoutDurationMs": 0.6739999999999999,
      "taskDurationMs": 119.587,
      "heapDeltaBytes": 5047436,
      "heapUsedBytes": 68480268,
      "domNodes": 119,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 13.786,
      "eventListeners": 97,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    }
  ]
}

Connor Byrne added 2 commits August 11, 2026 16:17
…esult

The preservation guard identified widget previews by directory ('every image is
type input'), which only worked because annotated values were misparsed into the
input directory. Now that an [output] widget value resolves to the output
directory, that proxy no longer holds and running the graph would clear the
preview.

Track the widget-sourced locators explicitly instead, so the guard covers a
widget pointing at an output or temp asset as well as an input one.
@dosubot dosubot Bot added size:M This PR changes 30-99 lines, ignoring generated files. and removed size:S This PR changes 10-29 lines, ignoring generated files. labels Aug 11, 2026
@codecov

codecov Bot commented Aug 11, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 90.00000% with 2 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
src/stores/nodeOutputStore.ts 85.71% 2 Missing ⚠️
@@           Coverage Diff           @@
##             main   #15065   +/-   ##
=======================================
  Coverage   81.32%   81.33%           
=======================================
  Files        1873     1873           
  Lines      106556   106572   +16     
  Branches    33382    33309   -73     
=======================================
+ Hits        86661    86680   +19     
+ Misses      19549    19536   -13     
- Partials      346      356   +10     
Flag Coverage Δ
unit 72.54% <90.00%> (+0.02%) ⬆️

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

Files with missing lines Coverage Δ
src/utils/createAnnotatedPath.ts 100.00% <100.00%> (ø)
src/stores/nodeOutputStore.ts 83.69% <85.71%> (+2.07%) ⬆️

... and 8 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:M This PR changes 30-99 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant