Skip to content

fix: prevent escape from exiting subgraph while a context menu is open#12308

Draft
christian-byrne wants to merge 3 commits into
mainfrom
glary/escape-key-raised-surfaces
Draft

fix: prevent escape from exiting subgraph while a context menu is open#12308
christian-byrne wants to merge 3 commits into
mainfrom
glary/escape-key-raised-surfaces

Conversation

@christian-byrne
Copy link
Copy Markdown
Contributor

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

PR Created by the Glary-Bot Agent


Summary

Pressing Escape on a right-click context menu while inside a subgraph used to fire the global Comfy.Graph.ExitSubgraph keybinding, exiting the subgraph while leaving the menu open. The keybinding service only suppressed Escape when a Pinia dialog was on the stack, so other raised surfaces (LiteGraph context menus, PrimeVue popovers) leaked the event to the window-level handler.

This PR encodes the UX axiom — standard keybindings are suppressed whenever any raised surface (context menu, popover, or top-level modal) is open — as a centralized reactive registry that the keybinding service consults as its single source of truth.

Changes

  • New useRaisedSurfaceStore (src/platform/keybindings/raisedSurfaceStore.ts) — a Pinia store that tracks open raised surfaces by id. Sibling to the existing dialogStore.
  • New useRaisedSurface(kind, isOpen) composable — one-line opt-in for any surface. Releases the entry both when isOpen flips to false and when the owning Vue scope is disposed.
  • keybindingService.ts consults raisedSurfaceStore.isAnyOpen alongside the existing dialogStore.dialogStack check.
  • ContextMenu.ts (LiteGraph) now closes itself on Escape (mirroring its existing outside-pointerdown handler) and dispatches litegraph:contextmenu document events on open/close. No monkey patching — the registration lives directly in litegraph.
  • raisedSurfaceLiteGraphBridge.ts subscribes to those events and updates the store. Installed once from GraphCanvas.vue next to the existing useContextMenuTranslation() install.
  • NodeContextMenu.vue registers via useRaisedSurface('context-menu', isOpen) — one line.

The legacy LiteGraph menu's Escape handler also calls e.stopPropagation(), consistent with the existing stopEscapeToDocument pattern used by SingleSelect and MultiSelect. This keeps the bubble-phase keybindingService consultation race-free without preempting other surfaces' Escape handlers via capture-phase listening.

Verification

  • New unit tests: raisedSurfaceStore.test.ts (7), ContextMenu.test.ts (3), plus 2 new regression cases in keybindingService.escape.test.ts.
  • All 113 keybinding + litegraph context-menu tests pass.
  • pnpm typecheck, pnpm lint, pnpm format:check, pnpm knip clean (3 pre-existing lint warnings, 1 pre-existing knip tag, all unrelated).
  • Manual: opened a LiteGraph context menu via dev build, pressed Escape — menu closes, active graph unchanged, event.defaultPrevented is true.

Follow-ups (out of scope for this PR)

  1. Migrate useDialogStore.dialogStack to register itself in raisedSurfaceStore as kind: 'modal' so there's a single source of truth.
  2. Adopt useRaisedSurface('popover', isOpen) in SingleSelect/MultiSelect (and other Reka popovers) so their existing stopEscapeToDocument calls can eventually be removed.
  3. Replace ad-hoc precedents like the ghost-placement e.stopPropagation() at LGraphCanvas.ts:3727.

Screenshots

Context menu open at canvas right-click position

After pressing Escape: menu closed, no subgraph exit

┆Issue is synchronized with this Notion page by Unito

Pressing Escape while a right-click context menu is open inside a
subgraph used to fire the global Comfy.Graph.ExitSubgraph keybinding,
exiting the subgraph while leaving the menu open. The keybinding service
only suppressed Escape when a Pinia dialog was open, so other raised
surfaces leaked the event to window-level handlers.

Introduce a raisedSurfaceStore that tracks open popovers, context menus,
and top-level modals as a single source of truth, and consult it from
the keybinding service alongside the existing dialog check. The legacy
LiteGraph ContextMenu now closes itself on Escape (mirroring its
existing outside-pointerdown handler) and reports open/close lifecycle
via document events so the store stays in sync without monkey patches.
NodeContextMenu registers itself via the new useRaisedSurface composable.

Fixes the bug demonstrated in the attached screencast.
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 16, 2026

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 091e83cb-650c-48f1-99df-4a82454b7c7c

📥 Commits

Reviewing files that changed from the base of the PR and between 1e381cc and 7cfaeb3.

📒 Files selected for processing (1)
  • src/lib/litegraph/src/ContextMenu.ts
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/lib/litegraph/src/ContextMenu.ts

📝 Walkthrough

Walkthrough

Adds a raised-surface Pinia store and composable, ContextMenu ownerDocument-aware lifecycle and Escape handling with open/close events, a LiteGraph bridge forwarding those events to the store, component wiring to register context menus, and keybinding checks to suppress Escape when any raised surface is open.

Changes

Raised Surface Keybinding Suppression

Layer / File(s) Summary
Raised surface store and composable
src/platform/keybindings/raisedSurfaceStore.ts, src/platform/keybindings/raisedSurfaceStore.test.ts
New Pinia store and useRaisedSurface composable track open raised surfaces (context menus, popovers, modals) by kind with unique symbol IDs. Store exposes isAnyOpen computed and open/close methods; composable watches a reactive boolean and auto-registers/unregisters surfaces. Tests verify state transitions, concurrent surfaces, and lifecycle cleanup.
ContextMenu lifecycle and ownerDocument handling
src/lib/litegraph/src/ContextMenu.ts, src/lib/litegraph/src/ContextMenu.test.ts
ContextMenu records ownerDocument, creates roots and listeners on that document, installs an abortable keydown handler closing on Escape (no modifiers), and dispatches litegraph:contextmenu CustomEvents with type: 'open'/'close' for top-level menus. Tests verify open/close events and that submenus emit no lifecycle events.
LiteGraph context menu bridge
src/platform/keybindings/raisedSurfaceLiteGraphBridge.ts
New useLiteGraphContextMenuTracking() hook listens for litegraph:contextmenu events, maps menu objects to symbol ids, calls store.open('context-menu') on open and store.close(id) on close, and cleans up listener and remaining ids on scope dispose.
Keybinding service raised surface check
src/platform/keybindings/keybindingService.ts, src/platform/keybindings/keybindingService.escape.test.ts
Keybinding service initializes useRaisedSurfaceStore and adds raisedSurfaceStore.isAnyOpen to the early-return condition to prevent Escape execution when surfaces are open. Tests assert Escape is suppressed while a raised surface is open and resumes after closing.
Component registration with raised surfaces
src/components/graph/GraphCanvas.vue, src/components/graph/NodeContextMenu.vue
GraphCanvas calls useLiteGraphContextMenuTracking() during setup. NodeContextMenu imports useRaisedSurface and registers itself as 'context-menu' surface using its isOpen reactive state.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Suggested labels

size:M, core/1.44

Suggested reviewers

  • marawan206
  • pythongosssss

Poem

🐰 A rabbit hops through context menus bright,
Mapping opens, closing with Escape's light,
It guards keybinds while surfaces rise,
Tracks each menu with careful eyes,
Then leaves the UI calm and right.


Caution

Pre-merge checks failed

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

  • Ignore (reviewers only)

❌ Failed checks (1 error, 1 warning)

Check name Status Explanation Resolution
End-To-End Regression Coverage For Fixes ❌ Error PR title uses "fix" keyword, modifies 9 files under src/ with no browser_tests/ changes, and PR description lacks explanation for absence of e2e test. Add a Playwright regression test under browser_tests/ for the fix (verifying Escape closes context menu without exiting subgraph), or add explicit explanation in PR description of why e2e testing is not practical for this fix.
Docstring Coverage ⚠️ Warning Docstring coverage is 14.29% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately and concisely summarizes the main change: preventing Escape from exiting a subgraph when a context menu is open.
Description check ✅ Passed The description comprehensively covers all required template sections: a clear summary, detailed changes explaining the new store/composable/integrations, review focus through discussion of design decisions, and verification steps.
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.
Adr Compliance For Entity/Litegraph Changes ✅ Passed PR only modifies ContextMenu.ts (a UI component, not a graph entity) and its tests. No core entity classes or ADR 0003/0008 violations found.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch glary/escape-key-raised-surfaces

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

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 16, 2026

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 05/16/2026, 03:19:49 AM UTC

Links

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 16, 2026

🎭 Playwright: ❌ 1604 passed, 1 failed · 1 flaky

❌ Failed Tests

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

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 16, 2026

📦 Bundle: 5.36 MB gzip 🔴 +1.04 kB

Details

Summary

  • Raw size: 24.7 MB baseline 24.7 MB — 🔴 +2.72 kB
  • Gzip: 5.36 MB baseline 5.36 MB — 🔴 +1.04 kB
  • Brotli: 4.15 MB baseline 4.14 MB — 🔴 +739 B
  • Bundles: 268 current • 268 baseline • 118 added / 118 removed

Category Glance
Data & Services 🔴 +1.85 kB (3.16 MB) · Graph Workspace 🔴 +872 B (1.24 MB) · Vendor & Third-Party ⚪ 0 B (9.94 MB) · Other ⚪ 0 B (9.16 MB) · Panels & Settings ⚪ 0 B (527 kB) · Utilities & Hooks ⚪ 0 B (366 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-BzEfaJGJ.js (new) 26.1 kB 🔴 +26.1 kB 🔴 +8.76 kB 🔴 +7.55 kB
assets/index-CkgkNRXf.js (removed) 26.1 kB 🟢 -26.1 kB 🟢 -8.76 kB 🟢 -7.53 kB

Status: 1 added / 1 removed

Graph Workspace — 1.24 MB (baseline 1.24 MB) • 🔴 +872 B

Graph editor runtime, canvas, workflow orchestration

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

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-BHhoOG4P.js (new) 19.6 kB 🔴 +19.6 kB 🔴 +5.14 kB 🔴 +4.57 kB
assets/CloudSurveyView-Bo9__MAY.js (removed) 19.6 kB 🟢 -19.6 kB 🟢 -5.14 kB 🟢 -4.56 kB
assets/CloudLoginView-Bi9I6YXz.js (removed) 12.5 kB 🟢 -12.5 kB 🟢 -3.55 kB 🟢 -3.12 kB
assets/CloudLoginView-C19lWWNd.js (new) 12.5 kB 🔴 +12.5 kB 🔴 +3.55 kB 🔴 +3.13 kB
assets/CloudSignupView-Dic2xdzL.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.06 kB 🔴 +2.7 kB
assets/CloudSignupView-ZR5csnP4.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.05 kB 🟢 -2.7 kB
assets/UserCheckView-B9FByFM4.js (new) 9.07 kB 🔴 +9.07 kB 🔴 +2.34 kB 🔴 +2.05 kB
assets/UserCheckView-DQbAr4mn.js (removed) 9.07 kB 🟢 -9.07 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/CloudLayoutView-CtpvE6W5.js (new) 7.81 kB 🔴 +7.81 kB 🔴 +2.49 kB 🔴 +2.17 kB
assets/CloudLayoutView-QGe6cCAk.js (removed) 7.81 kB 🟢 -7.81 kB 🟢 -2.48 kB 🟢 -2.18 kB
assets/CloudForgotPasswordView-CBaei9xW.js (removed) 6.22 kB 🟢 -6.22 kB 🟢 -2.21 kB 🟢 -1.95 kB
assets/CloudForgotPasswordView-Cn-WYwpB.js (new) 6.22 kB 🔴 +6.22 kB 🔴 +2.22 kB 🔴 +1.96 kB
assets/CloudAuthTimeoutView-DEb3afO0.js (new) 5.58 kB 🔴 +5.58 kB 🔴 +2.05 kB 🔴 +1.81 kB
assets/CloudAuthTimeoutView-DywCyPRm.js (removed) 5.58 kB 🟢 -5.58 kB 🟢 -2.05 kB 🟢 -1.8 kB
assets/CloudSubscriptionRedirectView-BK8l-nhn.js (new) 5.36 kB 🔴 +5.36 kB 🔴 +2.03 kB 🔴 +1.8 kB
assets/CloudSubscriptionRedirectView-BtWYkg5n.js (removed) 5.36 kB 🟢 -5.36 kB 🟢 -2.03 kB 🟢 -1.81 kB
assets/UserSelectView-BthrqnbN.js (new) 4.7 kB 🔴 +4.7 kB 🔴 +1.75 kB 🔴 +1.55 kB
assets/UserSelectView-CkNUY6A_.js (removed) 4.7 kB 🟢 -4.7 kB 🟢 -1.75 kB 🟢 -1.55 kB

Status: 9 added / 9 removed / 2 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-CG2KY29x.js (removed) 47.5 kB 🟢 -47.5 kB 🟢 -9.87 kB 🟢 -8.75 kB
assets/KeybindingPanel-ChZgHKZI.js (new) 47.5 kB 🔴 +47.5 kB 🔴 +9.87 kB 🔴 +8.75 kB
assets/SecretsPanel-1YqIEP4P.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.73 kB 🟢 -5.06 kB
assets/SecretsPanel-Br0eKthH.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.73 kB 🔴 +5.05 kB
assets/LegacyCreditsPanel-CgYaWNiu.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -5.94 kB 🟢 -5.24 kB
assets/LegacyCreditsPanel-CUoNDpG0.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +5.95 kB 🔴 +5.25 kB
assets/SubscriptionPanel-BhPumGb-.js (new) 20.2 kB 🔴 +20.2 kB 🔴 +5.18 kB 🔴 +4.54 kB
assets/SubscriptionPanel-COrS3r9k.js (removed) 20.2 kB 🟢 -20.2 kB 🟢 -5.19 kB 🟢 -4.55 kB
assets/AboutPanel-Ab6UCN2k.js (new) 12 kB 🔴 +12 kB 🔴 +3.33 kB 🔴 +3 kB
assets/AboutPanel-CFYuZ6jR.js (removed) 12 kB 🟢 -12 kB 🟢 -3.33 kB 🟢 -2.99 kB
assets/ExtensionPanel-BHPNU4Wt.js (removed) 10.1 kB 🟢 -10.1 kB 🟢 -2.95 kB 🟢 -2.62 kB
assets/ExtensionPanel-DDGm-joz.js (new) 10.1 kB 🔴 +10.1 kB 🔴 +2.95 kB 🔴 +2.62 kB
assets/ServerConfigPanel-0rO12ehA.js (new) 7.13 kB 🔴 +7.13 kB 🔴 +2.4 kB 🔴 +2.13 kB
assets/ServerConfigPanel-D8k3wcWi.js (removed) 7.13 kB 🟢 -7.13 kB 🟢 -2.39 kB 🟢 -2.14 kB
assets/UserPanel-AaiOY5fn.js (removed) 6.84 kB 🟢 -6.84 kB 🟢 -2.27 kB 🟢 -2.01 kB
assets/UserPanel-DiZykLwV.js (new) 6.84 kB 🔴 +6.84 kB 🔴 +2.28 kB 🔴 +2 kB
assets/cloudRemoteConfig-DpXColxS.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -1.02 kB 🟢 -881 B
assets/cloudRemoteConfig-hIhjp9NK.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +1.02 kB 🔴 +883 B
assets/refreshRemoteConfig-B-t3b7OM.js (removed) 1.45 kB 🟢 -1.45 kB 🟢 -650 B 🟢 -556 B
assets/refreshRemoteConfig-DVoHYBhm.js (new) 1.45 kB 🔴 +1.45 kB 🔴 +650 B 🔴 +550 B

Status: 10 added / 10 removed / 14 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-B-P7dPqj.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.29 kB 🔴 +1.11 kB
assets/auth-D0BgFSJp.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.29 kB 🟢 -1.1 kB
assets/SignUpForm-BixR3kdR.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-znqAtESQ.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-C8pssw_Z.js (new) 2.98 kB 🔴 +2.98 kB 🔴 +1.33 kB 🔴 +1.19 kB
assets/UpdatePasswordContent-DUC_Lm7U.js (removed) 2.98 kB 🟢 -2.98 kB 🟢 -1.33 kB 🟢 -1.18 kB
assets/authStore-4rAUGQ08.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +601 B 🔴 +535 B
assets/authStore-DmmpFGKa.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -599 B 🟢 -531 B
assets/auth-BVFSvNLG.js (removed) 348 B 🟢 -348 B 🟢 -218 B 🟢 -209 B
assets/auth-CJsfbe5c.js (new) 348 B 🔴 +348 B 🔴 +219 B 🔴 +191 B

Status: 5 added / 5 removed / 2 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-CbL1nr2k.js (new) 85.8 kB 🔴 +85.8 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/ComfyHubPublishDialog-DX4-YeSt.js (removed) 85.8 kB 🟢 -85.8 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/useShareDialog-BN5aqIcK.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.81 kB 🟢 -5.14 kB
assets/useShareDialog-CmdCwKB6.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.82 kB 🔴 +5.15 kB
assets/ComfyHubPublishDialog-D-T3LwNb.js (new) 1.43 kB 🔴 +1.43 kB 🔴 +663 B 🔴 +586 B
assets/ComfyHubPublishDialog-XayroI31.js (removed) 1.43 kB 🟢 -1.43 kB 🟢 -659 B 🟢 -581 B
assets/useSubscriptionDialog-9c3D1tJI.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -592 B 🟢 -520 B
assets/useSubscriptionDialog-CWRBV8qo.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +593 B 🔴 +520 B

Status: 4 added / 4 removed

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-BQRSccco.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.79 kB 🔴 +3.38 kB
assets/ComfyQueueButton-CWxy8cZ1.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.79 kB 🟢 -3.38 kB
assets/useTerminalTabs-2xpKEmNM.js (removed) 11.1 kB 🟢 -11.1 kB 🟢 -3.76 kB 🟢 -3.32 kB
assets/useTerminalTabs-FCaIt3q0.js (new) 11.1 kB 🔴 +11.1 kB 🔴 +3.77 kB 🔴 +3.31 kB
assets/SubscribeButton-CURjIwI0.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.05 kB 🟢 -918 B
assets/SubscribeButton-Dn5vUOA_.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.05 kB 🔴 +917 B
assets/cloudFeedbackTopbarButton-CEvmaAKN.js (removed) 1.94 kB 🟢 -1.94 kB 🟢 -965 B 🟢 -862 B
assets/cloudFeedbackTopbarButton-CYD276y_.js (new) 1.94 kB 🔴 +1.94 kB 🔴 +968 B 🔴 +860 B
assets/ComfyQueueButton-bxBlBhbk.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -627 B 🟢 -573 B
assets/ComfyQueueButton-gaQn1sC9.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +628 B 🔴 +576 B

Status: 5 added / 5 removed / 8 unchanged

Data & Services — 3.16 MB (baseline 3.16 MB) • 🔴 +1.85 kB

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-D-qgCbge.js (removed) 2.09 MB 🟢 -2.09 MB 🟢 -476 kB 🟢 -361 kB
assets/dialogService-DC9Xz1Vi.js (new) 2.09 MB 🔴 +2.09 MB 🔴 +476 kB 🔴 +361 kB
assets/api-FzRBjc7Z.js (new) 898 kB 🔴 +898 kB 🔴 +215 kB 🔴 +169 kB
assets/api-DE6z86IF.js (removed) 898 kB 🟢 -898 kB 🟢 -215 kB 🟢 -169 kB
assets/load3dService-AifDPROa.js (new) 116 kB 🔴 +116 kB 🔴 +25.4 kB 🔴 +21.6 kB
assets/load3dService-Do-bK5lA.js (removed) 116 kB 🟢 -116 kB 🟢 -25.4 kB 🟢 -21.6 kB
assets/workflowShareService-f86kyTZP.js (removed) 16.7 kB 🟢 -16.7 kB 🟢 -4.92 kB 🟢 -4.37 kB
assets/workflowShareService-weay_PQF.js (new) 16.7 kB 🔴 +16.7 kB 🔴 +4.92 kB 🔴 +4.37 kB
assets/keybindingService-DhugEnKg.js (new) 15 kB 🔴 +15 kB 🔴 +4.11 kB 🔴 +3.62 kB
assets/keybindingService-DvnXqk0F.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.22 kB
assets/releaseStore-BwZp1QbY.js (new) 8.12 kB 🔴 +8.12 kB 🔴 +2.28 kB 🔴 +2 kB
assets/releaseStore-C09Zn6V1.js (removed) 8.12 kB 🟢 -8.12 kB 🟢 -2.28 kB 🟢 -2 kB
assets/userStore-D9S0FuoV.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -934 B 🟢 -816 B
assets/userStore-VKoG2cML.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +934 B 🔴 +817 B
assets/audioService-BP7yed3Z.js (new) 1.8 kB 🔴 +1.8 kB 🔴 +877 B 🔴 +757 B
assets/audioService-Cx4kBWsh.js (removed) 1.8 kB 🟢 -1.8 kB 🟢 -881 B 🟢 -758 B
assets/releaseStore-BPKLkq3E.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -595 B 🟢 -528 B
assets/releaseStore-DdCH5K3b.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +598 B 🔴 +528 B
assets/workflowDraftStore-C4xmOCPe.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -591 B 🟢 -522 B
assets/workflowDraftStore-CnMk_InS.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +593 B 🔴 +526 B
assets/dialogService-42MPQI6F.js (new) 1.24 kB 🔴 +1.24 kB 🔴 +585 B 🔴 +521 B
assets/dialogService-BRMDScWe.js (removed) 1.24 kB 🟢 -1.24 kB 🟢 -583 B 🟢 -521 B
assets/settingStore-CYcv7Quz.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -586 B 🟢 -519 B
assets/settingStore-F07OahgH.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +588 B 🔴 +518 B
assets/assetsStore-BdYwTBAA.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +588 B 🔴 +520 B
assets/assetsStore-D_h3DOdB.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -586 B 🟢 -516 B

Status: 13 added / 13 removed / 4 unchanged

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-85CWXnYy.js (new) 234 kB 🔴 +234 kB 🔴 +52.1 kB 🔴 +42.5 kB
assets/useConflictDetection-BUYhtKVz.js (removed) 234 kB 🟢 -234 kB 🟢 -52.1 kB 🟢 -42.5 kB
assets/useLoad3d-CLMb1xI3.js (removed) 22.7 kB 🟢 -22.7 kB 🟢 -5.22 kB 🟢 -4.61 kB
assets/useLoad3d-DhEpuInc.js (new) 22.7 kB 🔴 +22.7 kB 🔴 +5.22 kB 🔴 +4.61 kB
assets/useLoad3dViewer-B37ZK13e.js (removed) 21 kB 🟢 -21 kB 🟢 -4.93 kB 🟢 -4.3 kB
assets/useLoad3dViewer-CSLS_8hO.js (new) 21 kB 🔴 +21 kB 🔴 +4.92 kB 🔴 +4.3 kB
assets/useFeatureFlags-D4EVjqZv.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +1.79 kB 🔴 +1.52 kB
assets/useFeatureFlags-DRimVAyX.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -1.79 kB 🟢 -1.52 kB
assets/useCopyToClipboard-3A6IqCoM.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.58 kB
assets/useCopyToClipboard-Bxu5QOgK.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.58 kB
assets/useWorkspaceUI-C8tuX5MF.js (new) 3.34 kB 🔴 +3.34 kB 🔴 +983 B 🔴 +814 B
assets/useWorkspaceUI-DxQILF7P.js (removed) 3.34 kB 🟢 -3.34 kB 🟢 -982 B 🟢 -815 B
assets/subscriptionCheckoutUtil-4JMhFJOt.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.18 kB
assets/subscriptionCheckoutUtil-C2Kazi7C.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.18 kB
assets/assetPreviewUtil-BtM2DcGt.js (new) 2.43 kB 🔴 +2.43 kB 🔴 +1.01 kB 🔴 +877 B
assets/assetPreviewUtil-ItOejEht.js (removed) 2.43 kB 🟢 -2.43 kB 🟢 -1.01 kB 🟢 -878 B
assets/useUpstreamValue-Bqha91Yt.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +803 B 🔴 +717 B
assets/useUpstreamValue-C1nOQRc_.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -803 B 🟢 -714 B
assets/useLoad3d-D1XUEFVi.js (new) 1.41 kB 🔴 +1.41 kB 🔴 +655 B 🔴 +586 B
assets/useLoad3d-mzDkAMC4.js (removed) 1.41 kB 🟢 -1.41 kB 🟢 -652 B 🟢 -583 B
assets/useLoad3dViewer-D9F1JGKp.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -620 B 🟢 -569 B
assets/useLoad3dViewer-Da-dYP4-.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +622 B 🔴 +568 B
assets/useCurrentUser-KCgYM_4q.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -587 B 🟢 -520 B
assets/useCurrentUser-OEk4b07v.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +590 B 🔴 +521 B
assets/useWorkspaceSwitch-B2roHYe9.js (new) 747 B 🔴 +747 B 🔴 +386 B 🔴 +327 B
assets/useWorkspaceSwitch-K7frXquj.js (removed) 747 B 🟢 -747 B 🟢 -382 B 🟢 -330 B

Status: 13 added / 13 removed / 18 unchanged

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

External libraries and shared vendor chunks

Status: 16 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-BczHY4dn.js (removed) 78 kB 🟢 -78 kB 🟢 -20.2 kB 🟢 -17.2 kB
assets/core-DM8OwUh6.js (new) 78 kB 🔴 +78 kB 🔴 +20.2 kB 🔴 +17.2 kB
assets/groupNode-BFENmZ0B.js (new) 74.9 kB 🔴 +74.9 kB 🔴 +18.7 kB 🔴 +16.5 kB
assets/groupNode-CLtsfd4a.js (removed) 74.9 kB 🟢 -74.9 kB 🟢 -18.7 kB 🟢 -16.5 kB
assets/WidgetSelect-C2xEv6_d.js (removed) 68.4 kB 🟢 -68.4 kB 🟢 -15.1 kB 🟢 -13 kB
assets/WidgetSelect-YbefkjE9.js (new) 68.4 kB 🔴 +68.4 kB 🔴 +15.1 kB 🔴 +13 kB
assets/SubscriptionRequiredDialogContentWorkspace-D3NX1li6.js (removed) 48.9 kB 🟢 -48.9 kB 🟢 -9.55 kB 🟢 -8.27 kB
assets/SubscriptionRequiredDialogContentWorkspace-O06RqboZ.js (new) 48.9 kB 🔴 +48.9 kB 🔴 +9.56 kB 🔴 +8.26 kB
assets/Load3DControls-BODIA-pl.js (removed) 46.1 kB 🟢 -46.1 kB 🟢 -7.5 kB 🟢 -6.54 kB
assets/Load3DControls-DoLQZxMz.js (new) 46.1 kB 🔴 +46.1 kB 🔴 +7.5 kB 🔴 +6.55 kB
assets/WorkspacePanelContent-B7k7BLwo.js (new) 34.3 kB 🔴 +34.3 kB 🔴 +7.44 kB 🔴 +6.59 kB
assets/WorkspacePanelContent-BlHJxuGp.js (removed) 34.3 kB 🟢 -34.3 kB 🟢 -7.44 kB 🟢 -6.58 kB
assets/WidgetPainter-B2z2OfJw.js (new) 33.5 kB 🔴 +33.5 kB 🔴 +8.29 kB 🔴 +7.34 kB
assets/WidgetPainter-DrFDIyYp.js (removed) 33.5 kB 🟢 -33.5 kB 🟢 -8.29 kB 🟢 -7.33 kB
assets/Load3dViewerContent--9sk4Y34.js (new) 30.6 kB 🔴 +30.6 kB 🔴 +6.19 kB 🔴 +5.37 kB
assets/Load3dViewerContent-BQWU9CqR.js (removed) 30.6 kB 🟢 -30.6 kB 🟢 -6.2 kB 🟢 -5.37 kB
assets/SubscriptionRequiredDialogContent-CfuUytjA.js (new) 27.6 kB 🔴 +27.6 kB 🔴 +7.02 kB 🔴 +6.22 kB
assets/SubscriptionRequiredDialogContent-D8ZnEtEc.js (removed) 27.6 kB 🟢 -27.6 kB 🟢 -7.02 kB 🟢 -6.2 kB
assets/WidgetImageCrop--zGMlmFd.js (removed) 24.4 kB 🟢 -24.4 kB 🟢 -6.23 kB 🟢 -5.48 kB
assets/WidgetImageCrop-DxAnEoHG.js (new) 24.4 kB 🔴 +24.4 kB 🔴 +6.24 kB 🔴 +5.48 kB
assets/SubscriptionPanelContentWorkspace-CgXHS2xs.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.17 kB 🟢 -4.56 kB
assets/SubscriptionPanelContentWorkspace-Cxu09adm.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.17 kB 🔴 +4.56 kB
assets/SignInContent-BddgcuMK.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +5.48 kB 🔴 +4.79 kB
assets/SignInContent-BFpcCMwb.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -5.47 kB 🟢 -4.8 kB
assets/CurrentUserPopoverWorkspace-7GXpLGQn.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +4.99 kB 🔴 +4.46 kB
assets/CurrentUserPopoverWorkspace-CVnFpAhu.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -4.99 kB 🟢 -4.47 kB
assets/WidgetInputNumber-BJFff-GY.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.84 kB 🟢 -4.3 kB
assets/WidgetInputNumber-PaCkMtZs.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.84 kB 🔴 +4.29 kB
assets/Load3D-DZoTZ22M.js (removed) 18.5 kB 🟢 -18.5 kB 🟢 -4.39 kB 🟢 -3.83 kB
assets/Load3D-jgBwHUWt.js (new) 18.5 kB 🔴 +18.5 kB 🔴 +4.39 kB 🔴 +3.83 kB
assets/WidgetRecordAudio-BWbc7zjH.js (removed) 17.6 kB 🟢 -17.6 kB 🟢 -5.07 kB 🟢 -4.53 kB
assets/WidgetRecordAudio-DuowZlQd.js (new) 17.6 kB 🔴 +17.6 kB 🔴 +5.07 kB 🔴 +4.52 kB
assets/WidgetRange-B53diFIE.js (new) 17.1 kB 🔴 +17.1 kB 🔴 +4.65 kB 🔴 +4.15 kB
assets/WidgetRange-qfukD9ME.js (removed) 17.1 kB 🟢 -17.1 kB 🟢 -4.64 kB 🟢 -4.14 kB
assets/load3d-C9Xybloi.js (new) 15.9 kB 🔴 +15.9 kB 🔴 +4.63 kB 🔴 +4.01 kB
assets/load3d-Cx7_WNpn.js (removed) 15.9 kB 🟢 -15.9 kB 🟢 -4.62 kB 🟢 -4.01 kB
assets/WaveAudioPlayer-D8IAqTRX.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.68 kB 🟢 -3.23 kB
assets/WaveAudioPlayer-DnUIL4l0.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.68 kB 🔴 +3.22 kB
assets/WidgetCurve-Cn6iTXOx.js (removed) 12.3 kB 🟢 -12.3 kB 🟢 -3.96 kB 🟢 -3.59 kB
assets/WidgetCurve-xl1BIm-1.js (new) 12.3 kB 🔴 +12.3 kB 🔴 +3.96 kB 🔴 +3.57 kB
assets/TeamWorkspacesDialogContent-Bngnv7bi.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.45 kB 🔴 +3.08 kB
assets/TeamWorkspacesDialogContent-Dd1IhQUk.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.45 kB 🟢 -3.07 kB
assets/nodeTemplates-4WmnnZj3.js (removed) 9.92 kB 🟢 -9.92 kB 🟢 -3.52 kB 🟢 -3.11 kB
assets/nodeTemplates-CxkwY0AL.js (new) 9.92 kB 🔴 +9.92 kB 🔴 +3.52 kB 🔴 +3.12 kB
assets/NightlySurveyController-B4AsMEkX.js (removed) 9.05 kB 🟢 -9.05 kB 🟢 -3.18 kB 🟢 -2.81 kB
assets/NightlySurveyController-B5U5gtcP.js (new) 9.05 kB 🔴 +9.05 kB 🔴 +3.19 kB 🔴 +2.81 kB
assets/Load3DConfiguration-Bt8pmpGk.js (new) 8.77 kB 🔴 +8.77 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/Load3DConfiguration-DFjz4Y4U.js (removed) 8.77 kB 🟢 -8.77 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/InviteMemberDialogContent-CM5F6vDg.js (removed) 8.02 kB 🟢 -8.02 kB 🟢 -2.56 kB 🟢 -2.24 kB
assets/InviteMemberDialogContent-n9lkM3Kz.js (new) 8.02 kB 🔴 +8.02 kB 🔴 +2.56 kB 🔴 +2.25 kB
assets/onboardingCloudRoutes-B7fGyYPd.js (new) 6.94 kB 🔴 +6.94 kB 🔴 +2.18 kB 🔴 +1.87 kB
assets/onboardingCloudRoutes-CW2voh_4.js (removed) 6.94 kB 🟢 -6.94 kB 🟢 -2.17 kB 🟢 -1.86 kB
assets/CreateWorkspaceDialogContent-BVW46Uqp.js (new) 6.23 kB 🔴 +6.23 kB 🔴 +2.27 kB 🔴 +1.99 kB
assets/CreateWorkspaceDialogContent-DpyliyX6.js (removed) 6.23 kB 🟢 -6.23 kB 🟢 -2.27 kB 🟢 -1.98 kB
assets/WidgetWithControl-DbEzCOfz.js (new) 6.2 kB 🔴 +6.2 kB 🔴 +2.5 kB 🔴 +2.19 kB
assets/WidgetWithControl-IqVtrX2_.js (removed) 6.2 kB 🟢 -6.2 kB 🟢 -2.5 kB 🟢 -2.19 kB
assets/FreeTierDialogContent-D6F679wN.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +2.17 kB 🔴 +1.94 kB
assets/FreeTierDialogContent-D7FX5z40.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -2.17 kB 🟢 -1.93 kB
assets/EditWorkspaceDialogContent-BugrxEH5.js (new) 6.03 kB 🔴 +6.03 kB 🔴 +2.23 kB 🔴 +1.96 kB
assets/EditWorkspaceDialogContent-Cf0JODsu.js (removed) 6.03 kB 🟢 -6.03 kB 🟢 -2.23 kB 🟢 -1.95 kB
assets/WidgetTextarea-BHYAfFIc.js (removed) 5.84 kB 🟢 -5.84 kB 🟢 -2.3 kB 🟢 -2.03 kB
assets/WidgetTextarea-qhtGpBzo.js (new) 5.84 kB 🔴 +5.84 kB 🔴 +2.31 kB 🔴 +2.04 kB
assets/Preview3d-BZ9mOmtp.js (removed) 5.81 kB 🟢 -5.81 kB 🟢 -1.96 kB 🟢 -1.71 kB
assets/Preview3d-RXejAzNW.js (new) 5.81 kB 🔴 +5.81 kB 🔴 +1.96 kB 🔴 +1.71 kB
assets/ValueControlPopover-CXwgYKg9.js (removed) 5.61 kB 🟢 -5.61 kB 🟢 -2.05 kB 🟢 -1.85 kB
assets/ValueControlPopover-k7gbCjdC.js (new) 5.61 kB 🔴 +5.61 kB 🔴 +2.05 kB 🔴 +1.84 kB
assets/CancelSubscriptionDialogContent-1TukZNd3.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2.08 kB 🔴 +1.83 kB
assets/CancelSubscriptionDialogContent-CX6cjsTD.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2.08 kB 🟢 -1.82 kB
assets/DeleteWorkspaceDialogContent-BA6PJYIt.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.91 kB 🔴 +1.66 kB
assets/DeleteWorkspaceDialogContent-CATBjziJ.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.91 kB 🟢 -1.66 kB
assets/saveMesh-CXs-LZzP.js (new) 4.78 kB 🔴 +4.78 kB 🔴 +1.9 kB 🔴 +1.7 kB
assets/saveMesh-DqY7ZQ48.js (removed) 4.78 kB 🟢 -4.78 kB 🟢 -1.9 kB 🟢 -1.69 kB
assets/LeaveWorkspaceDialogContent-C4UG-UGY.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.86 kB 🔴 +1.61 kB
assets/LeaveWorkspaceDialogContent-DpLlk3MX.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.86 kB 🟢 -1.61 kB
assets/RemoveMemberDialogContent-8v9Lm6hn.js (removed) 4.74 kB 🟢 -4.74 kB 🟢 -1.81 kB 🟢 -1.58 kB
assets/RemoveMemberDialogContent-BXCAJ33k.js (new) 4.74 kB 🔴 +4.74 kB 🔴 +1.81 kB 🔴 +1.59 kB
assets/RevokeInviteDialogContent-BBeAao0s.js (new) 4.65 kB 🔴 +4.65 kB 🔴 +1.82 kB 🔴 +1.6 kB
assets/RevokeInviteDialogContent-dXoteZtX.js (removed) 4.65 kB 🟢 -4.65 kB 🟢 -1.82 kB 🟢 -1.59 kB
assets/InviteMemberUpsellDialogContent-AdxKwPbs.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.68 kB 🟢 -1.48 kB
assets/InviteMemberUpsellDialogContent-cmSxEPtC.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.69 kB 🔴 +1.49 kB
assets/tierBenefits-CIabdDxl.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.58 kB 🔴 +1.37 kB
assets/tierBenefits-DfZ4C_PY.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/Media3DTop-CT0chRzb.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.81 kB 🟢 -1.61 kB
assets/Media3DTop-GigfOHyJ.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/cloudSessionCookie-B5VRsNK3.js (new) 4.39 kB 🔴 +4.39 kB 🔴 +1.61 kB 🔴 +1.4 kB
assets/cloudSessionCookie-CvDnv07M.js (removed) 4.39 kB 🟢 -4.39 kB 🟢 -1.61 kB 🟢 -1.4 kB
assets/GlobalToast-DQdAD4cw.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.12 kB
assets/GlobalToast-tvSIZ-50.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/CloudRunButtonWrapper-B1W77cd4.js (new) 2.31 kB 🔴 +2.31 kB 🔴 +1.05 kB 🔴 +945 B
assets/CloudRunButtonWrapper-DMPNp0hJ.js (removed) 2.31 kB 🟢 -2.31 kB 🟢 -1.05 kB 🟢 -944 B
assets/SubscribeToRun-BNKtaSLs.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +982 B 🔴 +875 B
assets/SubscribeToRun-Du3NDlxz.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -982 B 🟢 -874 B
assets/MediaAudioTop-CHfJr6Pi.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +1 kB 🔴 +863 B
assets/MediaAudioTop-YRN6sxWo.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -1.01 kB 🟢 -862 B
assets/cloudBadges-Bi-DSXD6.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -1.01 kB 🟢 -876 B
assets/cloudBadges-Dmx1kK7Z.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +1.01 kB 🔴 +878 B
assets/cloudSubscription-8YoBSykU.js (removed) 1.96 kB 🟢 -1.96 kB 🟢 -929 B 🟢 -811 B
assets/cloudSubscription-BkNZcZhf.js (new) 1.96 kB 🔴 +1.96 kB 🔴 +932 B 🔴 +808 B
assets/graphHasMissingNodes-DIfH8PON.js (removed) 1.84 kB 🟢 -1.84 kB 🟢 -861 B 🟢 -764 B
assets/graphHasMissingNodes-VjhBKqTC.js (new) 1.84 kB 🔴 +1.84 kB 🔴 +861 B 🔴 +757 B
assets/Load3D-b2uLKk6M.js (removed) 1.66 kB 🟢 -1.66 kB 🟢 -739 B 🟢 -660 B
assets/Load3D-DZ52ysHd.js (new) 1.66 kB 🔴 +1.66 kB 🔴 +746 B 🔴 +660 B
assets/nightlyBadges-2QolLUea.js (removed) 1.57 kB 🟢 -1.57 kB 🟢 -779 B 🟢 -692 B
assets/nightlyBadges-DL9dIHg3.js (new) 1.57 kB 🔴 +1.57 kB 🔴 +779 B 🔴 +689 B
assets/Load3dViewerContent-BV5rPxVN.js (new) 1.54 kB 🔴 +1.54 kB 🔴 +698 B 🔴 +618 B
assets/Load3dViewerContent-DHGnsm-2.js (removed) 1.54 kB 🟢 -1.54 kB 🟢 -695 B 🟢 -620 B
assets/previousFullPath-B3alJmB1.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -693 B 🟢 -601 B
assets/previousFullPath-DANUUMvf.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +696 B 🔴 +601 B
assets/SubscriptionPanelContentWorkspace-BmT8Ai4S.js (new) 1.43 kB 🔴 +1.43 kB 🔴 +651 B 🔴 +584 B
assets/SubscriptionPanelContentWorkspace-IEFmfMB0.js (removed) 1.43 kB 🟢 -1.43 kB 🟢 -651 B 🟢 -581 B
assets/WidgetLegacy-BoUrsDQ_.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +598 B 🔴 +530 B
assets/WidgetLegacy-C1v7mtKa.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -597 B 🟢 -532 B
assets/changeTracker-BMpQ1aph.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +589 B 🔴 +519 B
assets/changeTracker-C0w8oupP.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -587 B 🟢 -519 B

Status: 57 added / 57 removed / 86 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.5 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 57.0 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 44.7 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.0 MB heap
large-graph-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 79.9 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 108.9 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.0 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 79.7 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.7 MB heap
subgraph-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 74.6 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.2 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 89ms TBT · 90.3 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.8 MB heap
vue-large-graph-idle: · 57.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 203.9 MB heap
vue-large-graph-pan: · 57.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 243.6 MB heap
workflow-execution: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.6 MB heap

No regressions detected.

All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms -0% z=-0.5
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 9ms 7ms -26% z=-4.3
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 10 10 -5% z=-2.9
canvas-idle: task duration 428ms 378ms -12% z=-0.5
canvas-idle: script duration 21ms 16ms -21% z=-3.9
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 66.2 MB 60.5 MB -9%
canvas-idle: DOM nodes -259 -261 +1% z=-222.0
canvas-idle: event listeners -129 -129 +0% z=-29.7
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 -11% z=-3.1
canvas-mouse-sweep: style recalc duration 39ms 28ms -27% z=-4.6
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 82 72 -13% z=-3.1
canvas-mouse-sweep: task duration 956ms 595ms -38% z=-4.6
canvas-mouse-sweep: script duration 120ms 94ms -22% z=-6.4
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 66.0 MB 57.0 MB -14%
canvas-mouse-sweep: DOM nodes -262 -103 -61% z=-63.9
canvas-mouse-sweep: event listeners -129 -64 -51% z=-17.3
canvas-zoom-sweep: avg frame time 17ms 17ms -0% z=-1.1
canvas-zoom-sweep: p95 frame time 17ms 17ms +0%
canvas-zoom-sweep: layout duration 1ms 1ms -12% z=-2.8
canvas-zoom-sweep: style recalc duration 15ms 13ms -12% z=-3.7
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 32 32 +0% z=1.6
canvas-zoom-sweep: task duration 278ms 266ms -5% z=-2.7
canvas-zoom-sweep: script duration 22ms 18ms -17% z=-2.9
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 47.8 MB 44.7 MB -6%
canvas-zoom-sweep: DOM nodes 79 -64 -181% z=-181.0
canvas-zoom-sweep: event listeners 21 -50 -336% z=-14.1
dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 8ms 9ms +13% z=-0.7
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 12 13 +8% z=-0.2
dom-widget-clipping: task duration 321ms 292ms -9% z=-4.4
dom-widget-clipping: script duration 63ms 49ms -21% z=-5.6
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 54.8 MB 58.0 MB +6%
dom-widget-clipping: DOM nodes 20 21 +3% z=-1.2
dom-widget-clipping: event listeners 2 2 +0% variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.6
large-graph-idle: p95 frame time 17ms 17ms +1%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 8ms 8ms -6% z=-4.3
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 9 11 +22% z=-1.9
large-graph-idle: task duration 511ms 474ms -7% z=-1.3
large-graph-idle: script duration 85ms 73ms -13% z=-2.8
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 58.0 MB 79.9 MB +38%
large-graph-idle: DOM nodes -261 -257 -2% z=-311.7
large-graph-idle: event listeners -129 -127 -2% z=-25.1
large-graph-pan: avg frame time 17ms 17ms +0% z=-0.2
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 17ms 17ms -1% z=-0.1
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 68 69 +1% z=-0.9
large-graph-pan: task duration 1036ms 907ms -12% z=-4.1
large-graph-pan: script duration 388ms 299ms -23% z=-5.5
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 62.8 MB 108.9 MB +73%
large-graph-pan: DOM nodes -261 -257 -2% z=-167.0
large-graph-pan: event listeners -129 -127 -2% z=-159.3
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 -1%
large-graph-zoom: style recalc duration 17ms 17ms +0%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 67 +1%
large-graph-zoom: task duration 1305ms 1035ms -21%
large-graph-zoom: script duration 474ms 379ms -20%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 102.1 MB 64.0 MB -37%
large-graph-zoom: DOM nodes -265 -262 -1%
large-graph-zoom: event listeners -125 -126 +1%
minimap-idle: avg frame time 17ms 17ms +0% z=0.1
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 7ms 8ms +13% z=-1.6
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 10 +25% z=0.6
minimap-idle: task duration 513ms 488ms -5% z=-0.8
minimap-idle: script duration 86ms 77ms -10% z=-2.1
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 96.4 MB 79.7 MB -17%
minimap-idle: DOM nodes -258 -257 -1% z=-201.5
minimap-idle: event listeners -129 -126 -2% z=-197.8
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 10ms -2% z=-2.5
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 49 +4% z=1.8
subgraph-dom-widget-clipping: task duration 346ms 282ms -19% z=-5.2
subgraph-dom-widget-clipping: script duration 121ms 98ms -19% z=-4.7
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 56.1 MB 55.7 MB -1%
subgraph-dom-widget-clipping: DOM nodes 20 23 +13% z=0.3
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 8ms 9ms +14% z=-2.0
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 9 11 +22% z=0.2
subgraph-idle: task duration 335ms 338ms +1% z=-1.0
subgraph-idle: script duration 12ms 15ms +22% z=-2.1
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 68.1 MB 74.6 MB +10%
subgraph-idle: DOM nodes 18 -112 -722% z=-89.5
subgraph-idle: event listeners 6 -75 -1342% 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 4ms 4ms -12% z=-2.9
subgraph-mouse-sweep: style recalc duration 34ms 30ms -12% z=-3.7
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 75 77 +2% z=-1.9
subgraph-mouse-sweep: task duration 674ms 594ms -12% z=-2.5
subgraph-mouse-sweep: script duration 85ms 79ms -7% z=-3.3
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 60.8 MB 55.2 MB -9%
subgraph-mouse-sweep: DOM nodes 60 -255 -525% z=-144.1
subgraph-mouse-sweep: event listeners 4 -130 -3350% 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 14ms 9ms -36%
subgraph-transition-enter: style recalc duration 27ms 21ms -20%
subgraph-transition-enter: layout count 4 7 +75%
subgraph-transition-enter: style recalc count 16 16 +0%
subgraph-transition-enter: task duration 846ms 578ms -32%
subgraph-transition-enter: script duration 29ms 21ms -29%
subgraph-transition-enter: TBT 153ms 89ms -42%
subgraph-transition-enter: heap used 111.4 MB 90.3 MB -19%
subgraph-transition-enter: DOM nodes 12627 13513 +7%
subgraph-transition-enter: event listeners 1639 2527 +54%
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 48ms 50ms +5%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 250 -0%
viewport-pan-sweep: task duration 3463ms 2944ms -15%
viewport-pan-sweep: script duration 1214ms 1013ms -17%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 71.6 MB 69.8 MB -3%
viewport-pan-sweep: DOM nodes -260 -257 -1%
viewport-pan-sweep: event listeners -113 -127 +12%
vue-large-graph-idle: avg frame time 17ms 18ms +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 10851ms 13605ms +25%
vue-large-graph-idle: script duration 543ms 582ms +7%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 164.5 MB 203.9 MB +24%
vue-large-graph-idle: DOM nodes -8331 -8331 +0%
vue-large-graph-idle: event listeners -16470 -16488 +0%
vue-large-graph-pan: avg frame time 18ms 17ms -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 17ms 18ms +3%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 101 76 -25%
vue-large-graph-pan: task duration 16961ms 15130ms -11%
vue-large-graph-pan: script duration 1012ms 922ms -9%
vue-large-graph-pan: TBT 0ms 0ms +0%
vue-large-graph-pan: heap used 279.4 MB 243.6 MB -13%
vue-large-graph-pan: DOM nodes -8331 -8332 +0%
vue-large-graph-pan: event listeners -16486 -16487 +0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.1
workflow-execution: p95 frame time 17ms 17ms +0%
workflow-execution: layout duration 2ms 1ms -30% z=-2.9
workflow-execution: style recalc duration 25ms 22ms -13% z=-1.2
workflow-execution: layout count 6 5 -25% z=-0.8
workflow-execution: style recalc count 19 19 +0% z=0.6
workflow-execution: task duration 130ms 104ms -20% z=-1.8
workflow-execution: script duration 30ms 23ms -22% z=-1.9
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 56.6 MB 52.6 MB -7%
workflow-execution: DOM nodes 159 165 +4% z=0.6
workflow-execution: event listeners 69 71 +3% z=4.4
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-05-16T03:34:10.684Z",
  "gitSha": "6c9ae27462916f2ee9d92a4a5f955277ef0f9724",
  "branch": "glary/escape-key-raised-surfaces",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2067.286999999993,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 6.568999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 395.12500000000006,
      "heapDeltaBytes": 19538312,
      "heapUsedBytes": 69389000,
      "domNodes": -264,
      "jsHeapTotalBytes": 17522688,
      "scriptDurationMs": 14.752,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-idle",
      "durationMs": 2025.621000000001,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.482000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 361.04900000000004,
      "heapDeltaBytes": -10791868,
      "heapUsedBytes": 57580132,
      "domNodes": -257,
      "jsHeapTotalBytes": 21979136,
      "scriptDurationMs": 18.223,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1673.7939999999867,
      "styleRecalcs": 71,
      "styleRecalcDurationMs": 29.955,
      "layouts": 12,
      "layoutDurationMs": 3.25,
      "taskDurationMs": 586.3699999999999,
      "heapDeltaBytes": 20123920,
      "heapUsedBytes": 69189720,
      "domNodes": 53,
      "jsHeapTotalBytes": 17301504,
      "scriptDurationMs": 98.182,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1691.3079999999923,
      "styleRecalcs": 72,
      "styleRecalcDurationMs": 26.241999999999997,
      "layouts": 12,
      "layoutDurationMs": 2.7459999999999996,
      "taskDurationMs": 603.0419999999999,
      "heapDeltaBytes": 1797700,
      "heapUsedBytes": 50447072,
      "domNodes": -259,
      "jsHeapTotalBytes": 15855616,
      "scriptDurationMs": 90.667,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1705.383999999981,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 13.224,
      "layouts": 6,
      "layoutDurationMs": 0.509,
      "taskDurationMs": 293.398,
      "heapDeltaBytes": -3989360,
      "heapUsedBytes": 44886712,
      "domNodes": -207,
      "jsHeapTotalBytes": 19787776,
      "scriptDurationMs": 16.212999999999997,
      "eventListeners": -118,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1718.6039999999707,
      "styleRecalcs": 33,
      "styleRecalcDurationMs": 13.607,
      "layouts": 6,
      "layoutDurationMs": 0.528,
      "taskDurationMs": 237.82499999999996,
      "heapDeltaBytes": 883088,
      "heapUsedBytes": 48924500,
      "domNodes": 79,
      "jsHeapTotalBytes": 14942208,
      "scriptDurationMs": 20.704000000000004,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 493.9150000000154,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 8.282000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 313.036,
      "heapDeltaBytes": -4354168,
      "heapUsedBytes": 61420540,
      "domNodes": 21,
      "jsHeapTotalBytes": 24735744,
      "scriptDurationMs": 52.02899999999999,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 438.0450000000451,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 10.292000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 271.575,
      "heapDeltaBytes": 11073736,
      "heapUsedBytes": 60155624,
      "domNodes": 20,
      "jsHeapTotalBytes": 16515072,
      "scriptDurationMs": 46.913,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2012.9660000000058,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.055,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 510.788,
      "heapDeltaBytes": 42614124,
      "heapUsedBytes": 100195064,
      "domNodes": -258,
      "jsHeapTotalBytes": 32534528,
      "scriptDurationMs": 79.004,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2018.4879999999907,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 7.321999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 436.31199999999995,
      "heapDeltaBytes": 10596872,
      "heapUsedBytes": 67392088,
      "domNodes": -256,
      "jsHeapTotalBytes": 290816,
      "scriptDurationMs": 67.40899999999999,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2071.96799999997,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 16.823999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 887.2850000000001,
      "heapDeltaBytes": 60415608,
      "heapUsedBytes": 120247704,
      "domNodes": -259,
      "jsHeapTotalBytes": 36409344,
      "scriptDurationMs": 290.79,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2115.4019999999605,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 17.563999999999997,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 926.695,
      "heapDeltaBytes": 48390992,
      "heapUsedBytes": 108069780,
      "domNodes": -254,
      "jsHeapTotalBytes": 40341504,
      "scriptDurationMs": 306.751,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3088.895999999977,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 16.917,
      "layouts": 60,
      "layoutDurationMs": 6.834,
      "taskDurationMs": 1029.268,
      "heapDeltaBytes": 2611352,
      "heapUsedBytes": 64683972,
      "domNodes": -262,
      "jsHeapTotalBytes": 4542464,
      "scriptDurationMs": 376.238,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3080.767000000037,
      "styleRecalcs": 67,
      "styleRecalcDurationMs": 17.59,
      "layouts": 60,
      "layoutDurationMs": 6.784999999999999,
      "taskDurationMs": 1039.971,
      "heapDeltaBytes": 8734472,
      "heapUsedBytes": 69563452,
      "domNodes": -262,
      "jsHeapTotalBytes": 4747264,
      "scriptDurationMs": 381.70799999999997,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2045.5499999999915,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.898,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 559.0789999999998,
      "heapDeltaBytes": 44902992,
      "heapUsedBytes": 104839376,
      "domNodes": -253,
      "jsHeapTotalBytes": 31223808,
      "scriptDurationMs": 88.762,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 1991.3050000000112,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 6.6469999999999985,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 417.01899999999995,
      "heapDeltaBytes": 4003304,
      "heapUsedBytes": 62369100,
      "domNodes": -260,
      "jsHeapTotalBytes": 4747264,
      "scriptDurationMs": 65.424,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 441.86100000001716,
      "styleRecalcs": 49,
      "styleRecalcDurationMs": 10.461,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 285.088,
      "heapDeltaBytes": 9912000,
      "heapUsedBytes": 58821652,
      "domNodes": 23,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 100.101,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 440.28199999996787,
      "styleRecalcs": 49,
      "styleRecalcDurationMs": 10.273,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 278.479,
      "heapDeltaBytes": 9136688,
      "heapUsedBytes": 58032768,
      "domNodes": 22,
      "jsHeapTotalBytes": 15990784,
      "scriptDurationMs": 96.32800000000002,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2007.7159999999594,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.863000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 394.106,
      "heapDeltaBytes": 17955848,
      "heapUsedBytes": 83958132,
      "domNodes": -244,
      "jsHeapTotalBytes": 40853504,
      "scriptDurationMs": 16.697,
      "eventListeners": -155,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2020.8210000000122,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 6.813,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 282.875,
      "heapDeltaBytes": 3738284,
      "heapUsedBytes": 72537200,
      "domNodes": 20,
      "jsHeapTotalBytes": 18874368,
      "scriptDurationMs": 12.831,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1702.9420000000073,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 31.04,
      "layouts": 16,
      "layoutDurationMs": 3.8739999999999997,
      "taskDurationMs": 611.865,
      "heapDeltaBytes": 1360380,
      "heapUsedBytes": 51472012,
      "domNodes": -255,
      "jsHeapTotalBytes": 21454848,
      "scriptDurationMs": 81.993,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666682,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1703.1200000000126,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 29.121999999999996,
      "layouts": 16,
      "layoutDurationMs": 3.6820000000000004,
      "taskDurationMs": 576.8030000000001,
      "heapDeltaBytes": 15591192,
      "heapUsedBytes": 64247984,
      "domNodes": -255,
      "jsHeapTotalBytes": 19525632,
      "scriptDurationMs": 76.738,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 832.8950000000077,
      "styleRecalcs": 16,
      "styleRecalcDurationMs": 21.373000000000005,
      "layouts": 7,
      "layoutDurationMs": 9.127999999999998,
      "taskDurationMs": 577.5799999999999,
      "heapDeltaBytes": 4259504,
      "heapUsedBytes": 94697704,
      "domNodes": 13513,
      "jsHeapTotalBytes": 16515072,
      "scriptDurationMs": 20.79700000000001,
      "eventListeners": 2527,
      "totalBlockingTimeMs": 89,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8095.304999999997,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 50.129,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 2871.9199999999996,
      "heapDeltaBytes": 10838816,
      "heapUsedBytes": 68131752,
      "domNodes": -257,
      "jsHeapTotalBytes": 5738496,
      "scriptDurationMs": 951.5519999999999,
      "eventListeners": -143,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333338,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8097.150999999996,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 50.452,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3015.171,
      "heapDeltaBytes": 19537060,
      "heapUsedBytes": 78184556,
      "domNodes": -257,
      "jsHeapTotalBytes": 6787072,
      "scriptDurationMs": 1073.7100000000003,
      "eventListeners": -111,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 13469.859000000042,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13453.619000000002,
      "heapDeltaBytes": -39268096,
      "heapUsedBytes": 214345832,
      "domNodes": -8331,
      "jsHeapTotalBytes": -1249280,
      "scriptDurationMs": 580.2689999999999,
      "eventListeners": -16488,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 13794.851999999992,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 13755.398000000001,
      "heapDeltaBytes": -30882956,
      "heapUsedBytes": 213256476,
      "domNodes": -8331,
      "jsHeapTotalBytes": -11472896,
      "scriptDurationMs": 582.9159999999999,
      "eventListeners": -16488,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 15060.966000000008,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 17.799999999999983,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 15045.756,
      "heapDeltaBytes": -17331628,
      "heapUsedBytes": 252612384,
      "domNodes": -8331,
      "jsHeapTotalBytes": 12382208,
      "scriptDurationMs": 920.9099999999999,
      "eventListeners": -16488,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 15236.779999999953,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 17.75399999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 15214.451999999997,
      "heapDeltaBytes": -9946532,
      "heapUsedBytes": 258195964,
      "domNodes": -8333,
      "jsHeapTotalBytes": 13955072,
      "scriptDurationMs": 923.974,
      "eventListeners": -16486,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.77333333333336,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 437.7939999999967,
      "styleRecalcs": 19,
      "styleRecalcDurationMs": 23.214,
      "layouts": 4,
      "layoutDurationMs": 1.092,
      "taskDurationMs": 105.651,
      "heapDeltaBytes": 5406768,
      "heapUsedBytes": 55336244,
      "domNodes": 170,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 22.036,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "workflow-execution",
      "durationMs": 439.8439999999937,
      "styleRecalcs": 19,
      "styleRecalcDurationMs": 20.044000000000004,
      "layouts": 5,
      "layoutDurationMs": 1.1680000000000001,
      "taskDurationMs": 101.76600000000002,
      "heapDeltaBytes": 5179808,
      "heapUsedBytes": 54994064,
      "domNodes": 160,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 24.783,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    }
  ]
}

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

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

Inline comments:
In `@src/lib/litegraph/src/ContextMenu.test.ts`:
- Around line 20-47: Tests create ContextMenu instances but don’t always call
close(), leaking document-level listeners; update each test that constructs a
top-level ContextMenu (the first "dispatches an 'open' event..." test and the
third "does not dispatch lifecycle events for submenus" test) to keep a
reference to the created menu (e.g., const menu = new ContextMenu(...)) and call
menu.close() (or parent.close() for the parent menu) after the assertions (or in
a finally/afterEach), ensuring you still reset calls.length where needed;
reference the ContextMenu constructor, close() method, and the existing calls
array when making the changes.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: f2e04346-6974-44bb-97bd-b01d0cbab579

📥 Commits

Reviewing files that changed from the base of the PR and between 7160a9e and 16dc701.

📒 Files selected for processing (9)
  • src/components/graph/GraphCanvas.vue
  • src/components/graph/NodeContextMenu.vue
  • src/lib/litegraph/src/ContextMenu.test.ts
  • src/lib/litegraph/src/ContextMenu.ts
  • src/platform/keybindings/keybindingService.escape.test.ts
  • src/platform/keybindings/keybindingService.ts
  • src/platform/keybindings/raisedSurfaceLiteGraphBridge.ts
  • src/platform/keybindings/raisedSurfaceStore.test.ts
  • src/platform/keybindings/raisedSurfaceStore.ts

Comment thread src/lib/litegraph/src/ContextMenu.test.ts
@codecov
Copy link
Copy Markdown

codecov Bot commented May 16, 2026

Codecov Report

❌ Patch coverage is 60.41667% with 19 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
...atform/keybindings/raisedSurfaceLiteGraphBridge.ts 0.00% 17 Missing ⚠️
src/components/graph/GraphCanvas.vue 0.00% 1 Missing ⚠️
src/components/graph/NodeContextMenu.vue 0.00% 1 Missing ⚠️
@@             Coverage Diff             @@
##             main   #12308       +/-   ##
===========================================
- Coverage   74.67%   59.56%   -15.12%     
===========================================
  Files        1526     1414      -112     
  Lines       95359    71925    -23434     
  Branches    27134    19033     -8101     
===========================================
- Hits        71212    42840    -28372     
- Misses      23285    28612     +5327     
+ Partials      862      473      -389     
Flag Coverage Δ
e2e ?
unit 59.56% <60.41%> (-0.02%) ⬇️

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

Files with missing lines Coverage Δ
src/platform/keybindings/keybindingService.ts 76.00% <100.00%> (-15.90%) ⬇️
src/platform/keybindings/raisedSurfaceStore.ts 100.00% <100.00%> (ø)
src/components/graph/GraphCanvas.vue 0.00% <0.00%> (-60.24%) ⬇️
src/components/graph/NodeContextMenu.vue 0.00% <0.00%> (-71.19%) ⬇️
...atform/keybindings/raisedSurfaceLiteGraphBridge.ts 0.00% <0.00%> (ø)

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

- ContextMenu: use the menu's owner document (event target ownerDocument or fallback) for listeners, DOM insertion, and lifecycle events, so menus opened in fullscreen or alternate documents stay consistent.
- raisedSurfaceLiteGraphBridge: track active context-menu ids and release them on scope dispose, so a menu open during unmount doesn't leak a stale store entry.
- ContextMenu tests: close all top-level menus in afterEach to prevent document-level listeners leaking between tests.
@glary-bot
Copy link
Copy Markdown

glary-bot Bot commented May 16, 2026

Addressed review feedback (1e381cc)

Oracle review:

  1. Stale entries on GraphCanvas unmountraisedSurfaceLiteGraphBridge now tracks active context-menu ids in a Map and releases each one in onScopeDispose, so a menu open during teardown no longer leaves a stale store entry that would suppress Escape after remount.

  2. Cross-document inconsistencyContextMenu now resolves the owning document once from options.event?.target?.ownerDocument (falling back to document), stores it as this.ownerDocument, and uses it for the keydown/pointerdown listeners, createElement, DOM insertion, and the litegraph:contextmenu open/close dispatch. Menus opened in fullscreen or alternate documents now stay consistent end-to-end.

CodeRabbit review:

  1. Test listener leakContextMenu.test.ts now collects created top-level menus and closes them in afterEach, preventing document-level listeners from leaking across tests.

All 113 keybinding + LiteGraph context-menu tests and all 935 litegraph tests still pass. pnpm typecheck, pnpm format:check, pnpm knip clean. Re-verified end-to-end in the dev build: opening the menu and pressing Escape closes it and leaves the active graph unchanged.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
src/lib/litegraph/src/ContextMenu.ts (1)

199-217: ⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Use ownerDocument for bounds calculation to avoid wrong positioning in non-global documents.

Line 216 still reads from document.body, which can clamp menu coordinates against the wrong viewport when the menu belongs to another document (iframe/fullscreen/alternate document). Please compute bounds from ownerDocument consistently.

Suggested fix
-      const body_rect = document.body.getBoundingClientRect()
+      const body_rect = ownerDocument.body.getBoundingClientRect()
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/lib/litegraph/src/ContextMenu.ts` around lines 199 - 217, The positioning
code in ContextMenu.ts computes clipping bounds using the global document
instead of the menu's ownerDocument; update the bounds calculations in the block
that computes left/top (the code referencing ownerDocument, parent, root and
options) to use ownerDocument consistently—replace any use of
document.body.getBoundingClientRect() (and any other document.* references in
that positioning block) with ownerDocument.body.getBoundingClientRect() so the
menu is clamped against the correct document/viewport (e.g., when in an iframe
or fullscreen document).
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Outside diff comments:
In `@src/lib/litegraph/src/ContextMenu.ts`:
- Around line 199-217: The positioning code in ContextMenu.ts computes clipping
bounds using the global document instead of the menu's ownerDocument; update the
bounds calculations in the block that computes left/top (the code referencing
ownerDocument, parent, root and options) to use ownerDocument
consistently—replace any use of document.body.getBoundingClientRect() (and any
other document.* references in that positioning block) with
ownerDocument.body.getBoundingClientRect() so the menu is clamped against the
correct document/viewport (e.g., when in an iframe or fullscreen document).

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 2cb18984-b961-4434-a91e-f8b4072106c2

📥 Commits

Reviewing files that changed from the base of the PR and between 16dc701 and 1e381cc.

📒 Files selected for processing (3)
  • src/lib/litegraph/src/ContextMenu.test.ts
  • src/lib/litegraph/src/ContextMenu.ts
  • src/platform/keybindings/raisedSurfaceLiteGraphBridge.ts
🚧 Files skipped from review as they are similar to previous changes (1)
  • src/platform/keybindings/raisedSurfaceLiteGraphBridge.ts

Last remaining global `document.body` reference in the positioning
block: switch to `ownerDocument.body` so menus opened inside iframes,
fullscreen elements, or alternate documents are clamped against the
correct viewport.
@glary-bot
Copy link
Copy Markdown

glary-bot Bot commented May 16, 2026

Fixed in 7cfaeb3 — good catch, this was the one remaining document.body reference in the positioning block that I missed when threading ownerDocument through the constructor. Now clamps against ownerDocument.body.getBoundingClientRect(). Typecheck clean, 935/935 litegraph tests still pass.

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants