Skip to content

refactor(assets): collapse useMediaAssets factory wrapper (FE-727)#12283

Open
dante01yoon wants to merge 4 commits into
mainfrom
jaewon/refactor-remove-useinternalfilesapi-wrapper
Open

refactor(assets): collapse useMediaAssets factory wrapper (FE-727)#12283
dante01yoon wants to merge 4 commits into
mainfrom
jaewon/refactor-remove-useinternalfilesapi-wrapper

Conversation

@dante01yoon
Copy link
Copy Markdown
Collaborator

@dante01yoon dante01yoon commented May 15, 2026

Summary

https://linear.app/comfyorg/issue/FE-727/refactor-usemediaasset

useMediaAssets was a factory wrapper that branched on isCloud and returned one of two near-identical implementations (useAssetsApi / useInternalFilesApi). Both implementations delegated to the same assetsStore actions (updateInputs / updateHistory / loadMoreHistory) — the real cloud/local fork lives inside assetsStore.fetchInputFiles (line 121), not at the composable layer.

Collapse the wrapper:

  1. Delete useInternalFilesApi (identical to useAssetsApi).
  2. Delete useMediaAssets (now a pass-through).
  3. Switch the four callers to useAssetsApi directly.

Changes

  • What:
    • Delete useInternalFilesApi.ts and useMediaAssets.ts.
    • AssetsSidebarTab.vue, WidgetSelectDropdown.vue, useOutputHistory.ts: call useAssetsApi directly.
    • useWidgetSelectItems.ts: narrow outputMediaAssets prop type to IAssetsProvider (the interface useOutputHistory already implements directly).
    • Test mocks repointed from useMediaAssetsuseAssetsApi.
    • Two unrelated tailwind class-order lint errors auto-fixed by pnpm lint:fix to keep CI green.
  • Breaking: None — no behavior change.

Review Focus

The real cloud/local fork remains at assetsStore.ts:121 (fetchInputFiles = isCloud ? fetchInputFilesFromCloud : fetchInputFilesFromAPI). That branch is M1-strict and clears once BE-933 lands. This PR only collapses the dead wrapper layer above it.

IAssetsProvider is intentionally kept — useOutputHistory.ts:83 directly implements it for a different use case, so the interface still has more than one consumer.

Surfaced while working on the FE-678 cloud/local asset branching survey.

Screenshots (if applicable)

N/A — no UI change.

useAssetsApi and useInternalFilesApi both delegate to the same
assetsStore actions (updateInputs/updateHistory/loadMoreHistory).
The wrapper-level isCloud switch in useMediaAssets was redundant
with the existing branch inside assetsStore.fetchInputFiles.

Collapse useMediaAssets to call useAssetsApi directly and delete
the duplicate wrapper. No behavior change.
@dante01yoon dante01yoon requested a review from a team May 15, 2026 02:11
@dosubot dosubot Bot added the size:M This PR changes 30-99 lines, ignoring generated files. label May 15, 2026
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 15, 2026

Review Change Stack

📝 Walkthrough

Walkthrough

The PR completes removal of the useInternalFilesApi abstraction by updating all consumer components and composables to directly invoke useAssetsApi instead of routing through the useMediaAssets wrapper. This consolidates media asset data sourcing across four functional areas: sidebar asset tabs, output history tracking, widget select dropdowns, and widget select item composition.

Changes

Media Assets API Consolidation

Layer / File(s) Summary
Sidebar assets tab provider consolidation
src/components/sidebar/tabs/AssetsSidebarTab.vue
AssetsSidebarTab now imports and directly calls useAssetsApi('input') and useAssetsApi('output') to provide asset lists and state to both input and output tabs, replacing the useMediaAssets wrapper.
Output history assets tracking
src/renderer/extensions/linearMode/useOutputHistory.ts, src/renderer/extensions/linearMode/useOutputHistory.test.ts
useOutputHistory updates its backingOutputs initialization from useMediaAssets('output') to useAssetsApi('output'), with the test mock adjusted to target the new composable.
Widget select dropdown media source
src/renderer/extensions/vueNodes/widgets/components/WidgetSelectDropdown.vue, src/renderer/extensions/vueNodes/widgets/components/WidgetSelectDropdown.test.ts
WidgetSelectDropdown switches outputMediaAssets from useMediaAssets('output') to useAssetsApi('output'), with test mocks updated to match.
Widget select items options type contract
src/renderer/extensions/vueNodes/widgets/composables/useWidgetSelectItems.test.ts
useWidgetSelectItems test updates its media assets mock to target useAssetsApi instead of useMediaAssets, preserving the same mock return object.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Poem

A rabbit hops through code so neat,
Casting out the wrapper fleet,
Direct to Assets now they bound,
One true source of truth is found! 🐰✨

🚥 Pre-merge checks | ✅ 6 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (6 passed)
Check name Status Explanation
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.
End-To-End Regression Coverage For Fixes ✅ Passed PR is a refactoring ("refactor" keyword in title), not a bug fix. Explicitly states "no behavior change." Check for end-to-end regression tests only applies to bug-fix PRs.
Adr Compliance For Entity/Litegraph Changes ✅ Passed Custom check does not apply. No changed files are in src/lib/litegraph/, src/ecs/, or modify graph entities (nodes, links, etc). Changes are in assets/composables and UI components only.
Title check ✅ Passed The title accurately describes the main change: removing the useMediaAssets wrapper and collapsing its logic to directly use useAssetsApi, which aligns with the refactoring across all modified files.
Description check ✅ Passed The PR description comprehensively covers all required template sections with clear details about what was removed, why the refactor happened, specific file changes, and confirmation of no breaking changes.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ 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 jaewon/refactor-remove-useinternalfilesapi-wrapper

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

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

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 15, 2026

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

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

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 15, 2026

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 05/18/2026, 03:02:25 AM UTC

Links

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 15, 2026

📦 Bundle: 5.38 MB gzip 🟢 -48 B

Details

Summary

  • Raw size: 24.8 MB baseline 24.8 MB — 🟢 -1.74 kB
  • Gzip: 5.38 MB baseline 5.38 MB — 🟢 -48 B
  • Brotli: 4.16 MB baseline 4.16 MB — 🔴 +197 B
  • Bundles: 268 current • 268 baseline • 118 added / 118 removed

Category Glance
Data & Services 🟢 -1.73 kB (3.16 MB) · Other 🟢 -4 B (9.22 MB) · Graph Workspace 🟢 -4 B (1.24 MB) · Vendor & Third-Party ⚪ 0 B (9.94 MB) · Panels & Settings ⚪ 0 B (527 kB) · Utilities & Hooks ⚪ 0 B (367 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-BxQRbuE5.js (new) 26.1 kB 🔴 +26.1 kB 🔴 +8.76 kB 🔴 +7.51 kB
assets/index-WGPbWBH5.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) • 🟢 -4 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-CRNKebsj.js (removed) 1.24 MB 🟢 -1.24 MB 🟢 -264 kB 🟢 -199 kB
assets/GraphView-DUgzbE0U.js (new) 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-CujK0GSi.js (removed) 19.6 kB 🟢 -19.6 kB 🟢 -5.14 kB 🟢 -4.57 kB
assets/CloudSurveyView-DZShkRMj.js (new) 19.6 kB 🔴 +19.6 kB 🔴 +5.14 kB 🔴 +4.57 kB
assets/CloudLoginView-BXsCmx7Z.js (new) 12.5 kB 🔴 +12.5 kB 🔴 +3.55 kB 🔴 +3.13 kB
assets/CloudLoginView-yMiAnb9n.js (removed) 12.5 kB 🟢 -12.5 kB 🟢 -3.55 kB 🟢 -3.12 kB
assets/CloudSignupView-EACllbnZ.js (removed) 10.4 kB 🟢 -10.4 kB 🟢 -3.05 kB 🟢 -2.69 kB
assets/CloudSignupView-tRnubpoD.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +3.06 kB 🔴 +2.7 kB
assets/UserCheckView-Bmkv6RGC.js (new) 9.07 kB 🔴 +9.07 kB 🔴 +2.34 kB 🔴 +2.05 kB
assets/UserCheckView-yU-hsanj.js (removed) 9.07 kB 🟢 -9.07 kB 🟢 -2.34 kB 🟢 -2.04 kB
assets/CloudLayoutView-1D-2EB-C.js (removed) 7.81 kB 🟢 -7.81 kB 🟢 -2.48 kB 🟢 -2.17 kB
assets/CloudLayoutView-c2KHjw7B.js (new) 7.81 kB 🔴 +7.81 kB 🔴 +2.49 kB 🔴 +2.17 kB
assets/CloudForgotPasswordView--WkKTxuQ.js (new) 6.22 kB 🔴 +6.22 kB 🔴 +2.21 kB 🔴 +1.95 kB
assets/CloudForgotPasswordView-DqDTphzp.js (removed) 6.22 kB 🟢 -6.22 kB 🟢 -2.21 kB 🟢 -1.95 kB
assets/CloudAuthTimeoutView-BiBhquWc.js (removed) 5.58 kB 🟢 -5.58 kB 🟢 -2.05 kB 🟢 -1.79 kB
assets/CloudAuthTimeoutView-Cw9amIWS.js (new) 5.58 kB 🔴 +5.58 kB 🔴 +2.05 kB 🔴 +1.8 kB
assets/CloudSubscriptionRedirectView-CjQ9EbC8.js (new) 5.36 kB 🔴 +5.36 kB 🔴 +2.03 kB 🔴 +1.81 kB
assets/CloudSubscriptionRedirectView-CVhxz73i.js (removed) 5.36 kB 🟢 -5.36 kB 🟢 -2.03 kB 🟢 -1.8 kB
assets/UserSelectView-C5-lxe-O.js (new) 4.7 kB 🔴 +4.7 kB 🔴 +1.75 kB 🔴 +1.55 kB
assets/UserSelectView-tDBcY5yr.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-C11mprHg.js (new) 47.5 kB 🔴 +47.5 kB 🔴 +9.87 kB 🔴 +8.74 kB
assets/KeybindingPanel-CFwJVv8M.js (removed) 47.5 kB 🟢 -47.5 kB 🟢 -9.87 kB 🟢 -8.74 kB
assets/SecretsPanel-D72FPqKO.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.73 kB 🔴 +5.05 kB
assets/SecretsPanel-DRsnQMCY.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.73 kB 🟢 -5.05 kB
assets/LegacyCreditsPanel-5mdJDYUd.js (removed) 21.8 kB 🟢 -21.8 kB 🟢 -5.94 kB 🟢 -5.25 kB
assets/LegacyCreditsPanel-BvAlVw_X.js (new) 21.8 kB 🔴 +21.8 kB 🔴 +5.94 kB 🔴 +5.24 kB
assets/SubscriptionPanel-Bn78Va56.js (removed) 20.2 kB 🟢 -20.2 kB 🟢 -5.19 kB 🟢 -4.55 kB
assets/SubscriptionPanel-C6vWEj4c.js (new) 20.2 kB 🔴 +20.2 kB 🔴 +5.18 kB 🔴 +4.56 kB
assets/AboutPanel-Co6HprIk.js (new) 12 kB 🔴 +12 kB 🔴 +3.32 kB 🔴 +2.98 kB
assets/AboutPanel-CrA4LU3e.js (removed) 12 kB 🟢 -12 kB 🟢 -3.33 kB 🟢 -2.99 kB
assets/ExtensionPanel-BDM8o23e.js (new) 10.1 kB 🔴 +10.1 kB 🔴 +2.94 kB 🔴 +2.62 kB
assets/ExtensionPanel-Bv9VNslr.js (removed) 10.1 kB 🟢 -10.1 kB 🟢 -2.94 kB 🟢 -2.63 kB
assets/ServerConfigPanel-B76tS8fg.js (new) 7.13 kB 🔴 +7.13 kB 🔴 +2.39 kB 🔴 +2.14 kB
assets/ServerConfigPanel-DoBY1JgZ.js (removed) 7.13 kB 🟢 -7.13 kB 🟢 -2.39 kB 🟢 -2.13 kB
assets/UserPanel-gF0Az6_z.js (new) 6.84 kB 🔴 +6.84 kB 🔴 +2.27 kB 🔴 +2.01 kB
assets/UserPanel-vcqDFmmF.js (removed) 6.84 kB 🟢 -6.84 kB 🟢 -2.27 kB 🟢 -2 kB
assets/cloudRemoteConfig-3taEcI0c.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -1.02 kB 🟢 -881 B
assets/cloudRemoteConfig-C3oYJMW2.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +1.02 kB 🔴 +882 B
assets/refreshRemoteConfig-BIJ-H8uX.js (removed) 1.45 kB 🟢 -1.45 kB 🟢 -650 B 🟢 -555 B
assets/refreshRemoteConfig-hSWUbo2T.js (new) 1.45 kB 🔴 +1.45 kB 🔴 +649 B 🔴 +555 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-cpG1gDPf.js (removed) 3.65 kB 🟢 -3.65 kB 🟢 -1.29 kB 🟢 -1.1 kB
assets/auth-CvEIfhCm.js (new) 3.65 kB 🔴 +3.65 kB 🔴 +1.29 kB 🔴 +1.11 kB
assets/SignUpForm-CiqYYEFs.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/SignUpForm-D5tk2cbf.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/UpdatePasswordContent-CphYgmIi.js (removed) 2.98 kB 🟢 -2.98 kB 🟢 -1.33 kB 🟢 -1.18 kB
assets/UpdatePasswordContent-DodADFwD.js (new) 2.98 kB 🔴 +2.98 kB 🔴 +1.33 kB 🔴 +1.19 kB
assets/authStore--ZLj_gj-.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -595 B 🟢 -531 B
assets/authStore-DtwE9285.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +597 B 🔴 +532 B
assets/auth-_VfW7qWh.js (removed) 348 B 🟢 -348 B 🟢 -218 B 🟢 -189 B
assets/auth-B-ySeVcF.js (new) 348 B 🔴 +348 B 🔴 +217 B 🔴 +210 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-DEyjaokW.js (removed) 85.8 kB 🟢 -85.8 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/ComfyHubPublishDialog-DUOE_aoq.js (new) 85.8 kB 🔴 +85.8 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/useShareDialog-CO6iPcal.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.81 kB 🟢 -5.14 kB
assets/useShareDialog-DmP6sUgd.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.81 kB 🔴 +5.14 kB
assets/ComfyHubPublishDialog-DSWC0hOa.js (new) 1.43 kB 🔴 +1.43 kB 🔴 +660 B 🔴 +600 B
assets/ComfyHubPublishDialog-J09zDfqG.js (removed) 1.43 kB 🟢 -1.43 kB 🟢 -658 B 🟢 -590 B
assets/useSubscriptionDialog-cO3Ut3HB.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +590 B 🔴 +520 B
assets/useSubscriptionDialog-PfOGSGZD.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -587 B 🟢 -521 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-DMPKUBV6.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.79 kB 🟢 -3.38 kB
assets/ComfyQueueButton-NSZxAhS6.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.79 kB 🔴 +3.38 kB
assets/useTerminalTabs-BH_DL7N2.js (new) 11.1 kB 🔴 +11.1 kB 🔴 +3.76 kB 🔴 +3.31 kB
assets/useTerminalTabs-Cc0haBoj.js (removed) 11.1 kB 🟢 -11.1 kB 🟢 -3.76 kB 🟢 -3.31 kB
assets/SubscribeButton-BctmxoWs.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.05 kB 🟢 -933 B
assets/SubscribeButton-Dr5laFou.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.05 kB 🔴 +930 B
assets/cloudFeedbackTopbarButton-DHE1_nFX.js (removed) 1.94 kB 🟢 -1.94 kB 🟢 -964 B 🟢 -857 B
assets/cloudFeedbackTopbarButton-DWaHk1nb.js (new) 1.94 kB 🔴 +1.94 kB 🔴 +964 B 🔴 +859 B
assets/ComfyQueueButton-DrIAVgXB.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +627 B 🔴 +571 B
assets/ComfyQueueButton-NyJQ3nhr.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -623 B 🟢 -571 B

Status: 5 added / 5 removed / 8 unchanged

Data & Services — 3.16 MB (baseline 3.16 MB) • 🟢 -1.73 kB

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-Dtpru9MA.js (removed) 2.09 MB 🟢 -2.09 MB 🟢 -477 kB 🟢 -361 kB
assets/dialogService-CapvJ4Rg.js (new) 2.09 MB 🔴 +2.09 MB 🔴 +477 kB 🔴 +361 kB
assets/api-CGF7rquR.js (new) 898 kB 🔴 +898 kB 🔴 +215 kB 🔴 +169 kB
assets/api-DykBtRcA.js (removed) 898 kB 🟢 -898 kB 🟢 -215 kB 🟢 -169 kB
assets/load3dService-D2ZcM6dw.js (new) 116 kB 🔴 +116 kB 🔴 +25.4 kB 🔴 +21.6 kB
assets/load3dService-DXeOiTOv.js (removed) 116 kB 🟢 -116 kB 🟢 -25.4 kB 🟢 -21.6 kB
assets/workflowShareService-7UEnt-Ha.js (removed) 16.7 kB 🟢 -16.7 kB 🟢 -4.92 kB 🟢 -4.36 kB
assets/workflowShareService-C1Fo0GjO.js (new) 16.7 kB 🔴 +16.7 kB 🔴 +4.92 kB 🔴 +4.36 kB
assets/keybindingService-C-yDPLQ8.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.22 kB
assets/keybindingService-CHzQMP4O.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.21 kB
assets/releaseStore-C1w9_bwp.js (new) 8.12 kB 🔴 +8.12 kB 🔴 +2.28 kB 🔴 +2 kB
assets/releaseStore-DtgXICLY.js (removed) 8.12 kB 🟢 -8.12 kB 🟢 -2.28 kB 🟢 -2 kB
assets/userStore-BeWlNnhU.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +933 B 🔴 +818 B
assets/userStore-DnvnCWUc.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -931 B 🟢 -823 B
assets/audioService-CDgovONQ.js (removed) 1.8 kB 🟢 -1.8 kB 🟢 -878 B 🟢 -764 B
assets/audioService-Dov38vDS.js (new) 1.8 kB 🔴 +1.8 kB 🔴 +880 B 🔴 +762 B
assets/releaseStore-Cvhh25js.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +595 B 🔴 +530 B
assets/releaseStore-D-Oq0Uc7.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -592 B 🟢 -526 B
assets/workflowDraftStore-UoV3224-.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -588 B 🟢 -524 B
assets/workflowDraftStore-ZhlmdjTq.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +590 B 🔴 +523 B
assets/dialogService-DZ_FtDA_.js (removed) 1.24 kB 🟢 -1.24 kB 🟢 -579 B 🟢 -518 B
assets/dialogService-hchiQ83M.js (new) 1.24 kB 🔴 +1.24 kB 🔴 +583 B 🔴 +521 B
assets/settingStore-CfPT5wqd.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -583 B 🟢 -521 B
assets/settingStore-D_8wa-3F.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +585 B 🔴 +519 B
assets/assetsStore-B8Sp957i.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -583 B 🟢 -519 B
assets/assetsStore-CJxsIwzD.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +586 B 🔴 +520 B

Status: 13 added / 13 removed / 4 unchanged

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-BCK3UzxJ.js (new) 234 kB 🔴 +234 kB 🔴 +52.1 kB 🔴 +42.5 kB
assets/useConflictDetection-Db42-Dmb.js (removed) 234 kB 🟢 -234 kB 🟢 -52.1 kB 🟢 -42.5 kB
assets/useLoad3d-Bo6rJj1D.js (new) 23.9 kB 🔴 +23.9 kB 🔴 +5.42 kB 🔴 +4.79 kB
assets/useLoad3d-CzZd6ARq.js (removed) 23.9 kB 🟢 -23.9 kB 🟢 -5.42 kB 🟢 -4.78 kB
assets/useLoad3dViewer-C-NayUH-.js (new) 21 kB 🔴 +21 kB 🔴 +4.93 kB 🔴 +4.3 kB
assets/useLoad3dViewer-t-ity3Nm.js (removed) 21 kB 🟢 -21 kB 🟢 -4.92 kB 🟢 -4.32 kB
assets/useFeatureFlags-AfLDhVl0.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +1.79 kB 🔴 +1.52 kB
assets/useFeatureFlags-rIIX6JTm.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -1.79 kB 🟢 -1.52 kB
assets/useCopyToClipboard-BOx5sW0F.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.58 kB
assets/useCopyToClipboard-BYQc2sNJ.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.57 kB
assets/useWorkspaceUI-BB2Zfu17.js (removed) 3.34 kB 🟢 -3.34 kB 🟢 -981 B 🟢 -810 B
assets/useWorkspaceUI-Bujs6Rxq.js (new) 3.34 kB 🔴 +3.34 kB 🔴 +981 B 🔴 +814 B
assets/subscriptionCheckoutUtil-B-WWNhHM.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.18 kB
assets/subscriptionCheckoutUtil-Bse8oVNX.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.18 kB
assets/assetPreviewUtil-B7tYPsmT.js (new) 2.43 kB 🔴 +2.43 kB 🔴 +1.01 kB 🔴 +883 B
assets/assetPreviewUtil-t7Xk7U29.js (removed) 2.43 kB 🟢 -2.43 kB 🟢 -1.01 kB 🟢 -881 B
assets/useUpstreamValue-B0Cg0jMi.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -800 B 🟢 -707 B
assets/useUpstreamValue-BSBjaaTS.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +802 B 🔴 +711 B
assets/useLoad3d-B_daB342.js (new) 1.41 kB 🔴 +1.41 kB 🔴 +654 B 🔴 +591 B
assets/useLoad3d-DPFpcm2P.js (removed) 1.41 kB 🟢 -1.41 kB 🟢 -652 B 🟢 -603 B
assets/useLoad3dViewer-BEZS8U1h.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +621 B 🔴 +567 B
assets/useLoad3dViewer-DR--MGVW.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -617 B 🟢 -566 B
assets/useCurrentUser-CUsueisu.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +586 B 🔴 +521 B
assets/useCurrentUser-u684g01j.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -583 B 🟢 -518 B
assets/useWorkspaceSwitch-CD6lGChH.js (new) 747 B 🔴 +747 B 🔴 +382 B 🔴 +332 B
assets/useWorkspaceSwitch-DaOM0dIY.js (removed) 747 B 🟢 -747 B 🟢 -382 B 🟢 -327 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.22 MB (baseline 9.22 MB) • 🟢 -4 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-Cu9pZx5T.js (new) 78 kB 🔴 +78 kB 🔴 +20.2 kB 🔴 +17.2 kB
assets/core-D-nIioy4.js (removed) 78 kB 🟢 -78 kB 🟢 -20.2 kB 🟢 -17.2 kB
assets/groupNode-CF3_RY2D.js (removed) 74.9 kB 🟢 -74.9 kB 🟢 -18.7 kB 🟢 -16.5 kB
assets/groupNode-DKUR58JG.js (new) 74.9 kB 🔴 +74.9 kB 🔴 +18.7 kB 🔴 +16.5 kB
assets/WidgetSelect-B6fXo8jr.js (removed) 68.4 kB 🟢 -68.4 kB 🟢 -15.1 kB 🟢 -13 kB
assets/WidgetSelect-C-ZKxSx1.js (new) 68.4 kB 🔴 +68.4 kB 🔴 +15.1 kB 🔴 +13 kB
assets/SubscriptionRequiredDialogContentWorkspace-BQ-VaQIs.js (removed) 48.9 kB 🟢 -48.9 kB 🟢 -9.55 kB 🟢 -8.23 kB
assets/SubscriptionRequiredDialogContentWorkspace-QlA7XFRW.js (new) 48.9 kB 🔴 +48.9 kB 🔴 +9.56 kB 🔴 +8.25 kB
assets/Load3DControls-BZzh2isD.js (new) 46.1 kB 🔴 +46.1 kB 🔴 +7.5 kB 🔴 +6.55 kB
assets/Load3DControls-DHTQMTfW.js (removed) 46.1 kB 🟢 -46.1 kB 🟢 -7.5 kB 🟢 -6.54 kB
assets/WorkspacePanelContent-5ULO0bKv.js (removed) 34.3 kB 🟢 -34.3 kB 🟢 -7.44 kB 🟢 -6.59 kB
assets/WorkspacePanelContent-DQgxDqIe.js (new) 34.3 kB 🔴 +34.3 kB 🔴 +7.44 kB 🔴 +6.61 kB
assets/WidgetPainter-Cqu58jwY.js (removed) 33.5 kB 🟢 -33.5 kB 🟢 -8.29 kB 🟢 -7.34 kB
assets/WidgetPainter-Dmyi3OF-.js (new) 33.5 kB 🔴 +33.5 kB 🔴 +8.28 kB 🔴 +7.35 kB
assets/Load3dViewerContent-NNlzT1qY.js (removed) 30.6 kB 🟢 -30.6 kB 🟢 -6.19 kB 🟢 -5.36 kB
assets/Load3dViewerContent-O5rZKGrk.js (new) 30.6 kB 🔴 +30.6 kB 🔴 +6.19 kB 🔴 +5.37 kB
assets/SubscriptionRequiredDialogContent-B3r-yrdB.js (new) 27.6 kB 🔴 +27.6 kB 🔴 +7.02 kB 🔴 +6.22 kB
assets/SubscriptionRequiredDialogContent-D6zj9izV.js (removed) 27.6 kB 🟢 -27.6 kB 🟢 -7.02 kB 🟢 -6.19 kB
assets/WidgetImageCrop-BudM_4-n.js (removed) 24.4 kB 🟢 -24.4 kB 🟢 -6.23 kB 🟢 -5.48 kB
assets/WidgetImageCrop-hNZHt3L_.js (new) 24.4 kB 🔴 +24.4 kB 🔴 +6.23 kB 🔴 +5.48 kB
assets/SubscriptionPanelContentWorkspace-BYxm0AU0.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.17 kB 🟢 -4.55 kB
assets/SubscriptionPanelContentWorkspace-CiwMQikW.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.17 kB 🔴 +4.56 kB
assets/SignInContent-BXz9FVvm.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +5.47 kB 🔴 +4.78 kB
assets/SignInContent-D6e6wiK2.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -5.47 kB 🟢 -4.8 kB
assets/CurrentUserPopoverWorkspace-BcdVHA6i.js (removed) 20.9 kB 🟢 -20.9 kB 🟢 -4.99 kB 🟢 -4.46 kB
assets/CurrentUserPopoverWorkspace-DrwSdKvT.js (new) 20.9 kB 🔴 +20.9 kB 🔴 +4.99 kB 🔴 +4.46 kB
assets/WidgetInputNumber-BRzha0CG.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.84 kB 🟢 -4.29 kB
assets/WidgetInputNumber-DNIutCkQ.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.84 kB 🔴 +4.29 kB
assets/Load3D-ACVdS3-T.js (new) 18.5 kB 🔴 +18.5 kB 🔴 +4.39 kB 🔴 +3.83 kB
assets/Load3D-BIMV9soH.js (removed) 18.5 kB 🟢 -18.5 kB 🟢 -4.39 kB 🟢 -3.83 kB
assets/load3d-8EGAswX6.js (removed) 17.7 kB 🟢 -17.7 kB 🟢 -4.92 kB 🟢 -4.27 kB
assets/load3d-DTCkL2UM.js (new) 17.7 kB 🔴 +17.7 kB 🔴 +4.92 kB 🔴 +4.27 kB
assets/WidgetRecordAudio-Bd2Dcz-P.js (new) 17.6 kB 🔴 +17.6 kB 🔴 +5.07 kB 🔴 +4.52 kB
assets/WidgetRecordAudio-C7QQmn9i.js (removed) 17.6 kB 🟢 -17.6 kB 🟢 -5.07 kB 🟢 -4.51 kB
assets/WidgetRange-D6U4ahhJ.js (removed) 17.1 kB 🟢 -17.1 kB 🟢 -4.64 kB 🟢 -4.15 kB
assets/WidgetRange-DvlCe0O0.js (new) 17.1 kB 🔴 +17.1 kB 🔴 +4.64 kB 🔴 +4.14 kB
assets/WaveAudioPlayer-DtuCBlPP.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.68 kB 🟢 -3.22 kB
assets/WaveAudioPlayer-r-AdKDSX.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.68 kB 🔴 +3.23 kB
assets/WidgetCurve-C02tHcMb.js (removed) 12.3 kB 🟢 -12.3 kB 🟢 -3.98 kB 🟢 -3.59 kB
assets/WidgetCurve-DtDVbelh.js (new) 12.3 kB 🔴 +12.3 kB 🔴 +3.98 kB 🔴 +3.6 kB
assets/TeamWorkspacesDialogContent-C6u_AwRi.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.45 kB 🔴 +3.08 kB
assets/TeamWorkspacesDialogContent-DlwDMatF.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.45 kB 🟢 -3.08 kB
assets/nodeTemplates-DfyjdjGd.js (removed) 9.92 kB 🟢 -9.92 kB 🟢 -3.51 kB 🟢 -3.11 kB
assets/nodeTemplates-DRkujLOl.js (new) 9.92 kB 🔴 +9.92 kB 🔴 +3.51 kB 🔴 +3.11 kB
assets/NightlySurveyController-hXMrOpVm.js (removed) 9.05 kB 🟢 -9.05 kB 🟢 -3.18 kB 🟢 -2.81 kB
assets/NightlySurveyController-L2lae2sb.js (new) 9.05 kB 🔴 +9.05 kB 🔴 +3.18 kB 🔴 +2.8 kB
assets/Load3DConfiguration-BQJAONAu.js (removed) 8.77 kB 🟢 -8.77 kB 🟢 -2.61 kB 🟢 -2.3 kB
assets/Load3DConfiguration-BzeuqHDO.js (new) 8.77 kB 🔴 +8.77 kB 🔴 +2.61 kB 🔴 +2.3 kB
assets/InviteMemberDialogContent-jgXuaOZL.js (removed) 8.02 kB 🟢 -8.02 kB 🟢 -2.56 kB 🟢 -2.25 kB
assets/InviteMemberDialogContent-rmH3CyKL.js (new) 8.02 kB 🔴 +8.02 kB 🔴 +2.56 kB 🔴 +2.25 kB
assets/onboardingCloudRoutes-B_gfMioN.js (removed) 6.94 kB 🟢 -6.94 kB 🟢 -2.17 kB 🟢 -1.86 kB
assets/onboardingCloudRoutes-zunqC8A6.js (new) 6.94 kB 🔴 +6.94 kB 🔴 +2.17 kB 🔴 +1.86 kB
assets/CreateWorkspaceDialogContent-bDSvYYRb.js (new) 6.23 kB 🔴 +6.23 kB 🔴 +2.27 kB 🔴 +1.99 kB
assets/CreateWorkspaceDialogContent-DCc1lAim.js (removed) 6.23 kB 🟢 -6.23 kB 🟢 -2.27 kB 🟢 -1.98 kB
assets/saveMesh-Bv7xpcEw.js (removed) 6.21 kB 🟢 -6.21 kB 🟢 -2.14 kB 🟢 -1.9 kB
assets/saveMesh-DSpdQ_3h.js (new) 6.21 kB 🔴 +6.21 kB 🔴 +2.14 kB 🔴 +1.89 kB
assets/WidgetWithControl-BtQaPLxy.js (new) 6.2 kB 🔴 +6.2 kB 🔴 +2.5 kB 🔴 +2.2 kB
assets/WidgetWithControl-D6F_-qEp.js (removed) 6.2 kB 🟢 -6.2 kB 🟢 -2.5 kB 🟢 -2.19 kB
assets/FreeTierDialogContent-BdvGAYYj.js (removed) 6.09 kB 🟢 -6.09 kB 🟢 -2.17 kB 🟢 -1.92 kB
assets/FreeTierDialogContent-DMoHYYTX.js (new) 6.09 kB 🔴 +6.09 kB 🔴 +2.17 kB 🔴 +1.92 kB
assets/EditWorkspaceDialogContent-CNAgsj_P.js (removed) 6.03 kB 🟢 -6.03 kB 🟢 -2.23 kB 🟢 -1.95 kB
assets/EditWorkspaceDialogContent-CwmZ2Gd8.js (new) 6.03 kB 🔴 +6.03 kB 🔴 +2.23 kB 🔴 +1.95 kB
assets/WidgetTextarea-CDDRusDA.js (removed) 5.84 kB 🟢 -5.84 kB 🟢 -2.3 kB 🟢 -2.03 kB
assets/WidgetTextarea-DTuevVJx.js (new) 5.84 kB 🔴 +5.84 kB 🔴 +2.3 kB 🔴 +2.03 kB
assets/Preview3d-B9piaJeH.js (new) 5.81 kB 🔴 +5.81 kB 🔴 +1.96 kB 🔴 +1.71 kB
assets/Preview3d-DCdu6_sn.js (removed) 5.81 kB 🟢 -5.81 kB 🟢 -1.96 kB 🟢 -1.7 kB
assets/ValueControlPopover-B1rekwgF.js (removed) 5.61 kB 🟢 -5.61 kB 🟢 -2.05 kB 🟢 -1.83 kB
assets/ValueControlPopover-C7S2O85G.js (new) 5.61 kB 🔴 +5.61 kB 🔴 +2.05 kB 🔴 +1.83 kB
assets/CancelSubscriptionDialogContent-BpLcW8dL.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2.07 kB 🟢 -1.81 kB
assets/CancelSubscriptionDialogContent-TgN0J7hf.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2.07 kB 🔴 +1.82 kB
assets/DeleteWorkspaceDialogContent-CBvUY4ld.js (removed) 4.93 kB 🟢 -4.93 kB 🟢 -1.91 kB 🟢 -1.67 kB
assets/DeleteWorkspaceDialogContent-D6rSviYT.js (new) 4.93 kB 🔴 +4.93 kB 🔴 +1.91 kB 🔴 +1.66 kB
assets/LeaveWorkspaceDialogContent-CYX44bbn.js (new) 4.76 kB 🔴 +4.76 kB 🔴 +1.86 kB 🔴 +1.61 kB
assets/LeaveWorkspaceDialogContent-wSXLU788.js (removed) 4.76 kB 🟢 -4.76 kB 🟢 -1.85 kB 🟢 -1.62 kB
assets/RemoveMemberDialogContent-Bwr2bEny.js (removed) 4.74 kB 🟢 -4.74 kB 🟢 -1.8 kB 🟢 -1.57 kB
assets/RemoveMemberDialogContent-D2eh2RM-.js (new) 4.74 kB 🔴 +4.74 kB 🔴 +1.8 kB 🔴 +1.58 kB
assets/RevokeInviteDialogContent-C1Z_3ljT.js (removed) 4.65 kB 🟢 -4.65 kB 🟢 -1.82 kB 🟢 -1.59 kB
assets/RevokeInviteDialogContent-CNvu5j-I.js (new) 4.65 kB 🔴 +4.65 kB 🔴 +1.82 kB 🔴 +1.59 kB
assets/InviteMemberUpsellDialogContent-EqALAkmK.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.68 kB 🟢 -1.47 kB
assets/InviteMemberUpsellDialogContent-WgKOd7tL.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.68 kB 🔴 +1.48 kB
assets/tierBenefits-C6C5-STL.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.58 kB 🔴 +1.37 kB
assets/tierBenefits-DY-Gbz5N.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.58 kB 🟢 -1.36 kB
assets/Media3DTop-BeN7tmIa.js (new) 4.43 kB 🔴 +4.43 kB 🔴 +1.81 kB 🔴 +1.61 kB
assets/Media3DTop-C28Vvclb.js (removed) 4.43 kB 🟢 -4.43 kB 🟢 -1.81 kB 🟢 -1.6 kB
assets/cloudSessionCookie-CvK52IDa.js (new) 4.39 kB 🔴 +4.39 kB 🔴 +1.6 kB 🔴 +1.4 kB
assets/cloudSessionCookie-RaTQROdD.js (removed) 4.39 kB 🟢 -4.39 kB 🟢 -1.6 kB 🟢 -1.41 kB
assets/GlobalToast-BysaQC10.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.08 kB
assets/GlobalToast-C-VjtpB-.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/CloudRunButtonWrapper-dMQtsebd.js (removed) 2.31 kB 🟢 -2.31 kB 🟢 -1.05 kB 🟢 -937 B
assets/CloudRunButtonWrapper-jANi_o_6.js (new) 2.31 kB 🔴 +2.31 kB 🔴 +1.05 kB 🔴 +939 B
assets/SubscribeToRun-B_rpyaqm.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -980 B 🟢 -867 B
assets/SubscribeToRun-CFNNwunt.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +982 B 🔴 +875 B
assets/MediaAudioTop-B9xW4Iw-.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -1 kB 🟢 -856 B
assets/MediaAudioTop-kfnaeQiF.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +1 kB 🔴 +861 B
assets/cloudBadges-Bn_Lq8vw.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +1.01 kB 🔴 +879 B
assets/cloudBadges-DHL0197d.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -1.01 kB 🟢 -880 B
assets/cloudSubscription-B4L9un8i.js (new) 1.96 kB 🔴 +1.96 kB 🔴 +930 B 🔴 +809 B
assets/cloudSubscription-CXcid2zS.js (removed) 1.96 kB 🟢 -1.96 kB 🟢 -927 B 🟢 -808 B
assets/graphHasMissingNodes-ak3Bchgh.js (removed) 1.84 kB 🟢 -1.84 kB 🟢 -859 B 🟢 -760 B
assets/graphHasMissingNodes-BxQXkcLm.js (new) 1.84 kB 🔴 +1.84 kB 🔴 +861 B 🔴 +758 B
assets/Load3D-BND5MlCJ.js (removed) 1.66 kB 🟢 -1.66 kB 🟢 -742 B 🟢 -661 B
assets/Load3D-CAIrgpiA.js (new) 1.66 kB 🔴 +1.66 kB 🔴 +742 B 🔴 +659 B
assets/nightlyBadges-CGAx_glL.js (removed) 1.57 kB 🟢 -1.57 kB 🟢 -777 B 🟢 -690 B
assets/nightlyBadges-Cwz7v56Y.js (new) 1.57 kB 🔴 +1.57 kB 🔴 +779 B 🔴 +694 B
assets/Load3dViewerContent-1JhqdnXQ.js (new) 1.54 kB 🔴 +1.54 kB 🔴 +697 B 🔴 +617 B
assets/Load3dViewerContent-EIzBFgbn.js (removed) 1.54 kB 🟢 -1.54 kB 🟢 -695 B 🟢 -619 B
assets/previousFullPath-CD18i7fT.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -694 B 🟢 -624 B
assets/previousFullPath-DmkqS4wx.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +693 B 🔴 +597 B
assets/SubscriptionPanelContentWorkspace-485Ik-9D.js (removed) 1.43 kB 🟢 -1.43 kB 🟢 -645 B 🟢 -583 B
assets/SubscriptionPanelContentWorkspace-DI8NL6xv.js (new) 1.43 kB 🔴 +1.43 kB 🔴 +649 B 🔴 +573 B
assets/WidgetLegacy-Ce9TYlJ9.js (removed) 1.25 kB 🟢 -1.25 kB 🟢 -594 B 🟢 -529 B
assets/WidgetLegacy-CHi6xxix.js (new) 1.25 kB 🔴 +1.25 kB 🔴 +597 B 🔴 +527 B
assets/changeTracker-CYJjiJsl.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +585 B 🔴 +516 B
assets/changeTracker-Mnle-q3T.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -583 B 🟢 -517 B

Status: 57 added / 57 removed / 86 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 69.2 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.9 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 47.1 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.6 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 62.6 MB heap
large-graph-pan: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.6 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.1 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 80.3 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.3 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.5 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.7 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 158ms TBT · 215.0 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 75.3 MB heap
vue-large-graph-idle: · 57.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 210.7 MB heap
vue-large-graph-pan: · 57.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 169.1 MB heap
workflow-execution: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.4 MB heap

⚠️ 1 regression detected

Metric Baseline PR (median) Δ Sig
minimap-idle: task duration 540ms 650ms +20% ⚠️ z=2.6
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 9ms 8ms -14% z=-3.1
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 9 8 -11% z=-5.6
canvas-idle: task duration 421ms 386ms -8% z=-0.3
canvas-idle: script duration 24ms 18ms -25% z=-3.1
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 64.4 MB 69.2 MB +8%
canvas-idle: DOM nodes 16 16 +0% z=-5.2
canvas-idle: event listeners 6 4 -33% z=-1.6
canvas-mouse-sweep: avg frame time 17ms 17ms -0% z=-0.9
canvas-mouse-sweep: p95 frame time 17ms 17ms +0%
canvas-mouse-sweep: layout duration 3ms 4ms +10% z=0.7
canvas-mouse-sweep: style recalc duration 31ms 44ms +39% z=0.3
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 72 79 +9% z=-0.1
canvas-mouse-sweep: task duration 723ms 876ms +21% z=0.2
canvas-mouse-sweep: script duration 106ms 133ms +25% z=-0.4
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 60.4 MB 66.9 MB +11%
canvas-mouse-sweep: DOM nodes -260 62 -124% z=-0.3
canvas-mouse-sweep: event listeners -131 4 -103% z=-1.1
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 -3% z=0.1
canvas-zoom-sweep: style recalc duration 16ms 20ms +20% z=0.4
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 32 +3% z=1.6
canvas-zoom-sweep: task duration 304ms 344ms +13% z=0.7
canvas-zoom-sweep: script duration 19ms 30ms +52% z=0.8
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 46.8 MB 47.1 MB +1%
canvas-zoom-sweep: DOM nodes 76 80 +5% z=0.3
canvas-zoom-sweep: event listeners 19 20 +5% z=-0.7
dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.5
dom-widget-clipping: p95 frame time 17ms 17ms -0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 7ms 8ms +7% z=-2.6
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 12 12 -4% z=-3.2
dom-widget-clipping: task duration 294ms 342ms +16% z=-1.3
dom-widget-clipping: script duration 53ms 59ms +11% z=-2.6
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 54.9 MB 59.6 MB +9%
dom-widget-clipping: DOM nodes 19 19 -3% z=-2.6
dom-widget-clipping: event listeners 2 0 -100% variance too high
large-graph-idle: avg frame time 17ms 17ms -0% z=-0.6
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 8ms 9ms +17% z=-2.8
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 10 -5% z=-6.7
large-graph-idle: task duration 588ms 544ms -7% z=0.0
large-graph-idle: script duration 90ms 93ms +3% z=-0.9
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 95.6 MB 62.6 MB -35%
large-graph-idle: DOM nodes -258 -260 +1% z=-315.0
large-graph-idle: event listeners -127 -130 +2% z=-25.6
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 18ms 19ms +1% z=1.8
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 69 69 +0% z=-0.9
large-graph-pan: task duration 1021ms 1115ms +9% z=0.8
large-graph-pan: script duration 359ms 406ms +13% z=-0.1
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 55.6 MB 59.6 MB +7%
large-graph-pan: DOM nodes -261 -262 +0% z=-170.3
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 +1%
large-graph-zoom: layout duration 8ms 8ms +1%
large-graph-zoom: style recalc duration 19ms 19ms +0%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 67 65 -3%
large-graph-zoom: task duration 1191ms 1412ms +19%
large-graph-zoom: script duration 445ms 518ms +17%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 67.1 MB 67.1 MB -0%
large-graph-zoom: DOM nodes -262 -269 +3%
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 +15% z=-1.4
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 9 8 -11% z=-2.3
minimap-idle: task duration 540ms 650ms +20% ⚠️ z=2.6
minimap-idle: script duration 82ms 105ms +28% z=0.7
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 73.1 MB 80.3 MB +10%
minimap-idle: DOM nodes -260 -263 +1% z=-206.3
minimap-idle: event listeners -127 -128 +1% z=-200.8
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 11ms 12ms +9% z=-0.3
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 47 -1% z=-2.5
subgraph-dom-widget-clipping: task duration 321ms 374ms +17% z=-0.2
subgraph-dom-widget-clipping: script duration 103ms 125ms +21% z=-0.5
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 61.7 MB 55.3 MB -10%
subgraph-dom-widget-clipping: DOM nodes 20 19 -5% z=-2.8
subgraph-dom-widget-clipping: event listeners 8 7 -13% z=-1.6
subgraph-idle: avg frame time 17ms 17ms -0% z=0.4
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 9ms 9ms -1% z=-2.3
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 9 -10% z=-2.9
subgraph-idle: task duration 322ms 403ms +25% z=1.1
subgraph-idle: script duration 20ms 16ms -18% z=-1.5
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 68.6 MB 67.5 MB -2%
subgraph-idle: DOM nodes 20 -121 -705% z=-95.5
subgraph-idle: event listeners 6 -63 -1142% 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 5ms +15% z=0.4
subgraph-mouse-sweep: style recalc duration 34ms 42ms +23% z=-0.2
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 76 80 +5% z=-0.3
subgraph-mouse-sweep: task duration 650ms 854ms +32% z=1.3
subgraph-mouse-sweep: script duration 84ms 97ms +16% z=-0.6
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 43.1 MB 52.7 MB +22%
subgraph-mouse-sweep: DOM nodes -258 -263 +2% z=-147.7
subgraph-mouse-sweep: event listeners -131 -132 +1% 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 9ms 13ms +40%
subgraph-transition-enter: style recalc duration 23ms 28ms +23%
subgraph-transition-enter: layout count 7 4 -43%
subgraph-transition-enter: style recalc count 16 16 +0%
subgraph-transition-enter: task duration 639ms 877ms +37%
subgraph-transition-enter: script duration 26ms 35ms +38%
subgraph-transition-enter: TBT 95ms 158ms +66%
subgraph-transition-enter: heap used 90.8 MB 215.0 MB +137%
subgraph-transition-enter: DOM nodes 13513 13513 +0%
subgraph-transition-enter: event listeners 2527 2527 +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 53ms 52ms -3%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 250 -0%
viewport-pan-sweep: task duration 3280ms 4137ms +26%
viewport-pan-sweep: script duration 1046ms 1450ms +39%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 69.5 MB 75.3 MB +8%
viewport-pan-sweep: DOM nodes -259 -263 +1%
viewport-pan-sweep: event listeners -113 -113 +0%
vue-large-graph-idle: avg frame time 18ms 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 13653ms 14012ms +3%
vue-large-graph-idle: script duration 567ms 679ms +20%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 159.6 MB 210.7 MB +32%
vue-large-graph-idle: DOM nodes -8331 -8330 -0%
vue-large-graph-idle: event listeners -16486 -16476 -0%
vue-large-graph-pan: avg frame time 18ms 18ms -2%
vue-large-graph-pan: p95 frame time 17ms 17ms +0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 18ms 17ms -4%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 65 68 +5%
vue-large-graph-pan: task duration 12891ms 14526ms +13%
vue-large-graph-pan: script duration 769ms 902ms +17%
vue-large-graph-pan: TBT 0ms 0ms +0%
vue-large-graph-pan: heap used 171.9 MB 169.1 MB -2%
vue-large-graph-pan: DOM nodes -8331 -8330 -0%
vue-large-graph-pan: event listeners -16464 -16474 +0%
workflow-execution: avg frame time 17ms 17ms -0% z=0.1
workflow-execution: p95 frame time 17ms 17ms -0%
workflow-execution: layout duration 1ms 1ms +13% z=-1.3
workflow-execution: style recalc duration 23ms 27ms +18% z=1.3
workflow-execution: layout count 5 5 +0% z=0.1
workflow-execution: style recalc count 18 20 +11% z=1.1
workflow-execution: task duration 112ms 136ms +22% z=1.3
workflow-execution: script duration 23ms 29ms +26% z=0.1
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 53.1 MB 55.4 MB +4%
workflow-execution: DOM nodes 170 165 -3% z=0.5
workflow-execution: event listeners 71 70 -1% z=4.2
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-18T03:11:55.353Z",
  "gitSha": "3a94ceab2525d37771ec5b0a4d0e7a51d7a6101a",
  "branch": "jaewon/refactor-remove-useinternalfilesapi-wrapper",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2032.2300000000268,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.424000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 412.299,
      "heapDeltaBytes": 23173708,
      "heapUsedBytes": 71785384,
      "domNodes": 16,
      "jsHeapTotalBytes": 14680064,
      "scriptDurationMs": 19.689999999999994,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 1998.7039999999752,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.703000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 359.062,
      "heapDeltaBytes": 23231940,
      "heapUsedBytes": 73350140,
      "domNodes": 16,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 17.174000000000003,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1876.340999999968,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 42.385000000000005,
      "layouts": 12,
      "layoutDurationMs": 3.880000000000001,
      "taskDurationMs": 776.2739999999999,
      "heapDeltaBytes": 19115464,
      "heapUsedBytes": 68297664,
      "domNodes": 61,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 133.77800000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2019.679999999994,
      "styleRecalcs": 80,
      "styleRecalcDurationMs": 45.090999999999994,
      "layouts": 12,
      "layoutDurationMs": 3.597,
      "taskDurationMs": 976.6669999999999,
      "heapDeltaBytes": 21649408,
      "heapUsedBytes": 71974696,
      "domNodes": 62,
      "jsHeapTotalBytes": 18350080,
      "scriptDurationMs": 131.959,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1728.8039999999683,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 16.927999999999997,
      "layouts": 6,
      "layoutDurationMs": 0.5889999999999999,
      "taskDurationMs": 296.204,
      "heapDeltaBytes": 596348,
      "heapUsedBytes": 48578796,
      "domNodes": 80,
      "jsHeapTotalBytes": 14942208,
      "scriptDurationMs": 23.991000000000007,
      "eventListeners": 21,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1747.3430000000008,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 22.439999999999998,
      "layouts": 6,
      "layoutDurationMs": 0.702,
      "taskDurationMs": 391.72399999999993,
      "heapDeltaBytes": 846836,
      "heapUsedBytes": 50197048,
      "domNodes": 79,
      "jsHeapTotalBytes": 14942208,
      "scriptDurationMs": 35.143,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 536.9570000000294,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 7.486,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 328.123,
      "heapDeltaBytes": 9182404,
      "heapUsedBytes": 57805004,
      "domNodes": 18,
      "jsHeapTotalBytes": 15466496,
      "scriptDurationMs": 57.67999999999999,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 592.7769999999555,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 8.130000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 356.625,
      "heapDeltaBytes": 16385088,
      "heapUsedBytes": 67140756,
      "domNodes": 19,
      "jsHeapTotalBytes": 18874368,
      "scriptDurationMs": 61.168,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2015.3399999999806,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.514000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 519.1550000000001,
      "heapDeltaBytes": 13028152,
      "heapUsedBytes": 71467676,
      "domNodes": -259,
      "jsHeapTotalBytes": 552960,
      "scriptDurationMs": 88.78800000000001,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2011.9869999999764,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 10.039,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 568.635,
      "heapDeltaBytes": -98588,
      "heapUsedBytes": 59809136,
      "domNodes": -261,
      "jsHeapTotalBytes": 3756032,
      "scriptDurationMs": 97.10499999999999,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2145.4080000000317,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 17.94,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1088.7669999999998,
      "heapDeltaBytes": -689392,
      "heapUsedBytes": 58433780,
      "domNodes": -264,
      "jsHeapTotalBytes": 757760,
      "scriptDurationMs": 396.74899999999997,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2126.7560000000003,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 19.522000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1140.5749999999998,
      "heapDeltaBytes": 7311784,
      "heapUsedBytes": 66642668,
      "domNodes": -260,
      "jsHeapTotalBytes": 757760,
      "scriptDurationMs": 414.48400000000004,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3130.574000000024,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 18.968000000000004,
      "layouts": 60,
      "layoutDurationMs": 7.128000000000001,
      "taskDurationMs": 1315.561,
      "heapDeltaBytes": 8301744,
      "heapUsedBytes": 68956092,
      "domNodes": -268,
      "jsHeapTotalBytes": 5795840,
      "scriptDurationMs": 491.51399999999995,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3217.1829999999773,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 19.517000000000003,
      "layouts": 60,
      "layoutDurationMs": 8.02,
      "taskDurationMs": 1508.4599999999998,
      "heapDeltaBytes": 10114588,
      "heapUsedBytes": 71758260,
      "domNodes": -270,
      "jsHeapTotalBytes": 1339392,
      "scriptDurationMs": 545.289,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "minimap-idle",
      "durationMs": 2035.035999999991,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.348000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 527.241,
      "heapDeltaBytes": 2481300,
      "heapUsedBytes": 63345876,
      "domNodes": -264,
      "jsHeapTotalBytes": 5009408,
      "scriptDurationMs": 88.66900000000001,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "minimap-idle",
      "durationMs": 2047.8029999999308,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 9.394000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 773.57,
      "heapDeltaBytes": 43391044,
      "heapUsedBytes": 105114696,
      "domNodes": -262,
      "jsHeapTotalBytes": 32796672,
      "scriptDurationMs": 121.31,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 545.029999999997,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 11.085999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 348.33899999999994,
      "heapDeltaBytes": 8817376,
      "heapUsedBytes": 57862152,
      "domNodes": 18,
      "jsHeapTotalBytes": 16252928,
      "scriptDurationMs": 121.45999999999998,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 607.5609999999187,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 13.823000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 398.852,
      "heapDeltaBytes": 9513100,
      "heapUsedBytes": 58156408,
      "domNodes": 20,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 128.81400000000002,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1989.678999999967,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.158,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 355.566,
      "heapDeltaBytes": 22988476,
      "heapUsedBytes": 71928196,
      "domNodes": 18,
      "jsHeapTotalBytes": 14680064,
      "scriptDurationMs": 15.012,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2023.7790000001041,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 9.136999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 450.535,
      "heapDeltaBytes": 20456880,
      "heapUsedBytes": 69600568,
      "domNodes": -260,
      "jsHeapTotalBytes": 19263488,
      "scriptDurationMs": 17.401,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1972.8609999999662,
      "styleRecalcs": 84,
      "styleRecalcDurationMs": 44.580999999999996,
      "layouts": 16,
      "layoutDurationMs": 4.558999999999999,
      "taskDurationMs": 953.4670000000001,
      "heapDeltaBytes": -1247696,
      "heapUsedBytes": 47742116,
      "domNodes": -262,
      "jsHeapTotalBytes": 16117760,
      "scriptDurationMs": 94.923,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1734.8069999999325,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 38.732,
      "layouts": 16,
      "layoutDurationMs": 5.126,
      "taskDurationMs": 755.2479999999999,
      "heapDeltaBytes": 13742056,
      "heapUsedBytes": 62777880,
      "domNodes": -264,
      "jsHeapTotalBytes": 20312064,
      "scriptDurationMs": 98.845,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 1214.7099999999682,
      "styleRecalcs": 16,
      "styleRecalcDurationMs": 28.048000000000002,
      "layouts": 4,
      "layoutDurationMs": 13.194,
      "taskDurationMs": 877.1639999999999,
      "heapDeltaBytes": 82607044,
      "heapUsedBytes": 225472476,
      "domNodes": 13513,
      "jsHeapTotalBytes": 79691776,
      "scriptDurationMs": 35.36599999999999,
      "eventListeners": 2527,
      "totalBlockingTimeMs": 158,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8203.23099999996,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 49.048,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3980.5309999999995,
      "heapDeltaBytes": 26278112,
      "heapUsedBytes": 83434432,
      "domNodes": -262,
      "jsHeapTotalBytes": 12292096,
      "scriptDurationMs": 1493.585,
      "eventListeners": -113,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8220.953000000009,
      "styleRecalcs": 249,
      "styleRecalcDurationMs": 54.82,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 4292.735000000001,
      "heapDeltaBytes": 15564792,
      "heapUsedBytes": 74395796,
      "domNodes": -263,
      "jsHeapTotalBytes": 2854912,
      "scriptDurationMs": 1406.7379999999998,
      "eventListeners": -113,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 15212.881999999921,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 15192.501000000002,
      "heapDeltaBytes": 30279212,
      "heapUsedBytes": 283380436,
      "domNodes": -8329,
      "jsHeapTotalBytes": 21819392,
      "scriptDurationMs": 724.2950000000001,
      "eventListeners": -16487,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666763,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12847.42099999994,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12831.672,
      "heapDeltaBytes": -58507124,
      "heapUsedBytes": 158421108,
      "domNodes": -8331,
      "jsHeapTotalBytes": 25227264,
      "scriptDurationMs": 634.2430000000002,
      "eventListeners": -16465,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14229.192000000012,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 15.450999999999993,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14207.377999999999,
      "heapDeltaBytes": 1740548,
      "heapUsedBytes": 190548968,
      "domNodes": -8331,
      "jsHeapTotalBytes": 23044096,
      "scriptDurationMs": 869.9769999999999,
      "eventListeners": -16460,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.780000000000047,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14865.453000000001,
      "styleRecalcs": 72,
      "styleRecalcDurationMs": 19.252999999999965,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14844.162999999999,
      "heapDeltaBytes": -34536264,
      "heapUsedBytes": 164029612,
      "domNodes": -8329,
      "jsHeapTotalBytes": -3149824,
      "scriptDurationMs": 934.5680000000001,
      "eventListeners": -16488,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 458.7020000000166,
      "styleRecalcs": 20,
      "styleRecalcDurationMs": 27.333999999999996,
      "layouts": 4,
      "layoutDurationMs": 1.3390000000000002,
      "taskDurationMs": 141.37500000000003,
      "heapDeltaBytes": 5467016,
      "heapUsedBytes": 59419536,
      "domNodes": 170,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 32.580999999999996,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "workflow-execution",
      "durationMs": 460.3069999999434,
      "styleRecalcs": 20,
      "styleRecalcDurationMs": 26.891,
      "layouts": 6,
      "layoutDurationMs": 1.367,
      "taskDurationMs": 131.6,
      "heapDeltaBytes": 5216808,
      "heapUsedBytes": 56680380,
      "domNodes": 159,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 25.911000000000005,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

@codecov
Copy link
Copy Markdown

codecov Bot commented May 15, 2026

Codecov Report

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

Files with missing lines Patch % Lines
src/components/sidebar/tabs/AssetsSidebarTab.vue 0.00% 2 Missing ⚠️
@@             Coverage Diff             @@
##             main   #12283       +/-   ##
===========================================
- Coverage   73.99%   59.63%   -14.37%     
===========================================
  Files        1522     1410      -112     
  Lines       85209    71970    -13239     
  Branches    23379    19967     -3412     
===========================================
- Hits        63053    42920    -20133     
- Misses      21349    28577     +7228     
+ Partials      807      473      -334     
Flag Coverage Δ
e2e ?
unit 59.63% <50.00%> (+0.02%) ⬆️

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

Files with missing lines Coverage Δ
...renderer/extensions/linearMode/useOutputHistory.ts 87.50% <100.00%> (-5.29%) ⬇️
...eNodes/widgets/components/WidgetSelectDropdown.vue 57.14% <100.00%> (-15.17%) ⬇️
...eNodes/widgets/composables/useWidgetSelectItems.ts 92.85% <ø> (-3.33%) ⬇️
src/components/sidebar/tabs/AssetsSidebarTab.vue 3.27% <0.00%> (-54.39%) ⬇️

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

useMediaAssets has been a pass-through to useAssetsApi since the
isCloud branch in the same file was removed in the previous commit.
Switch the four callers (AssetsSidebarTab, WidgetSelectDropdown,
useOutputHistory, useWidgetSelectItems) to use useAssetsApi directly
and delete useMediaAssets.

useWidgetSelectItems narrows its outputMediaAssets prop type to
IAssetsProvider — the same interface useOutputHistory already
implements directly — so the function reference is no longer needed
as a type source.
@dante01yoon dante01yoon changed the title refactor(assets): remove dead useInternalFilesApi wrapper refactor(assets): collapse useMediaAssets factory wrapper May 15, 2026
@dante01yoon dante01yoon changed the title refactor(assets): collapse useMediaAssets factory wrapper refactor(assets): collapse useMediaAssets factory wrapper (FE-727) May 15, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants