Skip to content

perf: avoid per-frame reactive mutations in DomWidgets positioning - #15684

Open
christian-byrne wants to merge 6 commits into
mainfrom
perf/fix-dom-widgets-revival
Open

perf: avoid per-frame reactive mutations in DomWidgets positioning#15684
christian-byrne wants to merge 6 commits into
mainfrom
perf/fix-dom-widgets-revival

Conversation

@christian-byrne

Copy link
Copy Markdown
Contributor

Summary

  • Problem: DomWidgets.vue was mutating widgetState.pos, size, zIndex, readonly, and computedDisabled on every canvas.onDrawForeground call (~60fps), even when the values hadn't changed. Each write triggered { deep: true } watchers in DomWidget.vue, cascading into style recalculations and DOM mutations across all visible widgets every frame.

  • Root cause (pos/size): Equality wasn't checked before assignment, so the array was replaced every frame regardless of whether node position changed.

  • Root cause (watcher): A single { deep: true } watcher on all of widgetState fired on any property mutation, even ones that don't affect layout.

  • Root cause (computedDisabled): DomWidget.vue was reading widget.computedDisabled directly — a non-reactive litegraph property — so Vue watchers never observed changes.

Changes

DomWidgets.vue

  • Added equality guards for all 5 reactive fields — skips the write when the value is unchanged
  • Tracks viewport offset/scale and selected-node bounds between frames; forces pos array reassignment only when these change (needed because ds.offset/ds.scale and node.pos are non-reactive — a new array identity is the only signal Vue watchers can observe)
  • Consolidates 7 bare let tracking variables into two plain objects (lastViewport, lastSelected)
  • Snapshots widget.computedDisabledwidgetState.computedDisabled each frame so the reactive store reflects the non-reactive litegraph property

DomWidget.vue

  • Splits the single { deep: true } watcher into two focused watchers: one for layout (pos/size/visible) and one for appearance (zIndex/readonly/computedDisabled)
  • Reads widgetState.computedDisabled (reactive) instead of widget.computedDisabled (non-reactive)

domWidgetStore.ts

  • Adds computedDisabled: boolean to DomWidgetState with JSDoc explaining the snapshot pattern

Tests

  • DomWidgets.test.ts: 6 behavioral tests covering positioning, visibility, viewport pan, idle-frame identity preservation, selected-node movement, and computedDisabled mirroring
  • DomWidget.test.ts: 2 tests covering disabled style and pointer-events when not visible; updated createWidgetState to set the snapshot field directly (no draw loop in unit tests)

Test plan

  • Run pnpm vitest run src/components/graph/DomWidgets.test.ts — 8 tests pass
  • Run pnpm vitest run src/components/graph/widgets/DomWidget.test.ts — 2 tests pass
  • Smoke-test in browser: drag a node with DOM widgets (e.g. a text area), pan/zoom canvas — widgets should track correctly with no visual lag
  • Verify computedDisabled styling: connect an input to a widget input; widget should go 50% opacity with pointer-events disabled

🤖 Generated with Claude Code

ampagent and others added 4 commits July 23, 2026 08:27
Eliminates unconditional 60fps reactive writes that triggered Vue's
dependency tracking on every draw frame, causing cascading re-renders.

DomWidgets.vue:
- Track viewport (ds.offset/scale) and selected node bounds between
  frames. Only write widgetState.pos when the value actually changed,
  but force reassignment when viewport pans or selected node moves
  (needed because ds.offset is non-reactive — downstream watchers
  won't fire unless pos gets a new array identity).
- Guard all per-frame writes (pos, size, zIndex, readonly,
  computedDisabled) with equality checks.
- Snapshot widget.computedDisabled into widgetState each frame so
  DomWidget.vue can watch a reactive property instead of reading the
  non-reactive litegraph field directly.

DomWidget.vue:
- Replace the { deep: true } watcher over the entire widgetState object
  with two focused watchers: one for pos/size/visible (calls
  updatePosition) and one for zIndex/readonly/computedDisabled/
  enableDomClipping (calls composeStyle only).
- Read widgetState.computedDisabled instead of widget.computedDisabled
  in composeStyle() so the watcher can fire reactively.

domWidgetStore.ts:
- Add computedDisabled: boolean to DomWidgetState, initialized false.
…riant test

Address @AustinMroz's style note: replace 7 bare module-level `let`
variables with two plain objects (`lastViewport`, `lastSelected`),
making the per-frame snapshot state easier to read and extend.

Add a reactive-write budget test that directly validates the perf
claim: instrument the `pos` setter on widgetState and assert zero
writes across 20 idle frames (canvas and nodes both stationary).
Object.defineProperty setter interception on a Pinia reactive proxy
does not reliably intercept Vue's internal reactive writes. The same
invariant (no pos writes on idle frames) is correctly captured by
checking that the pos array reference is unchanged after N idle frames —
identical to the existing passing test for the same property.
@christian-byrne
christian-byrne requested a review from a team August 23, 2026 05:47
@dosubot dosubot Bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Aug 23, 2026
@coderabbitai

coderabbitai Bot commented Aug 23, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Warning

Review limit reached

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

Your current included review allowance is based on your included PR review attempts over the past 7 days.

Next review available in: 36 minutes

Limit details: You’ve used the included review currently available. Your 92 included PR review attempts over the past 7 days set your current allowance at 1 review per hour.

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?

Wait for the limit to reset, then comment @coderabbitai review or push new commits to the PR.

An organization admin can change what happens after included review limits in Billing.

How do review limits work?

CodeRabbit enforces per-developer PR review limits within each organization.

For paid Pro and Pro+ reviews, CodeRabbit uses a developer's included PR review attempts over the past 7 days to set the current hourly allowance. At typical activity levels, the full plan allowance applies. Higher sustained activity can lower the allowance until earlier attempts leave the 7-day window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 35a7e03a-d05b-4c45-8fbc-318f1eb6e6ec

📥 Commits

Reviewing files that changed from the base of the PR and between 296fc5c and e3440af.

📒 Files selected for processing (5)
  • src/components/graph/DomWidgets.test.ts
  • src/components/graph/DomWidgets.vue
  • src/components/graph/widgets/DomWidget.test.ts
  • src/components/graph/widgets/DomWidget.vue
  • src/stores/domWidgetStore.ts

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 20d6bcc9-c841-40da-97d4-4f8c4b5dfe33

📥 Commits

Reviewing files that changed from the base of the PR and between a7196d6 and 7aeacc9.

📒 Files selected for processing (5)
  • src/components/graph/DomWidgets.test.ts
  • src/components/graph/DomWidgets.vue
  • src/components/graph/widgets/DomWidget.test.ts
  • src/components/graph/widgets/DomWidget.vue
  • src/stores/domWidgetStore.ts

Included review availability: 8 reviews are currently available. Your included PR review attempts over the past 7 days set your current allowance at 10 reviews per hour.


📝 Walkthrough

Walkthrough

Changes

The update synchronizes DOM widgets with viewport transforms, selected-node geometry, and computed-disabled state. It also replaces the deep widget-state watcher with targeted watchers and adds coverage for reassignment and idle-frame behavior.

DOM widget synchronization

Layer / File(s) Summary
Widget state and frame synchronization
src/stores/domWidgetStore.ts, src/components/graph/DomWidgets.vue, src/components/graph/DomWidgets.test.ts
Widget state stores computedDisabled. Frame updates detect viewport and selected-node changes, update widget values conditionally, and test position reassignment and disabled-state synchronization.
Targeted widget rendering updates
src/components/graph/widgets/DomWidget.vue, src/components/graph/widgets/DomWidget.test.ts, src/components/graph/DomWidgets.test.ts
DomWidget uses stored computed-disabled state and targeted watchers for position, size, visibility, bounds, clipping, and style. Tests verify stable position references during idle frames.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Merge Risk: ⚪ Minimal · up to 7aeac

This change reduces redundant per-frame widget updates and makes disabled-state styling reactive; no actionable merge-blocking risk remains beyond normal checks and review.

Suggested reviewers: drjkl


Important

Pre-merge checks failed

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

❌ Failed checks (2 inconclusive)

Check name Status Explanation Resolution
End-To-End Regression Coverage For Fixes ❓ Inconclusive The metadata lists changed src files, but it does not provide the PR title or actual commit subjects needed to verify the required bug-fix signal. Provide the PR title and commit subjects, then check whether a browser_tests/ Playwright regression test or a concrete exception explanation exists.
Adr Compliance For Entity/Litegraph Changes ❓ Inconclusive The PR changes graph widget files, so the check applies, but the review context does not include the required diff content to verify ADR patterns. Provide the PR diff relative to its base, especially changes involving node, canvas, graph, subgraph, widget, slot, link, or extension APIs.
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the main performance optimization in DomWidgets positioning.
Description check ✅ Passed The description provides detailed problem context, implementation changes, affected files, and a test plan aligned with the template.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Website End-To-End Regression Coverage ✅ Passed The listed changes are under src/components and src/stores, not apps/website/src or apps/website/public; this website-specific check does not apply.
✨ Finishing Touches 💡 1
🛠️ Fix failing CI checks 💡
  • Create stacked PR
  • Commit on current branch
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch perf/fix-dom-widgets-revival

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

@github-actions

github-actions Bot commented Aug 23, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 08/23/2026, 08:43:02 AM UTC

Links

🎭 Playwright: ✅ 1981 passed, 0 failed · 2 flaky

📊 Browser Reports
  • chromium: View Report (✅ 1960 / ❌ 0 / ⚠️ 2 / ⏭️ 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)

📦 Bundle: 9.11 MB gzip 🔴 +451 B

Details

Summary

  • Raw size: 38.6 MB baseline 38.6 MB — 🔴 +2.37 kB
  • Gzip: 9.11 MB baseline 9.11 MB — 🔴 +451 B
  • Brotli: 6.38 MB baseline 6.37 MB — 🔴 +468 B
  • Bundles: 438 current • 438 baseline • 144 added / 144 removed

Category Glance
Graph Workspace 🔴 +2.34 kB (1.38 MB) · Data & Services 🔴 +28 B (3.53 MB) · Vendor & Third-Party ⚪ 0 B (18.1 MB) · Other ⚪ 0 B (14.1 MB) · Panels & Settings ⚪ 0 B (591 kB) · Utilities & Hooks ⚪ 0 B (549 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-CT3Qv84J.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.86 kB 🟢 -1.6 kB
assets/index-Dy5zd0Nb.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.86 kB 🔴 +1.63 kB

Status: 1 added / 1 removed

Graph Workspace — 1.38 MB (baseline 1.38 MB) • 🔴 +2.34 kB

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-2OJ1iJhA.js (new) 1.37 MB 🔴 +1.37 MB 🔴 +300 kB 🔴 +226 kB
assets/GraphView-C49YWoR7.js (removed) 1.37 MB 🟢 -1.37 MB 🟢 -299 kB 🟢 -225 kB
assets/WidgetCompositor-D51QtF2r.js (removed) 8.17 kB 🟢 -8.17 kB 🟢 -2.76 kB 🟢 -2.46 kB
assets/WidgetCompositor-Da7p3jBg.js (new) 8.17 kB 🔴 +8.17 kB 🔴 +2.76 kB 🔴 +2.46 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-BeVXXW1J.js (new) 25 kB 🔴 +25 kB 🔴 +6.25 kB 🔴 +5.53 kB
assets/CloudSurveyView-eFZewUE2.js (removed) 25 kB 🟢 -25 kB 🟢 -6.25 kB 🟢 -5.52 kB
assets/CloudLayoutView-Bkj0U1oR.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -6.56 kB 🟢 -5.73 kB
assets/CloudLayoutView-C1TCZ2RW.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +6.56 kB 🔴 +5.74 kB
assets/UserCheckView-Cg_c_dav.js (new) 8.75 kB 🔴 +8.75 kB 🔴 +2.19 kB 🔴 +1.9 kB
assets/UserCheckView-DzYOdjqw.js (removed) 8.75 kB 🟢 -8.75 kB 🟢 -2.19 kB 🟢 -1.9 kB
assets/CloudLoginView-CC6ZNO3G.js (removed) 8.74 kB 🟢 -8.74 kB 🟢 -2.55 kB 🟢 -2.27 kB
assets/CloudLoginView-DKVYZXh1.js (new) 8.74 kB 🔴 +8.74 kB 🔴 +2.55 kB 🔴 +2.25 kB
assets/useCloudAuthPage-CQ_Vn9-n.js (new) 7.08 kB 🔴 +7.08 kB 🔴 +2.51 kB 🔴 +2.22 kB
assets/useCloudAuthPage-DymeYcBG.js (removed) 7.08 kB 🟢 -7.08 kB 🟢 -2.51 kB 🟢 -2.2 kB
assets/CloudSignupView-DarxCmAH.js (new) 6.96 kB 🔴 +6.96 kB 🔴 +2.28 kB 🔴 +2 kB
assets/CloudSignupView-FjkZdd7q.js (removed) 6.96 kB 🟢 -6.96 kB 🟢 -2.28 kB 🟢 -2 kB
assets/WidgetTextPreview-BL-hY6fj.js (new) 6.07 kB 🔴 +6.07 kB 🔴 +2.13 kB 🔴 +1.9 kB
assets/WidgetTextPreview-BNCqUS6Y.js (removed) 6.07 kB 🟢 -6.07 kB 🟢 -2.13 kB 🟢 -1.89 kB
assets/CloudSubscriptionRedirectView-BNrAGmU2.js (removed) 6.05 kB 🟢 -6.05 kB 🟢 -2.25 kB 🟢 -1.96 kB
assets/CloudSubscriptionRedirectView-Dtk0pRou.js (new) 6.05 kB 🔴 +6.05 kB 🔴 +2.25 kB 🔴 +1.96 kB
assets/UserSelectView-CuFHoTmw.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.96 kB 🟢 -1.71 kB
assets/UserSelectView-yk5rsabX.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.96 kB 🔴 +1.72 kB
assets/CloudForgotPasswordView-CzVcHIAS.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.73 kB 🟢 -1.49 kB
assets/CloudForgotPasswordView-DYqRh8mR.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.73 kB 🔴 +1.49 kB
assets/CloudAuthTimeoutView-GTh6n5QR.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.54 kB 🔴 +1.34 kB
assets/CloudAuthTimeoutView-jqLG4QhF.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.54 kB 🟢 -1.34 kB
assets/OAuthLayoutView-BUUcxNnc.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -701 B 🟢 -590 B
assets/OAuthLayoutView-DO68Pz0T.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +700 B 🔴 +587 B
assets/WidgetTextPreview-C7RtwGJV.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -84 B
assets/WidgetTextPreview-D61rDRKj.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +89 B

Status: 13 added / 13 removed / 4 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel--Ej4KPGn.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.94 kB 🔴 +8.8 kB
assets/KeybindingPanel-DPigcrXu.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.94 kB 🟢 -8.8 kB
assets/CreditsPanel-BAghzcVn.js (new) 36.6 kB 🔴 +36.6 kB 🔴 +8.9 kB 🔴 +7.78 kB
assets/CreditsPanel-BnPWKp8q.js (removed) 36.6 kB 🟢 -36.6 kB 🟢 -8.9 kB 🟢 -7.78 kB
assets/SecretsPanel-C7kC8AtB.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +7.88 kB 🔴 +6.92 kB
assets/SecretsPanel-DqZiJ7Sh.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -7.87 kB 🟢 -6.9 kB
assets/AboutPanel-Dl_DQnyy.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.12 kB 🔴 +2.81 kB
assets/AboutPanel-DMbWjzGb.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.12 kB 🟢 -2.81 kB
assets/ExtensionPanel-DbaWUzqg.js (new) 9.19 kB 🔴 +9.19 kB 🔴 +2.51 kB 🔴 +2.22 kB
assets/ExtensionPanel-Dn6geYL8.js (removed) 9.19 kB 🟢 -9.19 kB 🟢 -2.51 kB 🟢 -2.23 kB
assets/ServerConfigPanel-BaMZ-GeJ.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +1.94 kB 🔴 +1.72 kB
assets/ServerConfigPanel-DgdPr9zX.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -1.94 kB 🟢 -1.72 kB
assets/UserPanel-5LK-_0Zp.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.78 kB 🔴 +1.54 kB
assets/UserPanel-vJQ-gUOK.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.78 kB 🟢 -1.54 kB
assets/refreshRemoteConfig-BVvR9yh_.js (removed) 4.24 kB 🟢 -4.24 kB 🟢 -1.51 kB 🟢 -1.34 kB
assets/refreshRemoteConfig-CEr8yZ9i.js (new) 4.24 kB 🔴 +4.24 kB 🔴 +1.51 kB 🔴 +1.33 kB
assets/cloudRemoteConfig-ChCwciv1.js (removed) 951 B 🟢 -951 B 🟢 -517 B 🟢 -422 B
assets/cloudRemoteConfig-Cylz9vML.js (new) 951 B 🔴 +951 B 🔴 +516 B 🔴 +421 B
assets/CreditsPanel-8A9mzceJ.js (removed) 116 B 🟢 -116 B 🟢 -95 B 🟢 -89 B
assets/CreditsPanel-BOOk1nYc.js (new) 116 B 🔴 +116 B 🔴 +95 B 🔴 +86 B
assets/refreshRemoteConfig-BnGtLyW6.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +82 B
assets/refreshRemoteConfig-CwYfOCRh.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -83 B

Status: 11 added / 11 removed / 16 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SignUpForm-BAkZXW05.js (new) 13.3 kB 🔴 +13.3 kB 🔴 +4.52 kB 🔴 +3.93 kB
assets/SignUpForm-Bb6BFn8q.js (removed) 13.3 kB 🟢 -13.3 kB 🟢 -4.52 kB 🟢 -3.93 kB
assets/auth-3e_ZjHAL.js (new) 3.48 kB 🔴 +3.48 kB 🔴 +1.21 kB 🔴 +1.01 kB
assets/auth-Cg1Heuyv.js (removed) 3.48 kB 🟢 -3.48 kB 🟢 -1.2 kB 🟢 -1.01 kB
assets/UpdatePasswordContent-CmymTf9i.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -842 B 🟢 -735 B
assets/UpdatePasswordContent-DTGb60hw.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +842 B 🔴 +736 B
assets/authStore-BziX0cmg.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -105 B
assets/authStore-EZrKzLJF.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +105 B
assets/workspaceAuthStore-BtAJcQQW.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +107 B
assets/workspaceAuthStore-BZmR5_B6.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -105 B
assets/auth-BkBeYfjB.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -78 B
assets/auth-Ciq-_Dkp.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +87 B

Status: 6 added / 6 removed / 5 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-DUTmnc_J.js (removed) 90.1 kB 🟢 -90.1 kB 🟢 -19.3 kB 🟢 -16.5 kB
assets/ComfyHubPublishDialog-JCwGNUq0.js (new) 90.1 kB 🔴 +90.1 kB 🔴 +19.3 kB 🔴 +16.5 kB
assets/useShareDialog-BPq1Re9Q.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.7 kB 🟢 -5.04 kB
assets/useShareDialog-u9-Z7Ybq.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.7 kB 🔴 +5.04 kB
assets/feedbackDialog-B6hCDX3L.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.86 kB 🔴 +1.59 kB
assets/feedbackDialog-DXydChRF.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.86 kB 🟢 -1.59 kB
assets/useRangeEditor-gNfTm6Qm.js (removed) 3.29 kB 🟢 -3.29 kB 🟢 -1.14 kB 🟢 -1.05 kB
assets/useRangeEditor-K8RlihUN.js (new) 3.29 kB 🔴 +3.29 kB 🔴 +1.14 kB 🔴 +1.04 kB
assets/useLayerEditor-C8nBEUba.js (new) 1.01 kB 🔴 +1.01 kB 🔴 +491 B 🔴 +405 B
assets/useLayerEditor-DSKKTtIO.js (removed) 1.01 kB 🟢 -1.01 kB 🟢 -491 B 🟢 -405 B
assets/ComfyHubPublishDialog-C9MMFQX4.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -91 B
assets/ComfyHubPublishDialog-CL3TrTHw.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +89 B
assets/useSubscriptionDialog-B9f5wpNw.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -90 B
assets/useSubscriptionDialog-BIZbf1DR.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +93 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-DF72O2J1.js (removed) 14.6 kB 🟢 -14.6 kB 🟢 -3.97 kB 🟢 -3.52 kB
assets/ComfyQueueButton-kzzWqOmQ.js (new) 14.6 kB 🔴 +14.6 kB 🔴 +3.97 kB 🔴 +3.52 kB
assets/useTerminalTabs-DFLXjn49.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.69 kB 🟢 -3.28 kB
assets/useTerminalTabs-Dgj1Q5rb.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.69 kB 🔴 +3.28 kB
assets/InviteMembersForm-Bo5JKrIB.js (new) 8.23 kB 🔴 +8.23 kB 🔴 +2.74 kB 🔴 +2.44 kB
assets/InviteMembersForm-xLVJ9RXQ.js (removed) 8.23 kB 🟢 -8.23 kB 🟢 -2.74 kB 🟢 -2.44 kB
assets/SubscribeButton-b5k16dc3.js (new) 2.15 kB 🔴 +2.15 kB 🔴 +969 B 🔴 +850 B
assets/SubscribeButton-BT48_6GK.js (removed) 2.15 kB 🟢 -2.15 kB 🟢 -969 B 🟢 -847 B
assets/cloudFeedbackTopbarButton-DaaBcljm.js (removed) 705 B 🟢 -705 B 🟢 -422 B 🟢 -362 B
assets/cloudFeedbackTopbarButton-DgqtbeO6.js (new) 705 B 🔴 +705 B 🔴 +423 B 🔴 +359 B
assets/ComfyQueueButton-BGtyTc5B.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -94 B
assets/ComfyQueueButton-D2kMA5ON.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +91 B

Status: 6 added / 6 removed / 8 unchanged

Data & Services — 3.53 MB (baseline 3.53 MB) • 🔴 +28 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-CMOOMDC9.js (new) 3.17 MB 🔴 +3.17 MB 🔴 +743 kB 🔴 +558 kB
assets/settingStore-LCpZLjV6.js (removed) 3.17 MB 🟢 -3.17 MB 🟢 -743 kB 🟢 -558 kB
assets/api-Bt2MTs8H.js (removed) 186 kB 🟢 -186 kB 🟢 -39.8 kB 🟢 -33.4 kB
assets/api-uVjv7c8V.js (new) 186 kB 🔴 +186 kB 🔴 +39.8 kB 🔴 +33.4 kB
assets/load3dService-BmOQ6Kwt.js (new) 131 kB 🔴 +131 kB 🔴 +29.2 kB 🔴 +24.6 kB
assets/load3dService-CjmakV89.js (removed) 131 kB 🟢 -131 kB 🟢 -29.2 kB 🟢 -24.6 kB
assets/workflowShareService-C0kZgT62.js (new) 16.5 kB 🔴 +16.5 kB 🔴 +4.91 kB 🔴 +4.35 kB
assets/workflowShareService-DFkP1eCF.js (removed) 16.5 kB 🟢 -16.5 kB 🟢 -4.91 kB 🟢 -4.35 kB
assets/keybindingService-D2kyQ4Nk.js (new) 6.95 kB 🔴 +6.95 kB 🔴 +1.74 kB 🔴 +1.51 kB
assets/keybindingService-Dip3W2pz.js (removed) 6.95 kB 🟢 -6.95 kB 🟢 -1.74 kB 🟢 -1.5 kB
assets/releaseStore-rY7vRvPb.js (new) 6.72 kB 🔴 +6.72 kB 🔴 +2.03 kB 🔴 +1.77 kB
assets/releaseStore-TcfW2oRT.js (removed) 6.72 kB 🟢 -6.72 kB 🟢 -2.03 kB 🟢 -1.77 kB
assets/systemStatsStore-9U0yqI6z.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.74 kB 🟢 -1.47 kB
assets/systemStatsStore-D20lv6IQ.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.74 kB 🔴 +1.47 kB
assets/userStore-DG40P0_C.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +898 B 🔴 +795 B
assets/userStore-DGKSWPYP.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -898 B 🟢 -795 B
assets/audioService-0cmfnXbz.js (new) 1.71 kB 🔴 +1.71 kB 🔴 +830 B 🔴 +722 B
assets/audioService-DtAcQOGK.js (removed) 1.71 kB 🟢 -1.71 kB 🟢 -829 B 🟢 -721 B
assets/dialogService-BF8WLNpg.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -81 B
assets/dialogService-WSPhKhNC.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +91 B
assets/releaseStore-BvsmtMWc.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +83 B
assets/releaseStore-uyHUB6Q2.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -85 B
assets/settingStore-Bb_PqNEq.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +87 B
assets/settingStore-CMOSX6Sp.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -87 B
assets/assetsStore-agi0Br5s.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -81 B
assets/assetsStore-DQ9U9nTc.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +83 B
assets/api--nX1aE2-.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B
assets/api-BwSF9dUx.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B

Status: 14 added / 14 removed / 3 unchanged

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-DrlTfxpS.js (removed) 236 kB 🟢 -236 kB 🟢 -53.1 kB 🟢 -43.2 kB
assets/useConflictDetection-XANFIpcM.js (new) 236 kB 🔴 +236 kB 🔴 +53.1 kB 🔴 +43.2 kB
assets/useLayerEditorSession--KOSKDvv.js (removed) 158 kB 🟢 -158 kB 🟢 -40.8 kB 🟢 -34.3 kB
assets/useLayerEditorSession-BDhI0nCR.js (new) 158 kB 🔴 +158 kB 🔴 +40.8 kB 🔴 +34.3 kB
assets/useLoad3d-B9GIfJBY.js (removed) 25.8 kB 🟢 -25.8 kB 🟢 -5.8 kB 🟢 -5.15 kB
assets/useLoad3d-CICZFLdh.js (new) 25.8 kB 🔴 +25.8 kB 🔴 +5.8 kB 🔴 +5.14 kB
assets/useLoad3dViewer-B2cFokry.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +4.98 kB 🔴 +4.38 kB
assets/useLoad3dViewer-Du286qdG.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -4.98 kB 🟢 -4.36 kB
assets/useImageCrop-BHCe_Y0G.js (removed) 14.9 kB 🟢 -14.9 kB 🟢 -3.42 kB 🟢 -2.98 kB
assets/useImageCrop-DW-EFhSz.js (new) 14.9 kB 🔴 +14.9 kB 🔴 +3.42 kB 🔴 +2.98 kB
assets/useDowngradeToPersonal-CLD6gKOf.js (new) 10.9 kB 🔴 +10.9 kB 🔴 +2.74 kB 🔴 +2.35 kB
assets/useDowngradeToPersonal-CXca57Fz.js (removed) 10.9 kB 🟢 -10.9 kB 🟢 -2.74 kB 🟢 -2.35 kB
assets/useFeatureFlags-BAWMuv-W.js (new) 7.25 kB 🔴 +7.25 kB 🔴 +2.05 kB 🔴 +1.74 kB
assets/useFeatureFlags-DCIdzFcv.js (removed) 7.25 kB 🟢 -7.25 kB 🟢 -2.05 kB 🟢 -1.74 kB
assets/useCompositorLayers-7TdK-_TE.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +898 B 🔴 +807 B
assets/useCompositorLayers-BYZgqWJE.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -899 B 🟢 -807 B
assets/assetPreviewUtil-B6xaUuxA.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -970 B 🟢 -846 B
assets/assetPreviewUtil-C1pY9fAg.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +969 B 🔴 +847 B
assets/useUpstreamValue-CjgBd8J6.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +760 B 🔴 +676 B
assets/useUpstreamValue-CMwFtkyB.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -759 B 🟢 -684 B
assets/useWorkspaceTierLabel-C81Ei588.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -814 B 🟢 -697 B
assets/useWorkspaceTierLabel-D9UObGtw.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +813 B 🔴 +698 B
assets/subscriptionCheckoutUtil-Cvj67nrI.js (new) 877 B 🔴 +877 B 🔴 +523 B 🔴 +431 B
assets/subscriptionCheckoutUtil-KJ_9QC9m.js (removed) 877 B 🟢 -877 B 🟢 -523 B 🟢 -456 B
assets/useSessionCookie-CPezqi10.js (new) 652 B 🔴 +652 B 🔴 +336 B 🔴 +291 B
assets/useSessionCookie-rHr2lcdN.js (removed) 652 B 🟢 -652 B 🟢 -339 B 🟢 -291 B
assets/useLoad3d-BEX2dOoD.js (new) 311 B 🔴 +311 B 🔴 +164 B 🔴 +148 B
assets/useLoad3d-CeMZXp7S.js (removed) 311 B 🟢 -311 B 🟢 -166 B 🟢 -150 B
assets/useSessionCookie-CjtNsZPX.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +85 B
assets/useSessionCookie-D6p28jDv.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -79 B
assets/useFeatureFlags-C4nLMdEK.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +80 B
assets/useFeatureFlags-CmDs7jmD.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -82 B
assets/useLoad3dViewer-_XGjzPdn.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +84 B
assets/useLoad3dViewer-DfB1S6Uz.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -83 B
assets/useCurrentUser-CHLtUPSr.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -94 B
assets/useCurrentUser-Cx67B_5a.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +95 B

Status: 18 added / 18 removed / 19 unchanged

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

External libraries and shared vendor chunks

Status: 18 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-BQ3Qk5Ec.js (removed) 115 kB 🟢 -115 kB 🟢 -30.1 kB 🟢 -25.4 kB
assets/core-CwrkRLF0.js (new) 115 kB 🔴 +115 kB 🔴 +30.1 kB 🔴 +25.4 kB
assets/WorkspaceSettingsPanelContent-BUOOXy9u.js (new) 109 kB 🔴 +109 kB 🔴 +21.4 kB 🔴 +18.1 kB
assets/WorkspaceSettingsPanelContent-Dac2PWCp.js (removed) 109 kB 🟢 -109 kB 🟢 -21.4 kB 🟢 -18 kB
assets/WidgetSelect-CTHWn72S.js (new) 88.8 kB 🔴 +88.8 kB 🔴 +20.1 kB 🔴 +17.2 kB
assets/WidgetSelect-DO7MweQd.js (removed) 88.8 kB 🟢 -88.8 kB 🟢 -20.1 kB 🟢 -17.2 kB
assets/Load3D-3AF1SlZQ.js (new) 73.3 kB 🔴 +73.3 kB 🔴 +12.1 kB 🔴 +10.3 kB
assets/Load3D-CNj9myZY.js (removed) 73.3 kB 🟢 -73.3 kB 🟢 -12.1 kB 🟢 -10.3 kB
assets/WidgetVideoEdit-3IzdhQAN.js (new) 71.2 kB 🔴 +71.2 kB 🔴 +17 kB 🔴 +14.9 kB
assets/WidgetVideoEdit-CFjvbUkG.js (removed) 71.2 kB 🟢 -71.2 kB 🟢 -17 kB 🟢 -14.9 kB
assets/SubscriptionTransitionPreviewWorkspace-BzREbJou.js (removed) 66.4 kB 🟢 -66.4 kB 🟢 -13.4 kB 🟢 -11.7 kB
assets/SubscriptionTransitionPreviewWorkspace-XHVU6GEb.js (new) 66.4 kB 🔴 +66.4 kB 🔴 +13.4 kB 🔴 +11.7 kB
assets/Preview3d-8sc_4yw6.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.32 kB 🟢 -7.24 kB
assets/Preview3d-DyvASCsY.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.32 kB 🔴 +7.25 kB
assets/main-BjqmRUS0.js (new) 47.4 kB 🔴 +47.4 kB 🔴 +13.7 kB 🔴 +11.9 kB
assets/main-Zt7EuxFU.js (removed) 47.4 kB 🟢 -47.4 kB 🟢 -13.7 kB 🟢 -11.9 kB
assets/SubscriptionRequiredDialogContentUnified-DDLwKl_s.js (removed) 42.7 kB 🟢 -42.7 kB 🟢 -9.39 kB 🟢 -8.19 kB
assets/SubscriptionRequiredDialogContentUnified-DEHy5Em-.js (new) 42.7 kB 🔴 +42.7 kB 🔴 +9.39 kB 🔴 +8.2 kB
assets/LayerEditorContent-3ABfftbt.js (removed) 42.5 kB 🟢 -42.5 kB 🟢 -9.62 kB 🟢 -8.43 kB
assets/LayerEditorContent-uhhikP5q.js (new) 42.5 kB 🔴 +42.5 kB 🔴 +9.62 kB 🔴 +8.41 kB
assets/WidgetBoundingBoxes-44E9A9sS.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +9.16 kB 🔴 +8.12 kB
assets/WidgetBoundingBoxes-DS-jaMUw.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -9.16 kB 🟢 -8.12 kB
assets/WidgetPainter-BNkbsdMT.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.88 kB 🔴 +6.97 kB
assets/WidgetPainter-DswZ6DRu.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.88 kB 🟢 -6.97 kB
assets/Load3dViewerContent-B6thHR_N.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.28 kB 🟢 -5.45 kB
assets/Load3dViewerContent-rXEN23f0.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.28 kB 🔴 +5.45 kB
assets/SubscriptionRequiredDialogContent-BtASEklN.js (removed) 26.9 kB 🟢 -26.9 kB 🟢 -6.36 kB 🟢 -5.6 kB
assets/SubscriptionRequiredDialogContent-CwtP0zo_.js (new) 26.9 kB 🔴 +26.9 kB 🔴 +6.36 kB 🔴 +5.6 kB
assets/SubscriptionRequiredDialogContentWorkspace-DEdEa9xW.js (new) 25.1 kB 🔴 +25.1 kB 🔴 +5.81 kB 🔴 +5.11 kB
assets/SubscriptionRequiredDialogContentWorkspace-OMP9HY-G.js (removed) 25.1 kB 🟢 -25.1 kB 🟢 -5.81 kB 🟢 -5.11 kB
assets/load3d-CFnG5l5V.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.41 kB 🟢 -4.68 kB
assets/load3d-MV6jpoek.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.41 kB 🔴 +4.68 kB
assets/SignInContent-BwH5NPVS.js (new) 20.6 kB 🔴 +20.6 kB 🔴 +5.18 kB 🔴 +4.53 kB
assets/SignInContent-Cg1wifIB.js (removed) 20.6 kB 🟢 -20.6 kB 🟢 -5.18 kB 🟢 -4.53 kB
assets/WidgetRecordAudio-DFM34-V1.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.6 kB 🔴 +4.1 kB
assets/WidgetRecordAudio-Dl7dDEFn.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.6 kB 🟢 -4.11 kB
assets/CurrentUserPopoverWorkspace-C6--ases.js (removed) 15.7 kB 🟢 -15.7 kB 🟢 -3.83 kB 🟢 -3.37 kB
assets/CurrentUserPopoverWorkspace-CSHAxMyZ.js (new) 15.7 kB 🔴 +15.7 kB 🔴 +3.83 kB 🔴 +3.38 kB
assets/WidgetInputNumber-B3Hd88vy.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.63 kB 🟢 -3.21 kB
assets/WidgetInputNumber-BJJQAR1L.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.63 kB 🔴 +3.22 kB
assets/WidgetRange-3Urz7Ofd.js (removed) 13.7 kB 🟢 -13.7 kB 🟢 -3.55 kB 🟢 -3.13 kB
assets/WidgetRange-mAEqLP_V.js (new) 13.7 kB 🔴 +13.7 kB 🔴 +3.55 kB 🔴 +3.13 kB
assets/WaveAudioPlayer-BNQLyxxx.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.46 kB 🟢 -3.04 kB
assets/WaveAudioPlayer-UpKXfkU2.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.46 kB 🔴 +3.05 kB
assets/WidgetCurve-BPDuEB9e.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.47 kB 🟢 -3.14 kB
assets/WidgetCurve-BsEspgCu.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.48 kB 🔴 +3.15 kB
assets/TeamWorkspacesDialogContent-ByQtZdW7.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -2.97 kB 🟢 -2.63 kB
assets/TeamWorkspacesDialogContent-DCxjxn_t.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +2.97 kB 🔴 +2.63 kB
assets/onboardingCloudRoutes-B6ndTq7b.js (removed) 9.49 kB 🟢 -9.49 kB 🟢 -2.86 kB 🟢 -2.45 kB
assets/onboardingCloudRoutes-DymncFUp.js (new) 9.49 kB 🔴 +9.49 kB 🔴 +2.86 kB 🔴 +2.44 kB
assets/Load3DConfiguration-BmmtrT-M.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/Load3DConfiguration-F12WqmgH.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -2.61 kB 🟢 -2.31 kB
assets/WidgetImageCrop-0kfYWfNl.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.65 kB 🟢 -2.34 kB
assets/WidgetImageCrop-DA9Zc32l.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.66 kB 🔴 +2.34 kB
assets/SetMemberCreditLimitDialogContent-CgnTqnBN.js (new) 8.47 kB 🔴 +8.47 kB 🔴 +2.34 kB 🔴 +2.06 kB
assets/SetMemberCreditLimitDialogContent-CpGkEV5d.js (removed) 8.47 kB 🟢 -8.47 kB 🟢 -2.34 kB 🟢 -2.06 kB
assets/nodeTemplates-DgcKg54W.js (removed) 8.32 kB 🟢 -8.32 kB 🟢 -2.85 kB 🟢 -2.51 kB
assets/nodeTemplates-DwKdAqRI.js (new) 8.32 kB 🔴 +8.32 kB 🔴 +2.85 kB 🔴 +2.51 kB
assets/WorkspaceSwitcherPopover-BO_8LEeN.js (removed) 8.01 kB 🟢 -8.01 kB 🟢 -2.38 kB 🟢 -2.12 kB
assets/WorkspaceSwitcherPopover-Dw22zyLJ.js (new) 8.01 kB 🔴 +8.01 kB 🔴 +2.38 kB 🔴 +2.12 kB
assets/NightlySurveyController-BFMjVKR1.js (new) 7.5 kB 🔴 +7.5 kB 🔴 +2.55 kB 🔴 +2.25 kB
assets/NightlySurveyController-COnS5CdE.js (removed) 7.5 kB 🟢 -7.5 kB 🟢 -2.55 kB 🟢 -2.25 kB
assets/CloudRunButtonWrapper-8jl3C-nT.js (removed) 7.29 kB 🟢 -7.29 kB 🟢 -2.29 kB 🟢 -2.01 kB
assets/CloudRunButtonWrapper-BTuit4c2.js (new) 7.29 kB 🔴 +7.29 kB 🔴 +2.29 kB 🔴 +2.01 kB
assets/WidgetWithControl-BLbECty2.js (removed) 6.51 kB 🟢 -6.51 kB 🟢 -2.67 kB 🟢 -2.33 kB
assets/WidgetWithControl-CGdCqgjy.js (new) 6.51 kB 🔴 +6.51 kB 🔴 +2.67 kB 🔴 +2.36 kB
assets/missingModelMetadata-C3psg8eC.js (new) 6.45 kB 🔴 +6.45 kB 🔴 +2.21 kB 🔴 +1.93 kB
assets/missingModelMetadata-CsXjRkXS.js (removed) 6.45 kB 🟢 -6.45 kB 🟢 -2.21 kB 🟢 -1.93 kB
assets/CancelSubscriptionDialogContent-CuOeQVik.js (removed) 5.97 kB 🟢 -5.97 kB 🟢 -1.98 kB 🟢 -1.75 kB
assets/CancelSubscriptionDialogContent-DVyO9Xrv.js (new) 5.97 kB 🔴 +5.97 kB 🔴 +1.98 kB 🔴 +1.75 kB
assets/load3dPreviewExtensions-BFXhHqne.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/load3dPreviewExtensions-CAkLhRII.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -1.81 kB 🟢 -1.6 kB
assets/launchCancellationFlow-CFeVX-dO.js (new) 5.18 kB 🔴 +5.18 kB 🔴 +1.78 kB 🔴 +1.56 kB
assets/launchCancellationFlow-lS53RRNN.js (removed) 5.18 kB 🟢 -5.18 kB 🟢 -1.78 kB 🟢 -1.58 kB
assets/CreateWorkspaceDialogContent-BlnrYjid.js (new) 5.12 kB 🔴 +5.12 kB 🔴 +1.8 kB 🔴 +1.55 kB
assets/CreateWorkspaceDialogContent-DuVJIqAR.js (removed) 5.12 kB 🟢 -5.12 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/ChangeMemberRoleDialogContent-2e_lKszC.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.64 kB 🟢 -1.43 kB
assets/ChangeMemberRoleDialogContent-DcJCZWgE.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.64 kB 🔴 +1.43 kB
assets/InviteMemberDialogContent-Bd7MEkSm.js (new) 4.96 kB 🔴 +4.96 kB 🔴 +1.64 kB 🔴 +1.44 kB
assets/InviteMemberDialogContent-Dnoo-G4g.js (removed) 4.96 kB 🟢 -4.96 kB 🟢 -1.65 kB 🟢 -1.44 kB
assets/EditWorkspaceDialogContent-CpX1Vfor.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.76 kB 🔴 +1.52 kB
assets/EditWorkspaceDialogContent-DY4oZ3pn.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.76 kB 🟢 -1.52 kB
assets/WidgetTextarea-DYKPDnoR.js (removed) 4.83 kB 🟢 -4.83 kB 🟢 -1.88 kB 🟢 -1.64 kB
assets/WidgetTextarea-eswvgu06.js (new) 4.83 kB 🔴 +4.83 kB 🔴 +1.88 kB 🔴 +1.64 kB
assets/saveMesh-BIwYLN-S.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.52 kB 🔴 +1.34 kB
assets/saveMesh-DxfWb8GS.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.52 kB 🟢 -1.35 kB
assets/ValueControlPopover-BSYS4NC8.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.55 kB 🔴 +1.38 kB
assets/ValueControlPopover-HDeCqGol.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.55 kB 🟢 -1.38 kB
assets/DeleteWorkspaceDialogContent-BFWhf8y3.js (removed) 3.84 kB 🟢 -3.84 kB 🟢 -1.44 kB 🟢 -1.24 kB
assets/DeleteWorkspaceDialogContent-Cv8Dv8Yt.js (new) 3.84 kB 🔴 +3.84 kB 🔴 +1.44 kB 🔴 +1.24 kB
assets/RemoveMemberDialogContent--K9K4gU4.js (new) 3.76 kB 🔴 +3.76 kB 🔴 +1.39 kB 🔴 +1.2 kB
assets/RemoveMemberDialogContent-BaLjakQL.js (removed) 3.76 kB 🟢 -3.76 kB 🟢 -1.38 kB 🟢 -1.2 kB
assets/RevokeInviteDialogContent-0QTjhC1h.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.39 kB 🟢 -1.21 kB
assets/RevokeInviteDialogContent-DNURb3Iz.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.39 kB 🔴 +1.21 kB
assets/LeaveWorkspaceDialogContent-DH5ANKtz.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.39 kB 🔴 +1.2 kB
assets/LeaveWorkspaceDialogContent-Dw2lzciJ.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.38 kB 🟢 -1.19 kB
assets/InviteMemberUpsellDialogContent-B9TVFoQ_.js (new) 3.47 kB 🔴 +3.47 kB 🔴 +1.24 kB 🔴 +1.09 kB
assets/InviteMemberUpsellDialogContent-DJoNy8dK.js (removed) 3.47 kB 🟢 -3.47 kB 🟢 -1.24 kB 🟢 -1.09 kB
assets/workspaceCheckoutTelemetry-BHnMZX26.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.52 kB 🔴 +1.32 kB
assets/workspaceCheckoutTelemetry-Bru0_8Y6.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.52 kB 🟢 -1.32 kB
assets/GlobalToast-DOc896Q2.js (removed) 3.25 kB 🟢 -3.25 kB 🟢 -1.3 kB 🟢 -1.16 kB
assets/GlobalToast-IImMrGS1.js (new) 3.25 kB 🔴 +3.25 kB 🔴 +1.3 kB 🔴 +1.11 kB
assets/Media3DTop-BZFDkhbb.js (new) 3.21 kB 🔴 +3.21 kB 🔴 +1.26 kB 🔴 +1.11 kB
assets/Media3DTop-Cv4KhIDJ.js (removed) 3.21 kB 🟢 -3.21 kB 🟢 -1.26 kB 🟢 -1.11 kB
assets/load3dAdvanced-_WIw4pdE.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.09 kB 🔴 +957 B
assets/load3dAdvanced-BKBQmB9a.js (removed) 2.82 kB 🟢 -2.82 kB 🟢 -1.1 kB 🟢 -955 B
assets/SubscribeToRun-CCKkDASJ.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -1.03 kB 🟢 -907 B
assets/SubscribeToRun-CqVYTClq.js (new) 2.39 kB 🔴 +2.39 kB 🔴 +1.03 kB 🔴 +905 B
assets/MediaAudioTop-BHBhn7Zj.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +808 B 🔴 +672 B
assets/MediaAudioTop-CC-eigNu.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -808 B 🟢 -673 B
assets/cloudSessionCookie-Cvb0KK9M.js (new) 933 B 🔴 +933 B 🔴 +432 B 🔴 +378 B
assets/cloudSessionCookie-DSg1i5fR.js (removed) 933 B 🟢 -933 B 🟢 -433 B 🟢 -378 B
assets/cloudBadges-aeCaOP8U.js (new) 922 B 🔴 +922 B 🔴 +514 B 🔴 +441 B
assets/cloudBadges-bw1bzaEX.js (removed) 922 B 🟢 -922 B 🟢 -514 B 🟢 -436 B
assets/Load3DAdvanced-C2B0idS-.js (removed) 761 B 🟢 -761 B 🟢 -424 B 🟢 -359 B
assets/Load3DAdvanced-DiLO399P.js (new) 761 B 🔴 +761 B 🔴 +424 B 🔴 +360 B
assets/nightlyBadges-CP2qBGRF.js (removed) 411 B 🟢 -411 B 🟢 -273 B 🟢 -267 B
assets/nightlyBadges-CpjgoVfo.js (new) 411 B 🔴 +411 B 🔴 +273 B 🔴 +231 B
assets/Load3dViewerContent-BM7NDzih.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +91 B
assets/Load3dViewerContent-C9RsApCU.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -93 B
assets/missingModelMetadata-9WMxfJDB.js (removed) 125 B 🟢 -125 B 🟢 -103 B 🟢 -103 B
assets/missingModelMetadata-D4a91x4e.js (new) 125 B 🔴 +125 B 🔴 +103 B 🔴 +103 B
assets/Load3DAdvanced-BFZJz1ln.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +90 B
assets/Load3DAdvanced-CedtGblq.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -87 B
assets/WidgetLegacy-Bpz2kgPA.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +94 B
assets/WidgetLegacy-nw_0ttC7.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -103 B
assets/workflowDraftStoreV2-AaRgprou.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +108 B
assets/workflowDraftStoreV2-cDmz0_8o.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -109 B
assets/Load3D-BnLoRl7W.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -82 B
assets/Load3D-C7jpSwkv.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +80 B
assets/changeTracker-B-qVW7wr.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +86 B
assets/changeTracker-CZKGzCPR.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -85 B

Status: 66 added / 66 removed / 219 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.7 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 71.9 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.9 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.6 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 71.2 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.3 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.5 MB heap
legacy-node-drag: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.4 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.1 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 70.9 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 77.5 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.9 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 141ms TBT · 84.9 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 73.0 MB heap
vue-large-graph-idle: · 57.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 168.9 MB heap
vue-large-graph-pan: · 57.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 69ms TBT · 184.9 MB heap
workflow-execution: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.1 MB heap

⚠️ 4 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-idle: task duration 460ms 458ms -0% ⚠️ z=2.0
large-graph-pan: task duration 961ms 1170ms +22% ⚠️ z=2.0
subgraph-idle: task duration 387ms 468ms +21% ⚠️ z=3.1
workflow-execution: event listeners 49 99 +102% ⚠️ z=10.8
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 -1%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 6ms 8ms +29% z=-3.5
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 8 8 +0% z=-5.6
canvas-idle: task duration 460ms 458ms -0% ⚠️ z=2.0
canvas-idle: script duration 7ms 6ms -5% z=-8.5
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 61.2 MB 56.7 MB -7%
canvas-idle: DOM nodes -282 -283 +0% z=-239.6
canvas-idle: event listeners -183 -166 -9% z=-37.5
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 3ms 3ms +9% z=-0.9
canvas-mouse-sweep: style recalc duration 28ms 34ms +24% z=-2.7
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 72 73 +1% z=-2.6
canvas-mouse-sweep: task duration 696ms 804ms +15% z=-1.1
canvas-mouse-sweep: script duration 85ms 107ms +25% z=-4.5
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 66.2 MB 71.9 MB +9%
canvas-mouse-sweep: DOM nodes -281 -282 +0% z=-133.1
canvas-mouse-sweep: event listeners -151 -168 +11% z=-42.3
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 0ms 1ms +10% z=-2.6
canvas-zoom-sweep: style recalc duration 12ms 16ms +26% z=-2.3
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 30 30 +0% z=-2.8
canvas-zoom-sweep: task duration 279ms 343ms +23% z=0.7
canvas-zoom-sweep: script duration 8ms 9ms +11% z=-6.1
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 62.7 MB 61.9 MB -1%
canvas-zoom-sweep: DOM nodes 78 76 -3% z=-4.1
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.6
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 7ms 8ms +18% z=-2.5
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 11 +0% z=-4.2
dom-widget-clipping: task duration 304ms 345ms +14% z=-1.2
dom-widget-clipping: script duration 42ms 56ms +34% z=-3.7
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 69.8 MB 68.6 MB -2%
dom-widget-clipping: DOM nodes 18 18 +0% z=-2.9
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 8ms 8ms +8% z=-3.9
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 8 -20% z=-11.5
large-graph-idle: task duration 524ms 599ms +14% z=1.0
large-graph-idle: script duration 15ms 15ms -4% z=-8.4
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 71.9 MB 71.2 MB -1%
large-graph-idle: DOM nodes -267 -272 +2% z=-327.7
large-graph-idle: event listeners -147 -149 +1% z=-28.7
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 13ms 14ms +4% z=-4.1
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 68 -1% z=-2.4
large-graph-pan: task duration 961ms 1170ms +22% ⚠️ z=2.0
large-graph-pan: script duration 269ms 332ms +23% z=-3.9
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 71.2 MB 66.3 MB -7%
large-graph-pan: DOM nodes -271 -281 +4% z=-181.8
large-graph-pan: event listeners -147 -150 +2% z=-187.1
large-graph-zoom: avg frame time 17ms 17ms -0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 7ms 7ms +0%
large-graph-zoom: style recalc duration 13ms 13ms -3%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 64 -4%
large-graph-zoom: task duration 1157ms 1324ms +14%
large-graph-zoom: script duration 328ms 375ms +14%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 73.7 MB 69.5 MB -6%
large-graph-zoom: DOM nodes -274 -134 -51%
large-graph-zoom: event listeners -145 -69 -53%
legacy-node-drag: avg frame time 17ms 17ms +0%
legacy-node-drag: p95 frame time 17ms 17ms +0%
legacy-node-drag: layout duration 0ms 0ms +0%
legacy-node-drag: style recalc duration 11ms 12ms +12%
legacy-node-drag: layout count 0 0 +0%
legacy-node-drag: style recalc count 48 46 -4%
legacy-node-drag: task duration 1133ms 1463ms +29%
legacy-node-drag: script duration 372ms 467ms +26%
legacy-node-drag: TBT 0ms 0ms +0%
legacy-node-drag: heap used 66.6 MB 61.4 MB -8%
legacy-node-drag: DOM nodes 16 -248 -1650%
legacy-node-drag: event listeners 186 29 -84%
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 6ms 6ms +13% z=-3.9
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 8 -6% z=-3.0
minimap-idle: task duration 489ms 588ms +20% z=1.3
minimap-idle: script duration 14ms 15ms +8% z=-8.4
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 70.6 MB 68.1 MB -4%
minimap-idle: DOM nodes -276 -282 +2% z=-220.2
minimap-idle: event listeners -149 -148 -1% z=-231.1
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 9ms 10ms +13% z=-3.2
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 46 46 +0% z=-3.3
subgraph-dom-widget-clipping: task duration 307ms 388ms +27% z=0.6
subgraph-dom-widget-clipping: script duration 93ms 124ms +33% z=-0.7
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 70.8 MB 70.9 MB +0%
subgraph-dom-widget-clipping: DOM nodes 18 18 +0% z=-3.7
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 6ms 9ms +42% z=-2.0
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 10 -5% z=-2.1
subgraph-idle: task duration 387ms 468ms +21% ⚠️ z=3.1
subgraph-idle: script duration 5ms 6ms +6% z=-5.4
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 55.1 MB 77.5 MB +41%
subgraph-idle: DOM nodes -280 -280 +0% z=-201.9
subgraph-idle: event listeners -151 -151 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.8
subgraph-mouse-sweep: p95 frame time 17ms 17ms -1%
subgraph-mouse-sweep: layout duration 3ms 4ms +30% z=-1.0
subgraph-mouse-sweep: style recalc duration 27ms 34ms +25% z=-2.5
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 75 75 -1% z=-2.9
subgraph-mouse-sweep: task duration 645ms 764ms +18% z=-0.0
subgraph-mouse-sweep: script duration 68ms 84ms +25% z=-2.5
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 56.6 MB 64.9 MB +15%
subgraph-mouse-sweep: DOM nodes -280 -283 +1% z=-156.4
subgraph-mouse-sweep: event listeners -151 -151 +0% 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 11ms 15ms +34%
subgraph-transition-enter: style recalc duration 26ms 32ms +19%
subgraph-transition-enter: layout count 15 13 -13%
subgraph-transition-enter: style recalc count 20 18 -10%
subgraph-transition-enter: task duration 778ms 890ms +14%
subgraph-transition-enter: script duration 14ms 16ms +10%
subgraph-transition-enter: TBT 101ms 141ms +40%
subgraph-transition-enter: heap used 95.3 MB 84.9 MB -11%
subgraph-transition-enter: DOM nodes 13673 13673 +0%
subgraph-transition-enter: event listeners 2373 2373 +0%
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 37ms 35ms -4%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 249 249 +0%
viewport-pan-sweep: task duration 3369ms 4021ms +19%
viewport-pan-sweep: script duration 828ms 1011ms +22%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 75.1 MB 73.0 MB -3%
viewport-pan-sweep: DOM nodes -272 -261 -4%
viewport-pan-sweep: event listeners -133 -147 +11%
vue-large-graph-idle: avg frame time 17ms 17ms +2%
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 13816ms 16185ms +17%
vue-large-graph-idle: script duration 93ms 107ms +14%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 169.8 MB 168.9 MB -0%
vue-large-graph-idle: DOM nodes -8312 -8312 +0%
vue-large-graph-idle: event listeners -16391 -16375 -0%
vue-large-graph-pan: avg frame time 17ms 18ms +2%
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 15ms 20ms +32%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 144 174 +20%
vue-large-graph-pan: task duration 16787ms 19689ms +17%
vue-large-graph-pan: script duration 353ms 440ms +24%
vue-large-graph-pan: TBT 49ms 69ms +40%
vue-large-graph-pan: heap used 174.9 MB 184.9 MB +6%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16389 -16389 +0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms +0%
workflow-execution: layout duration 0ms 1ms +143% z=-3.2
workflow-execution: style recalc duration 10ms 21ms +108% z=-1.6
workflow-execution: layout count 2 3 +25% z=-4.5
workflow-execution: style recalc count 6 18 +200% z=0.1
workflow-execution: task duration 54ms 104ms +91% z=-1.8
workflow-execution: script duration 4ms 7ms +75% z=-7.5
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 62.4 MB 64.1 MB +3%
workflow-execution: DOM nodes 109 148 +35% z=-1.9
workflow-execution: event listeners 49 99 +102% ⚠️ z=10.8
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-23T08:54:22.609Z",
  "gitSha": "9431203af729f80f89d642a4ef8e9222b4482a9a",
  "branch": "perf/fix-dom-widgets-revival",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2039.9120000000153,
      "styleRecalcs": 7,
      "styleRecalcDurationMs": 6.891000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 532.083,
      "heapDeltaBytes": -5674388,
      "heapUsedBytes": 55369648,
      "domNodes": -285,
      "jsHeapTotalBytes": 4710400,
      "scriptDurationMs": 6.456999999999999,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2031.6740000000664,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.472999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 383.811,
      "heapDeltaBytes": 1751336,
      "heapUsedBytes": 63552264,
      "domNodes": -281,
      "jsHeapTotalBytes": 4448256,
      "scriptDurationMs": 6.349,
      "eventListeners": -181,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1753.6640000000148,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 31.9,
      "layouts": 12,
      "layoutDurationMs": 3.347,
      "taskDurationMs": 798.972,
      "heapDeltaBytes": 18477688,
      "heapUsedBytes": 81055888,
      "domNodes": -283,
      "jsHeapTotalBytes": 5234688,
      "scriptDurationMs": 105.30799999999999,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1872.9130000000396,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 36.473,
      "layouts": 12,
      "layoutDurationMs": 3.5309999999999993,
      "taskDurationMs": 808.13,
      "heapDeltaBytes": 7197320,
      "heapUsedBytes": 69705292,
      "domNodes": -281,
      "jsHeapTotalBytes": 4710400,
      "scriptDurationMs": 107.704,
      "eventListeners": -183,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1747.2629999999754,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 16.358,
      "layouts": 6,
      "layoutDurationMs": 0.5409999999999998,
      "taskDurationMs": 351.824,
      "heapDeltaBytes": 2760036,
      "heapUsedBytes": 63783472,
      "domNodes": 76,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 8.875000000000002,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1666.4779999999837,
      "styleRecalcs": 29,
      "styleRecalcDurationMs": 14.750000000000002,
      "layouts": 6,
      "layoutDurationMs": 0.5139999999999999,
      "taskDurationMs": 334.02,
      "heapDeltaBytes": 3266896,
      "heapUsedBytes": 66004408,
      "domNodes": 76,
      "jsHeapTotalBytes": 5242880,
      "scriptDurationMs": 8.866000000000003,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 572.0770000000357,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 8.432999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 350.48900000000003,
      "heapDeltaBytes": 9767156,
      "heapUsedBytes": 71876444,
      "domNodes": 18,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 57.71799999999999,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 557.1959999999763,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.366999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 340.00399999999996,
      "heapDeltaBytes": 9420068,
      "heapUsedBytes": 71895188,
      "domNodes": 18,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 53.731,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2069.627999999966,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.214000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 613.3360000000001,
      "heapDeltaBytes": 718828,
      "heapUsedBytes": 77016152,
      "domNodes": -265,
      "jsHeapTotalBytes": -2101248,
      "scriptDurationMs": 16.105,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2039.034000000015,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.127000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 583.9609999999999,
      "heapDeltaBytes": -4036392,
      "heapUsedBytes": 72306976,
      "domNodes": -278,
      "jsHeapTotalBytes": -4096,
      "scriptDurationMs": 12.941,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2188.725999999974,
      "styleRecalcs": 67,
      "styleRecalcDurationMs": 12.983000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1177.98,
      "heapDeltaBytes": -7787368,
      "heapUsedBytes": 69604352,
      "domNodes": -283,
      "jsHeapTotalBytes": -303104,
      "scriptDurationMs": 332.432,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2149.2250000000013,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 15.107,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1162.306,
      "heapDeltaBytes": -7826752,
      "heapUsedBytes": 69499788,
      "domNodes": -279,
      "jsHeapTotalBytes": -565248,
      "scriptDurationMs": 330.695,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3113.8240000000224,
      "styleRecalcs": 63,
      "styleRecalcDurationMs": 12.34,
      "layouts": 60,
      "layoutDurationMs": 7.083000000000001,
      "taskDurationMs": 1298.143,
      "heapDeltaBytes": -8539456,
      "heapUsedBytes": 69898156,
      "domNodes": 8,
      "jsHeapTotalBytes": 6066176,
      "scriptDurationMs": 374.979,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666636,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3107.6120000000174,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 13.258,
      "layouts": 60,
      "layoutDurationMs": 6.749,
      "taskDurationMs": 1350.208,
      "heapDeltaBytes": -2631076,
      "heapUsedBytes": 75949472,
      "domNodes": -275,
      "jsHeapTotalBytes": -1576960,
      "scriptDurationMs": 374.191,
      "eventListeners": -145,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "legacy-node-drag",
      "durationMs": 2323.601999999994,
      "styleRecalcs": 45,
      "styleRecalcDurationMs": 9.270999999999997,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1479.011,
      "heapDeltaBytes": -15206524,
      "heapUsedBytes": 64757588,
      "domNodes": -251,
      "jsHeapTotalBytes": -4096,
      "scriptDurationMs": 468.97799999999995,
      "eventListeners": 27,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "legacy-node-drag",
      "durationMs": 2299.705000000017,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 14.708000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1446.8790000000001,
      "heapDeltaBytes": -20474072,
      "heapUsedBytes": 64079060,
      "domNodes": -245,
      "jsHeapTotalBytes": 6025216,
      "scriptDurationMs": 464.285,
      "eventListeners": 31,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2017.601999999954,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.067,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 584.475,
      "heapDeltaBytes": -9599452,
      "heapUsedBytes": 68686088,
      "domNodes": -284,
      "jsHeapTotalBytes": -528384,
      "scriptDurationMs": 14.325000000000001,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "minimap-idle",
      "durationMs": 2053.9150000000745,
      "styleRecalcs": 6,
      "styleRecalcDurationMs": 5.635000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 591.0549999999998,
      "heapDeltaBytes": -8494288,
      "heapUsedBytes": 74175216,
      "domNodes": -280,
      "jsHeapTotalBytes": 3928064,
      "scriptDurationMs": 15.354999999999993,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 560.8780000000024,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 10.188999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 374.77400000000006,
      "heapDeltaBytes": 11455464,
      "heapUsedBytes": 74270808,
      "domNodes": 18,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 115.43900000000001,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 618.4700000000021,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 9.254000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 402.15399999999994,
      "heapDeltaBytes": 11952252,
      "heapUsedBytes": 74423856,
      "domNodes": 18,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 132.145,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2005.8439999999678,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.802999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 463.732,
      "heapDeltaBytes": 18395688,
      "heapUsedBytes": 81181064,
      "domNodes": -280,
      "jsHeapTotalBytes": 4448256,
      "scriptDurationMs": 5.771000000000002,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2021.9909999999572,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.933000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 471.93100000000004,
      "heapDeltaBytes": 18512516,
      "heapUsedBytes": 81327312,
      "domNodes": -280,
      "jsHeapTotalBytes": 4710400,
      "scriptDurationMs": 5.878999999999999,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1691.2110000000098,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 33.419000000000004,
      "layouts": 16,
      "layoutDurationMs": 4.077000000000001,
      "taskDurationMs": 753.3539999999999,
      "heapDeltaBytes": 17839024,
      "heapUsedBytes": 80492264,
      "domNodes": -283,
      "jsHeapTotalBytes": 4710400,
      "scriptDurationMs": 83.30600000000001,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1707.5659999999289,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 35.006,
      "layouts": 16,
      "layoutDurationMs": 4.685,
      "taskDurationMs": 774.726,
      "heapDeltaBytes": -6818708,
      "heapUsedBytes": 55626548,
      "domNodes": -282,
      "jsHeapTotalBytes": 5234688,
      "scriptDurationMs": 85.21,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1383.7109999999484,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 31.502000000000002,
      "layouts": 13,
      "layoutDurationMs": 14.727,
      "taskDurationMs": 889.875,
      "heapDeltaBytes": -7736860,
      "heapUsedBytes": 88985716,
      "domNodes": 13673,
      "jsHeapTotalBytes": 13369344,
      "scriptDurationMs": 15.547000000000006,
      "eventListeners": 2373,
      "totalBlockingTimeMs": 141,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8225.696000000027,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 35.477,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4030.3179999999993,
      "heapDeltaBytes": -6724912,
      "heapUsedBytes": 69918816,
      "domNodes": -283,
      "jsHeapTotalBytes": 4939776,
      "scriptDurationMs": 1019.0360000000001,
      "eventListeners": -163,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8196.198999999979,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 35.346,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4012.6400000000003,
      "heapDeltaBytes": 7063136,
      "heapUsedBytes": 83224476,
      "domNodes": -239,
      "jsHeapTotalBytes": -827392,
      "scriptDurationMs": 1002.3729999999999,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 16720.534000000043,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16134.619,
      "heapDeltaBytes": -34795064,
      "heapUsedBytes": 177280188,
      "domNodes": -8312,
      "jsHeapTotalBytes": -15552512,
      "scriptDurationMs": 111.28600000000002,
      "eventListeners": -16389,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 16897.94500000005,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 16235.047999999999,
      "heapDeltaBytes": -35128868,
      "heapUsedBytes": 177024860,
      "domNodes": -8312,
      "jsHeapTotalBytes": -16556032,
      "scriptDurationMs": 101.929,
      "eventListeners": -16361,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 19861.977000000024,
      "styleRecalcs": 168,
      "styleRecalcDurationMs": 15.982999999999969,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 19461.367,
      "heapDeltaBytes": -26677816,
      "heapUsedBytes": 193772676,
      "domNodes": -8312,
      "jsHeapTotalBytes": -24584192,
      "scriptDurationMs": 425.74,
      "eventListeners": -16391,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.780000000000047,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 20525.571000000014,
      "styleRecalcs": 179,
      "styleRecalcDurationMs": 24.351999999999986,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 19915.955,
      "heapDeltaBytes": -24503516,
      "heapUsedBytes": 194073956,
      "domNodes": -8312,
      "jsHeapTotalBytes": -21458944,
      "scriptDurationMs": 453.847,
      "eventListeners": -16387,
      "totalBlockingTimeMs": 137,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 469.32299999991756,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 21.198999999999998,
      "layouts": 2,
      "layoutDurationMs": 1.0080000000000002,
      "taskDurationMs": 106.93300000000002,
      "heapDeltaBytes": 4986100,
      "heapUsedBytes": 67149580,
      "domNodes": 150,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 6.696000000000002,
      "eventListeners": 99,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 480.1800000000185,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 20.365000000000002,
      "layouts": 3,
      "layoutDurationMs": 1.1540000000000001,
      "taskDurationMs": 100.304,
      "heapDeltaBytes": 4966952,
      "heapUsedBytes": 67363268,
      "domNodes": 145,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 7.012,
      "eventListeners": 99,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    }
  ]
}

@github-actions github-actions Bot added the risk:R2 PR risk grade (advisory shadow check; grader-owned) label Aug 23, 2026
@christian-byrne
christian-byrne removed the request for review from AustinMroz August 23, 2026 05:48
@datadog-official

This comment has been minimized.

coderabbitai[bot]
coderabbitai Bot previously approved these changes Aug 23, 2026
Restore createTestingPinia/setActivePinia/beforeEach imports in
DomWidgets.test.ts: main's vitest mock-cleanup (#14836) removed them
from its copy, and the auto-merge combined main's import block with
this branch's new perf-invariant tests that use them, breaking the
CI merge-commit typecheck (TS2304).
@codecov

codecov Bot commented Aug 23, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 93.93939% with 4 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
src/components/graph/DomWidgets.vue 94.33% 3 Missing ⚠️
src/components/graph/widgets/DomWidget.vue 92.30% 1 Missing ⚠️
@@            Coverage Diff             @@
##             main   #15684      +/-   ##
==========================================
+ Coverage   79.39%   81.88%   +2.48%     
==========================================
  Files        2218     1888     -330     
  Lines      112288   107338    -4950     
  Branches    32481    31318    -1163     
==========================================
- Hits        89155    87893    -1262     
+ Misses      22656    19110    -3546     
+ Partials      477      335     -142     
Flag Coverage Δ
e2e 67.41% <97.87%> (+0.02%) ⬆️
unit 73.55% <90.62%> (+<0.01%) ⬆️
website-unit ?

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

Files with missing lines Coverage Δ
src/stores/domWidgetStore.ts 79.16% <ø> (ø)
src/components/graph/widgets/DomWidget.vue 89.58% <92.30%> (+0.04%) ⬆️
src/components/graph/DomWidgets.vue 95.12% <94.33%> (-2.03%) ⬇️

... and 338 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
christian-byrne force-pushed the perf/fix-dom-widgets-revival branch from ae0b310 to e3440af Compare August 23, 2026 08:41
@christian-byrne
christian-byrne requested review from DrJKL and removed request for DrJKL August 23, 2026 08:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

risk:R2 PR risk grade (advisory shadow check; grader-owned) size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants