Skip to content

fix(assets): add keyboard play/pause to compact grid video previews - #15542

Open
mattmillerai wants to merge 2 commits into
mainfrom
matt/fe-1712-compact-grid-video-keyboard-playback
Open

fix(assets): add keyboard play/pause to compact grid video previews#15542
mattmillerai wants to merge 2 commits into
mainfrom
matt/fe-1712-compact-grid-video-keyboard-playback

Conversation

@mattmillerai

@mattmillerai mattmillerai commented Aug 21, 2026

Copy link
Copy Markdown
Contributor

ELI-5

In the asset grid, the only way to play or pause a video preview was to click it with a mouse — keyboard users had no way in at all. This adds a small labelled play/pause control over the preview, so you can Tab to it and press Enter or Space. It hides itself while the video's own native controls are on screen.

Summary

Compact grid (grid-small) passes show-native-video-controls=false, so the <video> never gets the controls attribute and never enters the tab order. The regular grid path was no better before playback starts: native controls only attach once the video is isPlaying && isHovered, a state keyboard users cannot reach. The card root is a plain <div> with no tabindex, role or key handler, so grid videos had no keyboard path to playback — a WCAG 2.1.1 (Keyboard) failure on a primary interaction.

Changes

  • What: MediaVideoTop.vue renders a focusable, aria-labelled button centred over the preview whenever the native controls are not currently shown (!shouldShowControls) and the asset has a source. It reuses the video's existing click handler, so Enter/Space, plain clicks and modifier clicks all follow the rules already in place. The label flips between g.play and g.pause with playback state; no new i18n entries were needed.
  • Review round (963c036, from the cursor-review panel): the render condition was widened from !showNativeControls to !shouldShowControls so the default grid path is keyboard-operable too; the button is gated on asset.src, marked draggable="false" so the tile centre still starts the card's drag, and given a ring-offset so the focus ring stays visible over bright frames; MediaAssetCard marks the preview area inert while the asset is deleting so the control leaves the tab order under the deletion overlay.
  • Deliberately not changed: the controls binding itself (native controls still own playback while shown), and the card root — making the whole card a button would put every card in the tab order and still give no way to trigger playback.

Review Focus

  • The control deliberately does not stop propagation. MediaAssetCard.handlePreviewClick already returns early for unmodified video clicks, so activating play/pause does not mutate selection, and modifier clicks still bubble through to the range/toggle selection rules. The existing card tests cover both directions and pass unchanged.
  • Tab order changed: the play control now precedes the card's selection checkmark and the download/more actions, because it lives inside the preview component which renders first. MediaAssetCard.test.ts asserted the old order incidentally and is updated to the new one.
  • The control unmounts while native controls are shown (isPlaying && isHovered in grid mode). That transition requires a pointer hover, so a keyboard user's focus is not yanked mid-interaction; a mixed-input user hovering a playing video hands playback to the native controls, which is the intent.
  • Accessible name is the generic g.play/g.pause rather than one interpolating the asset name. Judgment call in favour of a minimal diff; the per-asset name is already carried by the adjacent selection control.

Coverage

Addresses finding 3 of #15220 only. The other four findings in that issue are tracked separately and are untouched here, so this PR does not close it.

  • grid-small (compact): tab stops Play -> select -> download -> more. Fixed.
  • grid (native controls): the same control renders until the native controls actually attach, so playback can now be started from the keyboard here too. Fixed in the review round.
  • List view (AssetsListItem) renders video as a pointer-events-none thumbnail with no playback at all, so it is not a playback surface and needs nothing.

Provenance

  • Authored by: agent-work loop
  • Verified: pnpm test:unit src/platform/assets/components/MediaVideoTop.test.ts src/platform/assets/components/MediaAssetCard.test.ts: 2 files, 29 tests passed, 0 failed; a full local pnpm test:unit sweep passed everywhere except scripts/cicd/check-binary-size.test.ts, which is untouched by this PR and green in CI (local-env Node mismatch); the original run additionally confirmed the two new keyboard tests red without the control and green with it; pnpm typecheck (vue-tsc against a real pnpm install in the worktree): 0 errors; eslint on the four touched files: 0 errors; pnpm format:check: clean; pre-commit lint-staged (oxfmt, stylelint, oxlint, eslint, typecheck, knip): clean.
  • Deviations: no manual browser pass was run: happy-dom has no native-controls shadow DOM and no real media pipeline, so isPlaying is exercised through the play/pause events and the control's accessible-name flip rather than through real playback; the Firefox drag-from-a-form-control concern is mitigated with draggable="false" but unexercised by automation, as is the inert gating's focus behaviour (asserted via the attribute). The Comfy Design Standards Figma file was not consulted (no access from this environment); the only visual change is a focus ring on an otherwise transparent control.

Compact grid passes show-native-video-controls=false, so the <video>
never gains the controls attribute and never enters the tab order, which
left play/pause reachable by mouse only (WCAG 2.1.1).

Add a focusable, labelled control over the preview that shares the
video's click handler and does not stop propagation, so modified clicks
still reach the card's selection rules.

Co-Authored-By: Christian Byrne <cbyrne@comfy.org>
@mattmillerai mattmillerai added the agent-coded Opened by the agent-work code loop label Aug 21, 2026
@mattmillerai
mattmillerai marked this pull request as ready for review August 21, 2026 08:18
@mattmillerai
mattmillerai requested a review from a team August 21, 2026 08:18
@coderabbitai

coderabbitai Bot commented Aug 21, 2026

Copy link
Copy Markdown
Contributor

Important

Approval pending

CodeRabbit has no unresolved comments, but it has not reviewed the latest commit.

Use the checkbox below to review the latest commit. CodeRabbit will approve the changes if it finds no blocking issues.

  • 🔍 Trigger review

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

@dosubot dosubot Bot added the size:XS This PR changes 0-9 lines, ignoring generated files. label Aug 21, 2026
@github-actions

github-actions Bot commented Aug 21, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 08/21/2026, 08:50:15 AM UTC

Links

🎭 Playwright: ✅ 1841 passed, 0 failed

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

📦 Bundle: 9.13 MB gzip 🔴 +85 B

Details

Summary

  • Raw size: 38.7 MB baseline 38.7 MB — 🔴 +493 B
  • Gzip: 9.13 MB baseline 9.13 MB — 🔴 +85 B
  • Brotli: 6.39 MB baseline 6.38 MB — 🔴 +182 B
  • Bundles: 440 current • 440 baseline • 147 added / 147 removed

Category Glance
Other 🔴 +493 B (14.2 MB) · Vendor & Third-Party ⚪ 0 B (18.1 MB) · Data & Services ⚪ 0 B (3.53 MB) · Graph Workspace ⚪ 0 B (1.37 MB) · Panels & Settings ⚪ 0 B (566 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-Bawkny9A.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.86 kB 🔴 +1.62 kB
assets/index-DP5KYiS3.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.86 kB 🟢 -1.6 kB

Status: 1 added / 1 removed

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

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-CvH3-oIO.js (removed) 1.37 MB 🟢 -1.37 MB 🟢 -298 kB 🟢 -224 kB
assets/GraphView-vJs7uUnU.js (new) 1.37 MB 🔴 +1.37 MB 🔴 +298 kB 🔴 +224 kB
assets/WidgetCompositor-Bx89-Jz4.js (new) 8.17 kB 🔴 +8.17 kB 🔴 +2.76 kB 🔴 +2.46 kB
assets/WidgetCompositor-XdkFU5Rd.js (removed) 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-CoMpHhyr.js (new) 25 kB 🔴 +25 kB 🔴 +6.24 kB 🔴 +5.52 kB
assets/CloudSurveyView-Dp0Qk-ih.js (removed) 25 kB 🟢 -25 kB 🟢 -6.25 kB 🟢 -5.53 kB
assets/CloudLayoutView-CM_O-sSH.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +6.57 kB 🔴 +5.74 kB
assets/CloudLayoutView-DkGNJXSr.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -6.57 kB 🟢 -5.75 kB
assets/UserCheckView-_zlOiNCn.js (removed) 8.75 kB 🟢 -8.75 kB 🟢 -2.19 kB 🟢 -1.91 kB
assets/UserCheckView-Cx7Ulin2.js (new) 8.75 kB 🔴 +8.75 kB 🔴 +2.19 kB 🔴 +1.91 kB
assets/CloudLoginView-azCSqyeA.js (removed) 8.74 kB 🟢 -8.74 kB 🟢 -2.56 kB 🟢 -2.25 kB
assets/CloudLoginView-Ds-8ATWK.js (new) 8.74 kB 🔴 +8.74 kB 🔴 +2.56 kB 🔴 +2.26 kB
assets/useCloudAuthPage-DidVgqo-.js (removed) 7.08 kB 🟢 -7.08 kB 🟢 -2.52 kB 🟢 -2.2 kB
assets/useCloudAuthPage-LOzFjovl.js (new) 7.08 kB 🔴 +7.08 kB 🔴 +2.52 kB 🔴 +2.21 kB
assets/CloudSignupView-CB1flpRb.js (removed) 6.96 kB 🟢 -6.96 kB 🟢 -2.28 kB 🟢 -2 kB
assets/CloudSignupView-CihqYqUe.js (new) 6.96 kB 🔴 +6.96 kB 🔴 +2.28 kB 🔴 +2 kB
assets/WidgetTextPreview-BFNXDIY8.js (removed) 6.07 kB 🟢 -6.07 kB 🟢 -2.13 kB 🟢 -1.9 kB
assets/WidgetTextPreview-DHUdK7bl.js (new) 6.07 kB 🔴 +6.07 kB 🔴 +2.13 kB 🔴 +1.9 kB
assets/CloudSubscriptionRedirectView-BVHaBGQC.js (removed) 6.05 kB 🟢 -6.05 kB 🟢 -2.25 kB 🟢 -1.97 kB
assets/CloudSubscriptionRedirectView-LHN8uGyH.js (new) 6.05 kB 🔴 +6.05 kB 🔴 +2.25 kB 🔴 +1.97 kB
assets/UserSelectView-CAJk5ISs.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +1.96 kB 🔴 +1.72 kB
assets/UserSelectView-CiobNSou.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -1.96 kB 🟢 -1.72 kB
assets/CloudForgotPasswordView-D-jjZN05.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.73 kB 🔴 +1.49 kB
assets/CloudForgotPasswordView-pbw1ZmR_.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.72 kB 🟢 -1.49 kB
assets/CloudAuthTimeoutView-BlrqA1tf.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.54 kB 🟢 -1.35 kB
assets/CloudAuthTimeoutView-C4oJqgXX.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.54 kB 🔴 +1.34 kB
assets/OAuthLayoutView-5Rgvl9wW.js (removed) 1.31 kB 🟢 -1.31 kB 🟢 -702 B 🟢 -588 B
assets/OAuthLayoutView-Bg9dSPLC.js (new) 1.31 kB 🔴 +1.31 kB 🔴 +700 B 🔴 +587 B
assets/WidgetTextPreview-Clwdf8AS.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -95 B
assets/WidgetTextPreview-dsFJD___.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +89 B

Status: 13 added / 13 removed / 4 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-D8AKoY1-.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.94 kB 🔴 +8.79 kB
assets/KeybindingPanel-R04vEIhc.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.95 kB 🟢 -8.78 kB
assets/SecretsPanel-CuvjO6oH.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +7.88 kB 🔴 +6.91 kB
assets/SecretsPanel-DoA1hr7C.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -7.88 kB 🟢 -6.9 kB
assets/CreditsPanel-CBvnRDHO.js (new) 11.5 kB 🔴 +11.5 kB 🔴 +3.21 kB 🔴 +2.81 kB
assets/CreditsPanel-DEoJR4B1.js (removed) 11.5 kB 🟢 -11.5 kB 🟢 -3.21 kB 🟢 -2.81 kB
assets/AboutPanel-C12IJXiL.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.12 kB 🔴 +2.8 kB
assets/AboutPanel-LzwKFyXw.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.12 kB 🟢 -2.79 kB
assets/ExtensionPanel-BvoFMq_Y.js (new) 9.19 kB 🔴 +9.19 kB 🔴 +2.51 kB 🔴 +2.23 kB
assets/ExtensionPanel-Da9tbKO9.js (removed) 9.19 kB 🟢 -9.19 kB 🟢 -2.52 kB 🟢 -2.23 kB
assets/ServerConfigPanel-COQJ8sOF.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -1.94 kB 🟢 -1.72 kB
assets/ServerConfigPanel-D3mAzoSn.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +1.94 kB 🔴 +1.72 kB
assets/UserPanel-BpgBJMhM.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.79 kB 🔴 +1.54 kB
assets/UserPanel-D34oLONf.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/refreshRemoteConfig-BurdONEn.js (new) 4.24 kB 🔴 +4.24 kB 🔴 +1.51 kB 🔴 +1.35 kB
assets/refreshRemoteConfig-CeIaqwBG.js (removed) 4.24 kB 🟢 -4.24 kB 🟢 -1.51 kB 🟢 -1.34 kB
assets/cloudRemoteConfig-CCQLyAxw.js (removed) 951 B 🟢 -951 B 🟢 -515 B 🟢 -420 B
assets/cloudRemoteConfig-s-l66FjU.js (new) 951 B 🔴 +951 B 🔴 +515 B 🔴 +420 B
assets/refreshRemoteConfig-BMFI35Bp.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -84 B
assets/refreshRemoteConfig-kCkvVf3o.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +86 B

Status: 10 added / 10 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-B3IeP9sb.js (new) 13.3 kB 🔴 +13.3 kB 🔴 +4.53 kB 🔴 +3.93 kB
assets/SignUpForm-CQt6ZURz.js (removed) 13.3 kB 🟢 -13.3 kB 🟢 -4.53 kB 🟢 -3.93 kB
assets/auth-CZ7SzrI8.js (removed) 3.48 kB 🟢 -3.48 kB 🟢 -1.2 kB 🟢 -1.01 kB
assets/auth-Us5lNbbm.js (new) 3.48 kB 🔴 +3.48 kB 🔴 +1.2 kB 🔴 +1.01 kB
assets/UpdatePasswordContent-C5iN_5_R.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -844 B 🟢 -738 B
assets/UpdatePasswordContent-CFk-FKSn.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +843 B 🔴 +737 B
assets/authStore-BxUakoQa.js (new) 128 B 🔴 +128 B 🔴 +104 B 🔴 +105 B
assets/authStore-CUZ0XkRv.js (removed) 128 B 🟢 -128 B 🟢 -104 B 🟢 -104 B
assets/workspaceAuthStore-Bclf8GGY.js (new) 108 B 🔴 +108 B 🔴 +99 B 🔴 +110 B
assets/workspaceAuthStore-C4_efFjc.js (removed) 108 B 🟢 -108 B 🟢 -99 B 🟢 -103 B
assets/auth-CbsF2hw5.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -80 B
assets/auth-DzW-SNnt.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +85 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-Dcu1pbYT.js (removed) 90.1 kB 🟢 -90.1 kB 🟢 -19.3 kB 🟢 -16.5 kB
assets/ComfyHubPublishDialog-DHZF33jh.js (new) 90.1 kB 🔴 +90.1 kB 🔴 +19.3 kB 🔴 +16.5 kB
assets/useShareDialog-CQ6Iy9_R.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.7 kB 🟢 -5.04 kB
assets/useShareDialog-F5qtEKcw.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.7 kB 🔴 +5.04 kB
assets/feedbackDialog-B9ci6l7_.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.87 kB 🔴 +1.59 kB
assets/feedbackDialog-Dw_oVfXf.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.87 kB 🟢 -1.59 kB
assets/useRangeEditor-B-v5FjV1.js (removed) 3.29 kB 🟢 -3.29 kB 🟢 -1.14 kB 🟢 -1.04 kB
assets/useRangeEditor-DhrAth2x.js (new) 3.29 kB 🔴 +3.29 kB 🔴 +1.14 kB 🔴 +1.04 kB
assets/useLayerEditor-5XVGiETp.js (removed) 1.01 kB 🟢 -1.01 kB 🟢 -491 B 🟢 -405 B
assets/useLayerEditor-DI5-Tzqm.js (new) 1.01 kB 🔴 +1.01 kB 🔴 +491 B 🔴 +405 B
assets/ComfyHubPublishDialog-Con13jP-.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +89 B
assets/ComfyHubPublishDialog-DN2sRhML.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -88 B
assets/useSubscriptionDialog-D4LFRlHK.js (removed) 108 B 🟢 -108 B 🟢 -102 B 🟢 -90 B
assets/useSubscriptionDialog-DyrBvreF.js (new) 108 B 🔴 +108 B 🔴 +102 B 🔴 +97 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-CnW9x7FH.js (new) 14.6 kB 🔴 +14.6 kB 🔴 +3.97 kB 🔴 +3.53 kB
assets/ComfyQueueButton-DZk5tTE0.js (removed) 14.6 kB 🟢 -14.6 kB 🟢 -3.97 kB 🟢 -3.53 kB
assets/useTerminalTabs-BYVJgbtL.js (new) 11.8 kB 🔴 +11.8 kB 🔴 +3.69 kB 🔴 +3.28 kB
assets/useTerminalTabs-TX4ry3zo.js (removed) 11.8 kB 🟢 -11.8 kB 🟢 -3.69 kB 🟢 -3.28 kB
assets/InviteMembersForm-BkrycjL3.js (new) 8.23 kB 🔴 +8.23 kB 🔴 +2.74 kB 🔴 +2.45 kB
assets/InviteMembersForm-Dal2YuyO.js (removed) 8.23 kB 🟢 -8.23 kB 🟢 -2.74 kB 🟢 -2.43 kB
assets/SubscribeButton-BjFkzcdw.js (new) 2.15 kB 🔴 +2.15 kB 🔴 +970 B 🔴 +850 B
assets/SubscribeButton-CWGK1ccK.js (removed) 2.15 kB 🟢 -2.15 kB 🟢 -971 B 🟢 -850 B
assets/cloudFeedbackTopbarButton-CNGkHpVu.js (new) 705 B 🔴 +705 B 🔴 +421 B 🔴 +362 B
assets/cloudFeedbackTopbarButton-ueSKGK5F.js (removed) 705 B 🟢 -705 B 🟢 -423 B 🟢 -362 B
assets/ComfyQueueButton-DPUfBxau.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +90 B
assets/ComfyQueueButton-DqMfULqh.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -94 B

Status: 6 added / 6 removed / 8 unchanged

Data & Services — 3.53 MB (baseline 3.53 MB) • ⚪ 0 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/settingStore-BLEH_GBX.js (new) 3.16 MB 🔴 +3.16 MB 🔴 +742 kB 🔴 +558 kB
assets/settingStore-CQZpqDPJ.js (removed) 3.16 MB 🟢 -3.16 MB 🟢 -742 kB 🟢 -558 kB
assets/api--QpNgYiP.js (new) 186 kB 🔴 +186 kB 🔴 +39.8 kB 🔴 +33.4 kB
assets/api-tHQrzSYo.js (removed) 186 kB 🟢 -186 kB 🟢 -39.8 kB 🟢 -33.3 kB
assets/load3dService-C2lkD3dc.js (removed) 131 kB 🟢 -131 kB 🟢 -29.2 kB 🟢 -24.6 kB
assets/load3dService-MMvKg4yr.js (new) 131 kB 🔴 +131 kB 🔴 +29.2 kB 🔴 +24.5 kB
assets/workflowShareService-D7pynsq-.js (new) 16.5 kB 🔴 +16.5 kB 🔴 +4.92 kB 🔴 +4.34 kB
assets/workflowShareService-zzebZM-l.js (removed) 16.5 kB 🟢 -16.5 kB 🟢 -4.91 kB 🟢 -4.34 kB
assets/keybindingService-C3sVsgIl.js (removed) 6.95 kB 🟢 -6.95 kB 🟢 -1.74 kB 🟢 -1.51 kB
assets/keybindingService-CbEQd4-4.js (new) 6.95 kB 🔴 +6.95 kB 🔴 +1.74 kB 🔴 +1.51 kB
assets/releaseStore-Bc6tfpqX.js (removed) 6.72 kB 🟢 -6.72 kB 🟢 -2.03 kB 🟢 -1.77 kB
assets/releaseStore-CUgIY-zl.js (new) 6.72 kB 🔴 +6.72 kB 🔴 +2.03 kB 🔴 +1.77 kB
assets/systemStatsStore-B7Z8noyF.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.74 kB 🟢 -1.47 kB
assets/systemStatsStore-BBEKoH38.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.74 kB 🔴 +1.47 kB
assets/userStore-BycSh4nh.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -898 B 🟢 -796 B
assets/userStore-Dg9JKxEW.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +898 B 🔴 +795 B
assets/audioService-BNSE9Ys5.js (removed) 1.71 kB 🟢 -1.71 kB 🟢 -828 B 🟢 -723 B
assets/audioService-CAnpJkXX.js (new) 1.71 kB 🔴 +1.71 kB 🔴 +829 B 🔴 +731 B
assets/dialogService-CAh3jxIr.js (new) 98 B 🔴 +98 B 🔴 +97 B 🔴 +93 B
assets/dialogService-ViwLDoJx.js (removed) 98 B 🟢 -98 B 🟢 -97 B 🟢 -82 B
assets/releaseStore-Ckhu5a52.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -86 B
assets/releaseStore-DuIFOAjP.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +91 B
assets/settingStore-B7S0cRTu.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +86 B
assets/settingStore-xif47qJ5.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -77 B
assets/assetsStore-CZSm11lR.js (removed) 94 B 🟢 -94 B 🟢 -92 B 🟢 -85 B
assets/assetsStore-DJeUSi7S.js (new) 94 B 🔴 +94 B 🔴 +92 B 🔴 +84 B
assets/api-DJ_7UMWG.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -64 B
assets/api-DtuI2o06.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-Cjabr3LC.js (new) 236 kB 🔴 +236 kB 🔴 +53.1 kB 🔴 +43.2 kB
assets/useConflictDetection-CpS34cCO.js (removed) 236 kB 🟢 -236 kB 🟢 -53.1 kB 🟢 -43.2 kB
assets/useLayerEditorSession-DA760T1w.js (removed) 158 kB 🟢 -158 kB 🟢 -40.8 kB 🟢 -34.3 kB
assets/useLayerEditorSession-DStwyxBG.js (new) 158 kB 🔴 +158 kB 🔴 +40.8 kB 🔴 +34.3 kB
assets/useLoad3d-33yNF8da.js (removed) 25.8 kB 🟢 -25.8 kB 🟢 -5.8 kB 🟢 -5.14 kB
assets/useLoad3d-CdvTwSRB.js (new) 25.8 kB 🔴 +25.8 kB 🔴 +5.8 kB 🔴 +5.15 kB
assets/useLoad3dViewer-C-C121ps.js (removed) 21.2 kB 🟢 -21.2 kB 🟢 -4.98 kB 🟢 -4.36 kB
assets/useLoad3dViewer-I6Hbvjy7.js (new) 21.2 kB 🔴 +21.2 kB 🔴 +4.98 kB 🔴 +4.36 kB
assets/useImageCrop-5fYBOoSj.js (removed) 14.9 kB 🟢 -14.9 kB 🟢 -3.42 kB 🟢 -2.98 kB
assets/useImageCrop-BPiAa73o.js (new) 14.9 kB 🔴 +14.9 kB 🔴 +3.42 kB 🔴 +2.98 kB
assets/useDowngradeToPersonal-CGEKOX2r.js (removed) 10.9 kB 🟢 -10.9 kB 🟢 -2.74 kB 🟢 -2.35 kB
assets/useDowngradeToPersonal-UkNViYdD.js (new) 10.9 kB 🔴 +10.9 kB 🔴 +2.74 kB 🔴 +2.35 kB
assets/useFeatureFlags-8FYYwaJN.js (removed) 7.25 kB 🟢 -7.25 kB 🟢 -2.05 kB 🟢 -1.76 kB
assets/useFeatureFlags-BtF4R0Mr.js (new) 7.25 kB 🔴 +7.25 kB 🔴 +2.05 kB 🔴 +1.74 kB
assets/useCompositorLayers-COKGz-k9.js (new) 2.94 kB 🔴 +2.94 kB 🔴 +898 B 🔴 +805 B
assets/useCompositorLayers-DpPNeQ5I.js (removed) 2.94 kB 🟢 -2.94 kB 🟢 -899 B 🟢 -809 B
assets/assetPreviewUtil-BR7CgbKK.js (removed) 2.35 kB 🟢 -2.35 kB 🟢 -969 B 🟢 -846 B
assets/assetPreviewUtil-C8RCpcOy.js (new) 2.35 kB 🔴 +2.35 kB 🔴 +969 B 🔴 +846 B
assets/useUpstreamValue-CjmQcWUJ.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +759 B 🔴 +684 B
assets/useUpstreamValue-D2LwPECF.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -760 B 🟢 -684 B
assets/useWorkspaceTierLabel-5AbDvQRN.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +815 B 🔴 +699 B
assets/useWorkspaceTierLabel-LkzhSL-3.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -814 B 🟢 -698 B
assets/subscriptionCheckoutUtil-BTTFt3My.js (new) 877 B 🔴 +877 B 🔴 +524 B 🔴 +457 B
assets/subscriptionCheckoutUtil-DOfcT8R9.js (removed) 877 B 🟢 -877 B 🟢 -524 B 🟢 -433 B
assets/useSessionCookie-DticLHWx.js (new) 652 B 🔴 +652 B 🔴 +339 B 🔴 +293 B
assets/useSessionCookie-k5LRPZZE.js (removed) 652 B 🟢 -652 B 🟢 -336 B 🟢 -293 B
assets/useLoad3d-BloB_FAJ.js (removed) 311 B 🟢 -311 B 🟢 -163 B 🟢 -148 B
assets/useLoad3d-CNU6Abs8.js (new) 311 B 🔴 +311 B 🔴 +163 B 🔴 +147 B
assets/useSessionCookie-bwWsaSt0.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +83 B
assets/useSessionCookie-DA1Ife4r.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -83 B
assets/useFeatureFlags-CPuf6WLb.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -85 B
assets/useFeatureFlags-DI1Ilkba.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +81 B
assets/useLoad3dViewer-BhH50iYT.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -83 B
assets/useLoad3dViewer-CYynHKY4.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +87 B
assets/useCurrentUser-Cq_agR3q.js (removed) 94 B 🟢 -94 B 🟢 -95 B 🟢 -82 B
assets/useCurrentUser-DzvAmx3t.js (new) 94 B 🔴 +94 B 🔴 +95 B 🔴 +96 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.2 MB (baseline 14.2 MB) • 🔴 +493 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-Cs_08TH_.js (removed) 115 kB 🟢 -115 kB 🟢 -30 kB 🟢 -25.3 kB
assets/core-Dx2F31Q_.js (new) 115 kB 🔴 +115 kB 🔴 +30 kB 🔴 +25.3 kB
assets/WidgetSelect-Dr1DFKY0.js (new) 88.8 kB 🔴 +88.8 kB 🔴 +20.1 kB 🔴 +17.2 kB
assets/WidgetSelect-DUutMipG.js (removed) 88.8 kB 🟢 -88.8 kB 🟢 -20.1 kB 🟢 -17.2 kB
assets/SubscriptionPanelContentWorkspace-C3MhAKyw.js (new) 81.2 kB 🔴 +81.2 kB 🔴 +16.1 kB 🔴 +13.9 kB
assets/SubscriptionPanelContentWorkspace-Gt4W7ezH.js (removed) 81.2 kB 🟢 -81.2 kB 🟢 -16.1 kB 🟢 -13.9 kB
assets/Load3D-CqNq6blK.js (new) 73.3 kB 🔴 +73.3 kB 🔴 +12.1 kB 🔴 +10.3 kB
assets/Load3D-CVnR2eJt.js (removed) 73.3 kB 🟢 -73.3 kB 🟢 -12.1 kB 🟢 -10.3 kB
assets/WidgetVideoEdit-99-oVGJk.js (removed) 71.2 kB 🟢 -71.2 kB 🟢 -17 kB 🟢 -14.9 kB
assets/WidgetVideoEdit-t1hyTmA8.js (new) 71.2 kB 🔴 +71.2 kB 🔴 +17 kB 🔴 +14.9 kB
assets/SubscriptionTransitionPreviewWorkspace-5gIm6P6j.js (new) 66.4 kB 🔴 +66.4 kB 🔴 +13.4 kB 🔴 +11.7 kB
assets/SubscriptionTransitionPreviewWorkspace-CYpcJKuP.js (removed) 66.4 kB 🟢 -66.4 kB 🟢 -13.4 kB 🟢 -11.7 kB
assets/WorkspaceSettingsPanelContent-CmR5CQxT.js (new) 58.2 kB 🔴 +58.2 kB 🔴 +12.4 kB 🔴 +10.8 kB
assets/WorkspaceSettingsPanelContent-HIyAqmbk.js (removed) 58.2 kB 🟢 -58.2 kB 🟢 -12.4 kB 🟢 -10.8 kB
assets/Preview3d-BTKJYKgp.js (removed) 50.9 kB 🟢 -50.9 kB 🟢 -8.32 kB 🟢 -7.24 kB
assets/Preview3d-DKjQtQ6R.js (new) 50.9 kB 🔴 +50.9 kB 🔴 +8.32 kB 🔴 +7.24 kB
assets/main-TnCMw_Lf.js (new) 47.4 kB 🔴 +47.4 kB 🔴 +13.7 kB 🔴 +11.9 kB
assets/main-VoxD4noT.js (removed) 47.4 kB 🟢 -47.4 kB 🟢 -13.7 kB 🟢 -11.9 kB
assets/SubscriptionRequiredDialogContentUnified-B_HfqrPi.js (new) 42.7 kB 🔴 +42.7 kB 🔴 +9.39 kB 🔴 +8.18 kB
assets/SubscriptionRequiredDialogContentUnified-tyY6u4lI.js (removed) 42.7 kB 🟢 -42.7 kB 🟢 -9.39 kB 🟢 -8.18 kB
assets/LayerEditorContent-CdVpAWH-.js (new) 42.5 kB 🔴 +42.5 kB 🔴 +9.62 kB 🔴 +8.43 kB
assets/LayerEditorContent-DFWywjvH.js (removed) 42.5 kB 🟢 -42.5 kB 🟢 -9.62 kB 🟢 -8.43 kB
assets/WidgetBoundingBoxes---5VQ2zm.js (new) 33.7 kB 🔴 +33.7 kB 🔴 +9.16 kB 🔴 +8.12 kB
assets/WidgetBoundingBoxes-CHhHaG31.js (removed) 33.7 kB 🟢 -33.7 kB 🟢 -9.16 kB 🟢 -8.12 kB
assets/WidgetPainter-DCTo0GQv.js (removed) 32.6 kB 🟢 -32.6 kB 🟢 -7.88 kB 🟢 -6.97 kB
assets/WidgetPainter-ETISpmz1.js (new) 32.6 kB 🔴 +32.6 kB 🔴 +7.88 kB 🔴 +6.97 kB
assets/Load3dViewerContent-CiIsRQEl.js (new) 30.8 kB 🔴 +30.8 kB 🔴 +6.28 kB 🔴 +5.45 kB
assets/Load3dViewerContent-d4Z90Auz.js (removed) 30.8 kB 🟢 -30.8 kB 🟢 -6.28 kB 🟢 -5.45 kB
assets/SubscriptionRequiredDialogContent-DrFbGE5X.js (new) 26.9 kB 🔴 +26.9 kB 🔴 +6.36 kB 🔴 +5.61 kB
assets/SubscriptionRequiredDialogContent-TeKmEhGl.js (removed) 26.9 kB 🟢 -26.9 kB 🟢 -6.36 kB 🟢 -5.61 kB
assets/SubscriptionRequiredDialogContentWorkspace-BinY0oVU.js (removed) 25.1 kB 🟢 -25.1 kB 🟢 -5.81 kB 🟢 -5.12 kB
assets/SubscriptionRequiredDialogContentWorkspace-COCspz0j.js (new) 25.1 kB 🔴 +25.1 kB 🔴 +5.81 kB 🔴 +5.13 kB
assets/CreditsTile-BZERFirX.js (removed) 24.9 kB 🟢 -24.9 kB 🟢 -6.66 kB 🟢 -5.85 kB
assets/CreditsTile-CCvYMKNl.js (new) 24.9 kB 🔴 +24.9 kB 🔴 +6.66 kB 🔴 +5.85 kB
assets/load3d-3UgxoMWP.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.41 kB 🟢 -4.67 kB
assets/load3d-BOd2o0j1.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.41 kB 🔴 +4.68 kB
assets/SignInContent-aPk6laC6.js (new) 20.6 kB 🔴 +20.6 kB 🔴 +5.18 kB 🔴 +4.54 kB
assets/SignInContent-Dhnd4jhU.js (removed) 20.6 kB 🟢 -20.6 kB 🟢 -5.18 kB 🟢 -4.54 kB
assets/WidgetRecordAudio-lUDqhvCJ.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.6 kB 🟢 -4.1 kB
assets/WidgetRecordAudio-qcVOpdhi.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.6 kB 🔴 +4.1 kB
assets/CurrentUserPopoverWorkspace-BoT7koeL.js (new) 15.8 kB 🔴 +15.8 kB 🔴 +3.87 kB 🔴 +3.43 kB
assets/CurrentUserPopoverWorkspace-BzvdDKwX.js (removed) 15.8 kB 🟢 -15.8 kB 🟢 -3.87 kB 🟢 -3.42 kB
assets/WidgetInputNumber-DbX9Wsdz.js (removed) 13.9 kB 🟢 -13.9 kB 🟢 -3.63 kB 🟢 -3.22 kB
assets/WidgetInputNumber-DcCkCp3z.js (new) 13.9 kB 🔴 +13.9 kB 🔴 +3.63 kB 🔴 +3.22 kB
assets/WidgetRange-BYYUTJvW.js (removed) 13.7 kB 🟢 -13.7 kB 🟢 -3.55 kB 🟢 -3.13 kB
assets/WidgetRange-DoHtGDEc.js (new) 13.7 kB 🔴 +13.7 kB 🔴 +3.55 kB 🔴 +3.13 kB
assets/WaveAudioPlayer-ChdIfYey.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.46 kB 🟢 -3.03 kB
assets/WaveAudioPlayer-iGlzcqMv.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.46 kB 🔴 +3.05 kB
assets/WidgetCurve-9ranURi-.js (new) 11.2 kB 🔴 +11.2 kB 🔴 +3.48 kB 🔴 +3.14 kB
assets/WidgetCurve-Tl8bPyvC.js (removed) 11.2 kB 🟢 -11.2 kB 🟢 -3.48 kB 🟢 -3.15 kB
assets/TeamWorkspacesDialogContent-Dka1uifU.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +2.97 kB 🔴 +2.63 kB
assets/TeamWorkspacesDialogContent-tOPWCrYf.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -2.97 kB 🟢 -2.63 kB
assets/onboardingCloudRoutes-DhvumVwd.js (removed) 9.49 kB 🟢 -9.49 kB 🟢 -2.85 kB 🟢 -2.44 kB
assets/onboardingCloudRoutes-Drpjh8az.js (new) 9.49 kB 🔴 +9.49 kB 🔴 +2.85 kB 🔴 +2.45 kB
assets/Load3DConfiguration-C7zApEfs.js (removed) 8.91 kB 🟢 -8.91 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/Load3DConfiguration-DKL-k2St.js (new) 8.91 kB 🔴 +8.91 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/WidgetImageCrop-C7c7W20y.js (new) 8.49 kB 🔴 +8.49 kB 🔴 +2.66 kB 🔴 +2.34 kB
assets/WidgetImageCrop-CnY99LYo.js (removed) 8.49 kB 🟢 -8.49 kB 🟢 -2.66 kB 🟢 -2.34 kB
assets/SetMemberCreditLimitDialogContent-BV3HCjQG.js (removed) 8.47 kB 🟢 -8.47 kB 🟢 -2.34 kB 🟢 -2.05 kB
assets/SetMemberCreditLimitDialogContent-C4dSD0fV.js (new) 8.47 kB 🔴 +8.47 kB 🔴 +2.34 kB 🔴 +2.06 kB
assets/nodeTemplates-D_HN53tS.js (removed) 8.32 kB 🟢 -8.32 kB 🟢 -2.86 kB 🟢 -2.5 kB
assets/nodeTemplates-WGv6EYFb.js (new) 8.32 kB 🔴 +8.32 kB 🔴 +2.85 kB 🔴 +2.5 kB
assets/WorkspaceSwitcherPopover-D3LIxFWb.js (new) 8.01 kB 🔴 +8.01 kB 🔴 +2.38 kB 🔴 +2.12 kB
assets/WorkspaceSwitcherPopover-rWOB-yH8.js (removed) 8.01 kB 🟢 -8.01 kB 🟢 -2.38 kB 🟢 -2.12 kB
assets/NightlySurveyController-1aa-NOnz.js (removed) 7.5 kB 🟢 -7.5 kB 🟢 -2.56 kB 🟢 -2.25 kB
assets/NightlySurveyController-fmS60vzw.js (new) 7.5 kB 🔴 +7.5 kB 🔴 +2.55 kB 🔴 +2.25 kB
assets/CloudRunButtonWrapper-DlrSya-X.js (removed) 7.29 kB 🟢 -7.29 kB 🟢 -2.29 kB 🟢 -2.01 kB
assets/CloudRunButtonWrapper-DphQSWri.js (new) 7.29 kB 🔴 +7.29 kB 🔴 +2.3 kB 🔴 +2.01 kB
assets/WidgetWithControl-Bf77qvb-.js (removed) 6.51 kB 🟢 -6.51 kB 🟢 -2.66 kB 🟢 -2.35 kB
assets/WidgetWithControl-ifke_bsB.js (new) 6.51 kB 🔴 +6.51 kB 🔴 +2.67 kB 🔴 +2.34 kB
assets/missingModelMetadata-CnWFlWDR.js (new) 6.45 kB 🔴 +6.45 kB 🔴 +2.21 kB 🔴 +1.93 kB
assets/missingModelMetadata-DKiYAkzV.js (removed) 6.45 kB 🟢 -6.45 kB 🟢 -2.21 kB 🟢 -1.93 kB
assets/CancelSubscriptionDialogContent-CIOT4fB2.js (new) 5.97 kB 🔴 +5.97 kB 🔴 +1.98 kB 🔴 +1.75 kB
assets/CancelSubscriptionDialogContent-kj3lad4L.js (removed) 5.97 kB 🟢 -5.97 kB 🟢 -1.98 kB 🟢 -1.75 kB
assets/load3dPreviewExtensions-CgblHtQU.js (removed) 5.88 kB 🟢 -5.88 kB 🟢 -1.81 kB 🟢 -1.6 kB
assets/load3dPreviewExtensions-DSBAtkhj.js (new) 5.88 kB 🔴 +5.88 kB 🔴 +1.81 kB 🔴 +1.6 kB
assets/launchCancellationFlow-BhYGNSiQ.js (removed) 5.18 kB 🟢 -5.18 kB 🟢 -1.78 kB 🟢 -1.56 kB
assets/launchCancellationFlow-CmnDotay.js (new) 5.18 kB 🔴 +5.18 kB 🔴 +1.78 kB 🔴 +1.58 kB
assets/CreateWorkspaceDialogContent-5ghpaqPf.js (new) 5.12 kB 🔴 +5.12 kB 🔴 +1.8 kB 🔴 +1.55 kB
assets/CreateWorkspaceDialogContent-BU7_HpoU.js (removed) 5.12 kB 🟢 -5.12 kB 🟢 -1.8 kB 🟢 -1.55 kB
assets/ChangeMemberRoleDialogContent-CB5smX-Y.js (removed) 4.97 kB 🟢 -4.97 kB 🟢 -1.64 kB 🟢 -1.43 kB
assets/ChangeMemberRoleDialogContent-DRqcfT6s.js (new) 4.97 kB 🔴 +4.97 kB 🔴 +1.64 kB 🔴 +1.43 kB
assets/InviteMemberDialogContent-CYs13COe.js (removed) 4.96 kB 🟢 -4.96 kB 🟢 -1.65 kB 🟢 -1.44 kB
assets/InviteMemberDialogContent-i1hn_lNg.js (new) 4.96 kB 🔴 +4.96 kB 🔴 +1.65 kB 🔴 +1.44 kB
assets/EditWorkspaceDialogContent-ChGCgtap.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.76 kB 🟢 -1.52 kB
assets/EditWorkspaceDialogContent-CKdsyDiI.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.76 kB 🔴 +1.53 kB
assets/WidgetTextarea-D7FVeAda.js (new) 4.83 kB 🔴 +4.83 kB 🔴 +1.88 kB 🔴 +1.64 kB
assets/WidgetTextarea-DcrtimpF.js (removed) 4.83 kB 🟢 -4.83 kB 🟢 -1.88 kB 🟢 -1.64 kB
assets/saveMesh-C8lODAXr.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.52 kB 🟢 -1.37 kB
assets/saveMesh-CtV3AI7-.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.52 kB 🔴 +1.38 kB
assets/WorkspacePanelContent-BTIS0Ski.js (new) 4.74 kB 🔴 +4.74 kB 🔴 +1.63 kB 🔴 +1.44 kB
assets/WorkspacePanelContent-LVSisPEM.js (removed) 4.74 kB 🟢 -4.74 kB 🟢 -1.63 kB 🟢 -1.44 kB
assets/ValueControlPopover-r6fwYPRn.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.55 kB 🟢 -1.38 kB
assets/ValueControlPopover-vK8vYML5.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.55 kB 🔴 +1.38 kB
assets/DeleteWorkspaceDialogContent-MnOwnUzH.js (new) 3.84 kB 🔴 +3.84 kB 🔴 +1.44 kB 🔴 +1.24 kB
assets/DeleteWorkspaceDialogContent-YoQ6amwu.js (removed) 3.84 kB 🟢 -3.84 kB 🟢 -1.44 kB 🟢 -1.24 kB
assets/RemoveMemberDialogContent-CsHkazcO.js (new) 3.76 kB 🔴 +3.76 kB 🔴 +1.39 kB 🔴 +1.2 kB
assets/RemoveMemberDialogContent-pR0UvjNK.js (removed) 3.76 kB 🟢 -3.76 kB 🟢 -1.39 kB 🟢 -1.2 kB
assets/RevokeInviteDialogContent-C4dCG7R-.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.4 kB 🟢 -1.21 kB
assets/RevokeInviteDialogContent-CFCnSnYy.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.4 kB 🔴 +1.21 kB
assets/LeaveWorkspaceDialogContent-BWcjy3zv.js (new) 3.67 kB 🔴 +3.67 kB 🔴 +1.39 kB 🔴 +1.19 kB
assets/LeaveWorkspaceDialogContent-V_MZ2P8-.js (removed) 3.67 kB 🟢 -3.67 kB 🟢 -1.39 kB 🟢 -1.19 kB
assets/InviteMemberUpsellDialogContent-CD3pX3_1.js (new) 3.47 kB 🔴 +3.47 kB 🔴 +1.24 kB 🔴 +1.09 kB
assets/InviteMemberUpsellDialogContent-D7umFtQu.js (removed) 3.47 kB 🟢 -3.47 kB 🟢 -1.24 kB 🟢 -1.09 kB
assets/MediaVideoTop-DixU6aE8.js (new) 3.46 kB 🔴 +3.46 kB 🔴 +1.33 kB 🔴 +1.16 kB
assets/workspaceCheckoutTelemetry-8vgIf3vf.js (new) 3.4 kB 🔴 +3.4 kB 🔴 +1.52 kB 🔴 +1.32 kB
assets/workspaceCheckoutTelemetry-v11RGWIS.js (removed) 3.4 kB 🟢 -3.4 kB 🟢 -1.52 kB 🟢 -1.33 kB
assets/GlobalToast-CwbDzzaw.js (new) 3.25 kB 🔴 +3.25 kB 🔴 +1.3 kB 🔴 +1.11 kB
assets/GlobalToast-kY4HOjHW.js (removed) 3.25 kB 🟢 -3.25 kB 🟢 -1.3 kB 🟢 -1.11 kB
assets/Media3DTop-CEghLZ_L.js (removed) 3.21 kB 🟢 -3.21 kB 🟢 -1.27 kB 🟢 -1.11 kB
assets/Media3DTop-D_EVCCu9.js (new) 3.21 kB 🔴 +3.21 kB 🔴 +1.26 kB 🔴 +1.11 kB
assets/MediaVideoTop-7GGGEnch.js (removed) 2.96 kB 🟢 -2.96 kB 🟢 -1.19 kB 🟢 -1.04 kB
assets/load3dAdvanced-BviIm--0.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.09 kB 🔴 +958 B
assets/load3dAdvanced-TZR4dd21.js (removed) 2.82 kB 🟢 -2.82 kB 🟢 -1.09 kB 🟢 -954 B
assets/SubscribeToRun-B7M8C-uR.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -1.04 kB 🟢 -911 B
assets/SubscribeToRun-BaMUoWeQ.js (new) 2.39 kB 🔴 +2.39 kB 🔴 +1.04 kB 🔴 +911 B
assets/MediaAudioTop-Cfk3k_ac.js (new) 1.62 kB 🔴 +1.62 kB 🔴 +807 B 🔴 +667 B
assets/MediaAudioTop-JHrGiJ6W.js (removed) 1.62 kB 🟢 -1.62 kB 🟢 -807 B 🟢 -669 B
assets/cloudSessionCookie-2migbSvD.js (new) 933 B 🔴 +933 B 🔴 +432 B 🔴 +379 B
assets/cloudSessionCookie-BclvnC2F.js (removed) 933 B 🟢 -933 B 🟢 -433 B 🟢 -380 B
assets/cloudBadges-Cu6Cck41.js (removed) 922 B 🟢 -922 B 🟢 -516 B 🟢 -443 B
assets/cloudBadges-OFxwGdvl.js (new) 922 B 🔴 +922 B 🔴 +516 B 🔴 +442 B
assets/Load3DAdvanced-PwL1if4z.js (new) 761 B 🔴 +761 B 🔴 +424 B 🔴 +358 B
assets/Load3DAdvanced-V5Wd2Nc1.js (removed) 761 B 🟢 -761 B 🟢 -423 B 🟢 -358 B
assets/nightlyBadges-BRSLxh4a.js (new) 411 B 🔴 +411 B 🔴 +273 B 🔴 +232 B
assets/nightlyBadges-zOp_PhR5.js (removed) 411 B 🟢 -411 B 🟢 -273 B 🟢 -271 B
assets/Load3dViewerContent-Avix7bVp.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -91 B
assets/Load3dViewerContent-Fns0BjnX.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +92 B
assets/missingModelMetadata-B4vYHNOH.js (removed) 125 B 🟢 -125 B 🟢 -103 B 🟢 -104 B
assets/missingModelMetadata-C-HdRmpF.js (new) 125 B 🔴 +125 B 🔴 +103 B 🔴 +106 B
assets/Load3DAdvanced-B6ousKb6.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -87 B
assets/Load3DAdvanced-D8uZdVlK.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +88 B
assets/WidgetLegacy-CqIalJ28.js (new) 117 B 🔴 +117 B 🔴 +106 B 🔴 +104 B
assets/WidgetLegacy-DLCC_lod.js (removed) 117 B 🟢 -117 B 🟢 -106 B 🟢 -104 B
assets/workflowDraftStoreV2-B25zqJQd.js (new) 112 B 🔴 +112 B 🔴 +101 B 🔴 +116 B
assets/workflowDraftStoreV2-BbWDTXDa.js (removed) 112 B 🟢 -112 B 🟢 -101 B 🟢 -110 B
assets/Load3D-2Rru826D.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -80 B
assets/Load3D-BQNUle7T.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +87 B
assets/changeTracker-B2k7nFgW.js (removed) 91 B 🟢 -91 B 🟢 -93 B 🟢 -85 B
assets/changeTracker-CouFcQCb.js (new) 91 B 🔴 +91 B 🔴 +93 B 🔴 +83 B

Status: 70 added / 70 removed / 218 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.8 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.8 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.5 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.2 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 71.4 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.2 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.1 MB heap
legacy-node-drag: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 78.5 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.5 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 70.1 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.6 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 73.3 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 98ms TBT · 98.6 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 74.7 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 176.8 MB heap
vue-large-graph-pan: · 56.3 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 40ms TBT · 186.1 MB heap
workflow-execution: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.7 MB heap

✅ No regressions detected.

All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.1
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 5ms 7ms +28% z=-4.6
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 9 9 +0% z=-3.8
canvas-idle: task duration 433ms 426ms -2% z=1.0
canvas-idle: script duration 6ms 7ms +25% z=-8.1
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 76.1 MB 68.8 MB -10%
canvas-idle: DOM nodes -281 -282 +0% z=-238.8
canvas-idle: event listeners -151 -181 +20% z=-40.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 +23% z=-1.5
canvas-mouse-sweep: style recalc duration 25ms 35ms +36% z=-2.5
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 71 75 +6% z=-1.6
canvas-mouse-sweep: task duration 692ms 765ms +10% z=-1.7
canvas-mouse-sweep: script duration 77ms 90ms +17% z=-7.1
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 54.5 MB 58.8 MB +8%
canvas-mouse-sweep: DOM nodes -280 -280 +0% z=-132.3
canvas-mouse-sweep: event listeners -151 -182 +21% z=-45.7
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms +0%
canvas-zoom-sweep: layout duration 1ms 1ms +12% z=0.1
canvas-zoom-sweep: style recalc duration 13ms 15ms +14% z=-3.0
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 30 30 -2% z=-3.9
canvas-zoom-sweep: task duration 304ms 297ms -2% z=-1.3
canvas-zoom-sweep: script duration 8ms 10ms +18% z=-5.7
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 61.6 MB 61.5 MB -0%
canvas-zoom-sweep: DOM nodes 77 77 -1% z=-3.5
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.6
dom-widget-clipping: p95 frame time 17ms 17ms -0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 6ms 8ms +39% z=-1.8
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 13 12 -8% z=-2.2
dom-widget-clipping: task duration 282ms 317ms +12% z=-2.9
dom-widget-clipping: script duration 39ms 46ms +19% z=-6.8
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 68.4 MB 68.2 MB -0%
dom-widget-clipping: DOM nodes 22 20 -9% z=-1.5
dom-widget-clipping: event listeners 0 1 variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.2
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 6ms 8ms +45% z=-3.8
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 9 10 +11% z=-5.1
large-graph-idle: task duration 506ms 510ms +1% z=-0.6
large-graph-idle: script duration 11ms 14ms +25% z=-8.4
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 84.5 MB 71.4 MB -16%
large-graph-idle: DOM nodes -280 -280 +0% z=-337.1
large-graph-idle: event listeners -177 -178 +1% z=-33.5
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 10ms 18ms +80% z=0.3
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 70 +1% z=-0.1
large-graph-pan: task duration 939ms 993ms +6% z=-2.1
large-graph-pan: script duration 244ms 264ms +8% z=-7.3
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 83.4 MB 67.2 MB -19%
large-graph-pan: DOM nodes -280 -272 -3% z=-176.1
large-graph-pan: event listeners -149 -148 -1% z=-184.7
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms -1%
large-graph-zoom: layout duration 7ms 7ms +12%
large-graph-zoom: style recalc duration 13ms 15ms +18%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 67 66 -2%
large-graph-zoom: task duration 1058ms 1177ms +11%
large-graph-zoom: script duration 272ms 324ms +19%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 91.7 MB 62.1 MB -32%
large-graph-zoom: DOM nodes 18 -136 -853%
large-graph-zoom: event listeners 8 -168 -2200%
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 8ms 10ms +39%
legacy-node-drag: layout count 0 0 +0%
legacy-node-drag: style recalc count 48 48 +0%
legacy-node-drag: task duration 1099ms 1202ms +9%
legacy-node-drag: script duration 335ms 371ms +11%
legacy-node-drag: TBT 0ms 0ms +0%
legacy-node-drag: heap used 67.1 MB 78.5 MB +17%
legacy-node-drag: DOM nodes 16 16 +0%
legacy-node-drag: event listeners 186 184 -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 6ms 11ms +75% z=1.7
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 10 10 -5% z=-0.1
minimap-idle: task duration 518ms 545ms +5% z=0.4
minimap-idle: script duration 13ms 16ms +25% z=-8.3
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 66.0 MB 68.5 MB +4%
minimap-idle: DOM nodes -278 -274 -1% z=-214.3
minimap-idle: event listeners -149 -149 +0% z=-232.6
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
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 7ms 10ms +37% z=-3.2
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 48 +1% z=-0.8
subgraph-dom-widget-clipping: task duration 300ms 320ms +7% z=-3.2
subgraph-dom-widget-clipping: script duration 87ms 97ms +11% z=-4.9
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 69.0 MB 70.1 MB +2%
subgraph-dom-widget-clipping: DOM nodes 20 21 +5% z=-1.1
subgraph-dom-widget-clipping: event listeners 8 7 -13% z=-1.6
subgraph-idle: avg frame time 17ms 17ms +0% z=-0.2
subgraph-idle: p95 frame time 17ms 17ms -1%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 5ms 8ms +45% z=-3.4
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 10 +0% z=-1.4
subgraph-idle: task duration 418ms 427ms +2% z=1.8
subgraph-idle: script duration 6ms 7ms +26% z=-4.9
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 63.7 MB 52.6 MB -17%
subgraph-idle: DOM nodes -279 -279 +0% z=-201.2
subgraph-idle: event listeners -183 -151 -17% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.1
subgraph-mouse-sweep: p95 frame time 17ms 17ms +0%
subgraph-mouse-sweep: layout duration 4ms 4ms +8% z=-1.7
subgraph-mouse-sweep: style recalc duration 29ms 32ms +9% z=-3.3
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 76 75 -1% z=-2.7
subgraph-mouse-sweep: task duration 653ms 680ms +4% z=-1.2
subgraph-mouse-sweep: script duration 58ms 75ms +28% z=-4.0
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 76.8 MB 73.3 MB -5%
subgraph-mouse-sweep: DOM nodes -280 -281 +0% z=-155.7
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 +0%
subgraph-transition-enter: layout duration 10ms 11ms +13%
subgraph-transition-enter: style recalc duration 25ms 26ms +4%
subgraph-transition-enter: layout count 15 15 +0%
subgraph-transition-enter: style recalc count 20 20 +0%
subgraph-transition-enter: task duration 723ms 796ms +10%
subgraph-transition-enter: script duration 13ms 15ms +16%
subgraph-transition-enter: TBT 110ms 98ms -11%
subgraph-transition-enter: heap used 85.6 MB 98.6 MB +15%
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 27ms 40ms +46%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 252 +1%
viewport-pan-sweep: task duration 3317ms 3386ms +2%
viewport-pan-sweep: script duration 781ms 839ms +8%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 86.7 MB 74.7 MB -14%
viewport-pan-sweep: DOM nodes -280 -252 -10%
viewport-pan-sweep: event listeners -163 -133 -18%
vue-large-graph-idle: avg frame time 17ms 17ms +3%
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 11846ms 14549ms +23%
vue-large-graph-idle: script duration 87ms 108ms +24%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 169.7 MB 176.8 MB +4%
vue-large-graph-idle: DOM nodes -8312 -8312 +0%
vue-large-graph-idle: event listeners -16389 -16391 +0%
vue-large-graph-pan: avg frame time 18ms 18ms +0%
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 13ms 15ms +12%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 86 143 +66%
vue-large-graph-pan: task duration 15041ms 17125ms +14%
vue-large-graph-pan: script duration 360ms 342ms -5%
vue-large-graph-pan: TBT 4ms 40ms +888%
vue-large-graph-pan: heap used 185.1 MB 186.1 MB +1%
vue-large-graph-pan: DOM nodes -8312 -8312 +0%
vue-large-graph-pan: event listeners -16385 -16386 +0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms +1%
workflow-execution: layout duration 1ms 1ms +13% z=-6.1
workflow-execution: style recalc duration 15ms 11ms -27% z=-6.0
workflow-execution: layout count 2 2 +0% z=-5.4
workflow-execution: style recalc count 13 7 -46% z=-5.3
workflow-execution: task duration 84ms 59ms -29% z=-5.9
workflow-execution: script duration 6ms 4ms -25% z=-8.4
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 63.6 MB 61.7 MB -3%
workflow-execution: DOM nodes 123 109 -12% z=-7.4
workflow-execution: event listeners 97 49 -49% z=-0.7
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-21T08:30:59.233Z",
  "gitSha": "2600ca81916b3cf3dbdb84095ec562727080b909",
  "branch": "matt/fe-1712-compact-grid-video-keyboard-playback",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 1991.4630000000102,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 6.541,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 428.6329999999999,
      "heapDeltaBytes": 3439276,
      "heapUsedBytes": 64985992,
      "domNodes": -282,
      "jsHeapTotalBytes": 5234688,
      "scriptDurationMs": 7.089999999999999,
      "eventListeners": -211,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-idle",
      "durationMs": 2007.1179999999913,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 6.910999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 422.46700000000004,
      "heapDeltaBytes": 17442596,
      "heapUsedBytes": 79281524,
      "domNodes": -282,
      "jsHeapTotalBytes": 4972544,
      "scriptDurationMs": 7.508000000000001,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1918.7449999999444,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 40.131,
      "layouts": 12,
      "layoutDurationMs": 3.496,
      "taskDurationMs": 818.241,
      "heapDeltaBytes": 5118276,
      "heapUsedBytes": 67252872,
      "domNodes": -279,
      "jsHeapTotalBytes": 4186112,
      "scriptDurationMs": 91.943,
      "eventListeners": -183,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1715.0510000000168,
      "styleRecalcs": 72,
      "styleRecalcDurationMs": 29.05,
      "layouts": 12,
      "layoutDurationMs": 3.122,
      "taskDurationMs": 711.303,
      "heapDeltaBytes": -5612376,
      "heapUsedBytes": 56123252,
      "domNodes": -281,
      "jsHeapTotalBytes": 5234688,
      "scriptDurationMs": 87.108,
      "eventListeners": -181,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1734.2459999999846,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 15.138,
      "layouts": 6,
      "layoutDurationMs": 0.7760000000000001,
      "taskDurationMs": 287.695,
      "heapDeltaBytes": 2732592,
      "heapUsedBytes": 64206416,
      "domNodes": 76,
      "jsHeapTotalBytes": 4718592,
      "scriptDurationMs": 9.327000000000002,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1661.8760000000066,
      "styleRecalcs": 29,
      "styleRecalcDurationMs": 13.972999999999999,
      "layouts": 6,
      "layoutDurationMs": 0.5219999999999999,
      "taskDurationMs": 307.14,
      "heapDeltaBytes": 3068468,
      "heapUsedBytes": 64699588,
      "domNodes": 77,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 10.502999999999998,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 525.7560000000012,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 9.731000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 323.519,
      "heapDeltaBytes": 10086356,
      "heapUsedBytes": 71501732,
      "domNodes": 20,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 46.068,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 496.22499999998126,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 7.223,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 310.317,
      "heapDeltaBytes": 9969060,
      "heapUsedBytes": 71515936,
      "domNodes": 20,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 45.63100000000001,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2024.3179999999938,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 6.326999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 495.231,
      "heapDeltaBytes": -13174316,
      "heapUsedBytes": 61808628,
      "domNodes": -280,
      "jsHeapTotalBytes": 2879488,
      "scriptDurationMs": 12.793000000000003,
      "eventListeners": -177,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2007.6760000000604,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.181000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 524.2,
      "heapDeltaBytes": 13263588,
      "heapUsedBytes": 87979796,
      "domNodes": -280,
      "jsHeapTotalBytes": 3403776,
      "scriptDurationMs": 14.877,
      "eventListeners": -179,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2115.5749999999784,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 20.738,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 954.7430000000002,
      "heapDeltaBytes": -6154740,
      "heapUsedBytes": 70306772,
      "domNodes": -268,
      "jsHeapTotalBytes": -1089536,
      "scriptDurationMs": 255.64600000000004,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2121.539999999982,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 14.311999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1030.6929999999998,
      "heapDeltaBytes": -6056404,
      "heapUsedBytes": 70658512,
      "domNodes": -275,
      "jsHeapTotalBytes": -1613824,
      "scriptDurationMs": 273.029,
      "eventListeners": -147,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3184.7040000000106,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 14.678,
      "layouts": 60,
      "layoutDurationMs": 7.105,
      "taskDurationMs": 1142.882,
      "heapDeltaBytes": -10337064,
      "heapUsedBytes": 67412228,
      "domNodes": -285,
      "jsHeapTotalBytes": 5238784,
      "scriptDurationMs": 321.30899999999997,
      "eventListeners": -153,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3106.9780000000264,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 15.382999999999997,
      "layouts": 60,
      "layoutDurationMs": 7.541000000000001,
      "taskDurationMs": 1210.571,
      "heapDeltaBytes": -14276148,
      "heapUsedBytes": 62846060,
      "domNodes": 14,
      "jsHeapTotalBytes": 4714496,
      "scriptDurationMs": 326.945,
      "eventListeners": -183,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "legacy-node-drag",
      "durationMs": 2136.539999999968,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 10.776000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1179.2910000000002,
      "heapDeltaBytes": 11439632,
      "heapUsedBytes": 95222764,
      "domNodes": 16,
      "jsHeapTotalBytes": 8318976,
      "scriptDurationMs": 363.66200000000003,
      "eventListeners": 184,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "legacy-node-drag",
      "durationMs": 2067.5370000000157,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 10.145000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1224.094,
      "heapDeltaBytes": -16300684,
      "heapUsedBytes": 69433864,
      "domNodes": 16,
      "jsHeapTotalBytes": 7639040,
      "scriptDurationMs": 379.33299999999997,
      "eventListeners": 184,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2037.6390000000129,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 7.972000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 511.15500000000003,
      "heapDeltaBytes": -12128288,
      "heapUsedBytes": 71711788,
      "domNodes": -276,
      "jsHeapTotalBytes": 2617344,
      "scriptDurationMs": 16.034,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2051.949000000036,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 13.876,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 578.1510000000001,
      "heapDeltaBytes": -11907476,
      "heapUsedBytes": 71850764,
      "domNodes": -272,
      "jsHeapTotalBytes": 2617344,
      "scriptDurationMs": 16.897000000000002,
      "eventListeners": -149,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 521.1029999999823,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 9.077999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 317.795,
      "heapDeltaBytes": 11989452,
      "heapUsedBytes": 73394760,
      "domNodes": 20,
      "jsHeapTotalBytes": 4980736,
      "scriptDurationMs": 98.388,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 525.8730000000469,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 10.340999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 322.405,
      "heapDeltaBytes": 11906632,
      "heapUsedBytes": 73620548,
      "domNodes": 22,
      "jsHeapTotalBytes": 5767168,
      "scriptDurationMs": 95.693,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1990.570000000048,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.585,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 416.78400000000005,
      "heapDeltaBytes": -5810608,
      "heapUsedBytes": 55619280,
      "domNodes": -279,
      "jsHeapTotalBytes": 4186112,
      "scriptDurationMs": 6.813999999999999,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2021.1709999999812,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.877000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 437.30100000000004,
      "heapDeltaBytes": -6641960,
      "heapUsedBytes": 54785524,
      "domNodes": -279,
      "jsHeapTotalBytes": 4710400,
      "scriptDurationMs": 7.555999999999998,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1691.7250000000195,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 30.913,
      "layouts": 16,
      "layoutDurationMs": 4.086,
      "taskDurationMs": 662.011,
      "heapDeltaBytes": 19904720,
      "heapUsedBytes": 81444540,
      "domNodes": -280,
      "jsHeapTotalBytes": 5496832,
      "scriptDurationMs": 73.003,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1702.413999999976,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 32.214,
      "layouts": 16,
      "layoutDurationMs": 4.199,
      "taskDurationMs": 697.94,
      "heapDeltaBytes": 10478452,
      "heapUsedBytes": 72254240,
      "domNodes": -282,
      "jsHeapTotalBytes": 5234688,
      "scriptDurationMs": 76.047,
      "eventListeners": -151,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1301.9319999999652,
      "styleRecalcs": 20,
      "styleRecalcDurationMs": 25.596,
      "layouts": 15,
      "layoutDurationMs": 10.999000000000002,
      "taskDurationMs": 796.4069999999998,
      "heapDeltaBytes": 20455284,
      "heapUsedBytes": 103420112,
      "domNodes": 13673,
      "jsHeapTotalBytes": 11272192,
      "scriptDurationMs": 14.957999999999998,
      "eventListeners": 2373,
      "totalBlockingTimeMs": 98,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8182.584999999961,
      "styleRecalcs": 253,
      "styleRecalcDurationMs": 40.728,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3268.024,
      "heapDeltaBytes": 5291076,
      "heapUsedBytes": 80962880,
      "domNodes": -232,
      "jsHeapTotalBytes": -40960,
      "scriptDurationMs": 831.658,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333338,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8147.328000000016,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 39.495000000000005,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3504.562,
      "heapDeltaBytes": 15328,
      "heapUsedBytes": 75645820,
      "domNodes": -271,
      "jsHeapTotalBytes": 221184,
      "scriptDurationMs": 847.2769999999999,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 15031.383000000005,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14493.083999999999,
      "heapDeltaBytes": -31607120,
      "heapUsedBytes": 190657560,
      "domNodes": -8312,
      "jsHeapTotalBytes": -11997184,
      "scriptDurationMs": 103.92499999999998,
      "eventListeners": -16391,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 15138.932000000068,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14604.356000000002,
      "heapDeltaBytes": -42266624,
      "heapUsedBytes": 180118628,
      "domNodes": -8312,
      "jsHeapTotalBytes": -8065024,
      "scriptDurationMs": 112.337,
      "eventListeners": -16391,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 17697.226000000057,
      "styleRecalcs": 143,
      "styleRecalcDurationMs": 15.456999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17205.684999999998,
      "heapDeltaBytes": -13863124,
      "heapUsedBytes": 195881764,
      "domNodes": -8312,
      "jsHeapTotalBytes": -12328960,
      "scriptDurationMs": 348.057,
      "eventListeners": -16385,
      "totalBlockingTimeMs": 3,
      "frameDurationMs": 18.329999999999927,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 17543.702000000052,
      "styleRecalcs": 143,
      "styleRecalcDurationMs": 14.699000000000018,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 17044.863,
      "heapDeltaBytes": -27878940,
      "heapUsedBytes": 194359332,
      "domNodes": -8312,
      "jsHeapTotalBytes": -15736832,
      "scriptDurationMs": 335.28799999999995,
      "eventListeners": -16387,
      "totalBlockingTimeMs": 76,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 82.587999999987,
      "styleRecalcs": 6,
      "styleRecalcDurationMs": 9.607999999999999,
      "layouts": 2,
      "layoutDurationMs": 0.5089999999999999,
      "taskDurationMs": 55.88200000000001,
      "heapDeltaBytes": 3044132,
      "heapUsedBytes": 64551144,
      "domNodes": 106,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 4.1259999999999994,
      "eventListeners": 49,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "workflow-execution",
      "durationMs": 102.86899999994148,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 12.506,
      "layouts": 2,
      "layoutDurationMs": 0.8089999999999998,
      "taskDurationMs": 62.53399999999999,
      "heapDeltaBytes": 3047108,
      "heapUsedBytes": 64905596,
      "domNodes": 111,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 4.247000000000001,
      "eventListeners": 49,
      "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 21, 2026
@mattmillerai mattmillerai added the cursor-review Trigger multi-model Cursor agent review on this PR label Aug 21, 2026

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔍 Cursor Review — Consolidated panel

Triggered by @mattmillerai.

Found 7 finding(s).

Severity Count
🟠 High 1
🟡 Medium 2
🟢 Low 2
⚪ Nit 2

Panel: 8/8 reviewers contributed findings.

Comment thread src/platform/assets/components/MediaVideoTop.vue Outdated
Comment thread src/platform/assets/components/MediaVideoTop.vue
Comment thread src/platform/assets/components/MediaVideoTop.test.ts Outdated
Comment thread src/platform/assets/components/MediaVideoTop.vue Outdated
Comment thread src/platform/assets/components/MediaVideoTop.vue
Comment thread src/platform/assets/components/MediaVideoTop.vue
Comment thread src/platform/assets/components/MediaVideoTop.vue Outdated
@codecov

codecov Bot commented Aug 21, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@            Coverage Diff             @@
##             main   #15542      +/-   ##
==========================================
+ Coverage   79.80%   82.07%   +2.27%     
==========================================
  Files        2214     1887     -327     
  Lines      127855   122906    -4949     
  Branches    40855    40124     -731     
==========================================
- Hits       102036   100880    -1156     
+ Misses      25214    21521    -3693     
+ Partials      605      505     -100     
Flag Coverage Δ
unit 73.29% <100.00%> (+<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/platform/assets/components/MediaAssetCard.vue 92.34% <ø> (-1.89%) ⬇️
src/platform/assets/components/MediaVideoTop.vue 100.00% <100.00%> (+18.51%) ⬆️

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

…rols are hidden

Render the play/pause button off shouldShowControls instead of the
showNativeControls prop so keyboard users can start playback in the
default grid path, gate it on asset.src, mark it non-draggable, add a
contrasting focus ring offset, and make the preview area inert while
the asset is deleting.
@dosubot dosubot Bot added size:S This PR changes 10-29 lines, ignoring generated files. and removed size:XS This PR changes 0-9 lines, ignoring generated files. labels Aug 21, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

agent-coded Opened by the agent-work code loop cursor-review Trigger multi-model Cursor agent review on this PR risk:R2 PR risk grade (advisory shadow check; grader-owned) size:S This PR changes 10-29 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant