Skip to content

refactor: migrate PrimeVue Chip to custom Tag component#10673

Open
dante01yoon wants to merge 11 commits intomainfrom
feature/migrate-primevue-chip
Open

refactor: migrate PrimeVue Chip to custom Tag component#10673
dante01yoon wants to merge 11 commits intomainfrom
feature/migrate-primevue-chip

Conversation

@dante01yoon
Copy link
Copy Markdown
Collaborator

@dante01yoon dante01yoon commented Mar 28, 2026

Summary

  • Replace PrimeVue Chip with custom Tag component in all 3 remaining usages
    • SearchFilterChip: PrimeVue Chip+Badge → Tag (removable) + custom Badge (icon slot)
    • NodeSearchItem: PrimeVue Chip → Tag (aliased as ChipTag to avoid collision with PrimeVue Tag, migrated in follow-up PR)
    • DownloadItem: PrimeVue Chip (removable) → Tag (removable)
  • Update E2E selectors from .p-chip-remove-icon to getByRole('button', { name: 'Remove' })
  • Zero remaining primevue/chip imports after this PR

Depends on #10650 (Tag component).

Test plan

  • SearchFilterChip: filter chips display and remove correctly in node search
  • NodeSearchItem: node source chip displays correctly in search results
  • DownloadItem: cancelled download chip displays with dismiss button
  • E2E: nodeSearchBox filter removal tests pass

┆Issue is synchronized with this Notion page by Unito

Add Tag component with CVA variants matching Figma design system:
- square (rounded-sm) and rounded (pill) shapes
- removable state with X close button
- icon slot support

Rename SquareChip to Tag across all consumers and stories.
Includes unit tests (5 tests) covering rendering, removable
behavior, and icon slot.
Replace custom overlay variant with Figma-defined states:
- default: full opacity, foreground text
- unselected: opacity-70, muted-foreground text
- selected: full opacity with remove button (via removable prop)
Hover state handled via CSS :hover, not a prop.
Add overlay shape (bg-zinc-500/40, text-white/90) for tags that
sit on top of image thumbnails. Used in SampleModelSelector.
Pending Figma design system confirmation.
- SearchFilterChip: PrimeVue Chip+Badge → Tag (removable) + Badge
- NodeSearchItem: PrimeVue Chip → Tag (aliased as ChipTag to avoid
  name collision with PrimeVue Tag, which migrates in a follow-up PR)
- DownloadItem: PrimeVue Chip (removable) → Tag (removable)
- Update E2E selectors from .p-chip-remove-icon to accessible
  getByRole('button', { name: 'Remove' })
@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 28, 2026

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

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

@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 28, 2026

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 03/29/2026, 07:34:14 AM UTC

Links

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Mar 28, 2026

📝 Walkthrough

Walkthrough

This PR replaces PrimeVue Chip components with custom Tag/ChipTag components throughout the codebase. Updates include modified Vue components, corresponding test files, and test fixture modifications to support the new component structure and role-based button interactions.

Changes

Cohort / File(s) Summary
Browser Test Updates
browser_tests/fixtures/components/ComfyNodeSearchBox.ts, browser_tests/tests/nodeSearchBox.spec.ts
Updated filter removal interaction to use role-based "Remove" button query instead of direct CSS selector .p-chip-remove-icon element targeting.
SearchFilterChip Component
src/components/common/SearchFilterChip.vue, src/components/common/SearchFilterChip.test.ts
Replaced PrimeVue Chip with custom Tag component; added badge rendering in Tag's icon slot with semantic background classes; new test suite validates text rendering, badge styling, and remove button callback.
NodeSearchItem Component
src/components/searchbox/NodeSearchItem.vue
Replaced PrimeVue Chip with custom ChipTag component for rendering node source badge display text via prop.
DownloadItem Component
src/components/sidebar/tabs/modelLibrary/DownloadItem.vue, src/components/sidebar/tabs/modelLibrary/DownloadItem.test.ts
Replaced PrimeVue Chip with custom Tag component for download status indicator; new test suite validates status labels and remove button rendering across download status values.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

Poem

🐰 A custom Tag replaces Prime,
Chip components now redesigned so fine,
Remove buttons queried by role,
Test suites verify the whole,
Components dance in new design!

🚥 Pre-merge checks | ✅ 4 | ❌ 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 (4 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely summarizes the main change: migrating PrimeVue Chip to a custom Tag component across multiple files.
Description check ✅ Passed The description covers the Summary, Changes (What, Dependencies), and Test plan sections required by the template, though Review Focus is absent.
End-To-End Regression Coverage For Fixes ✅ Passed PR contains bug-fix language in commit subject but passes because E2E tests under browser_tests/ were updated with regression coverage.
Adr Compliance For Entity/Litegraph Changes ✅ Passed PR modifies only UI component files in src/components/. None of the changed files are under src/lib/litegraph/, src/ecs/, or related to graph entities, so the check passes immediately.

✏️ 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 feature/migrate-primevue-chip

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.

SearchFilterChip (5 tests): badge rendering, semantic class
mapping, remove event, fallback class.
DownloadItem (4 tests): cancelled/error tag display, remove
button, in-progress state, file path label.
@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 28, 2026

📦 Bundle: 5.09 MB gzip 🔴 +79 B

Details

Summary

  • Raw size: 23.5 MB baseline 23.5 MB — 🔴 +1 kB
  • Gzip: 5.09 MB baseline 5.09 MB — 🔴 +79 B
  • Brotli: 3.94 MB baseline 3.94 MB — 🔴 +334 B
  • Bundles: 249 current • 249 baseline • 133 added / 133 removed

Category Glance
Data & Services 🔴 +1.1 kB (2.96 MB) · Graph Workspace 🟢 -76 B (1.14 MB) · Vendor & Third-Party 🟢 -17 B (9.8 MB) · Other ⚪ 0 B (8.45 MB) · Panels & Settings ⚪ 0 B (484 kB) · Utilities & Hooks ⚪ 0 B (334 kB) · + 5 more

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

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-BG_p-qF3.js (new) 22.3 kB 🔴 +22.3 kB 🔴 +7.93 kB 🔴 +6.82 kB
assets/index-BTn7jgjh.js (removed) 22.3 kB 🟢 -22.3 kB 🟢 -7.94 kB 🟢 -6.79 kB

Status: 1 added / 1 removed

Graph Workspace — 1.14 MB (baseline 1.14 MB) • 🟢 -76 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-Chc_QNI9.js (removed) 1.14 MB 🟢 -1.14 MB 🟢 -244 kB 🟢 -184 kB
assets/GraphView-DP-wtfk6.js (new) 1.14 MB 🔴 +1.14 MB 🔴 +244 kB 🔴 +184 kB

Status: 1 added / 1 removed

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

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-CWLeIrbS.js (new) 15.7 kB 🔴 +15.7 kB 🔴 +3.4 kB 🔴 +2.9 kB
assets/CloudSurveyView-DY_AKFcf.js (removed) 15.7 kB 🟢 -15.7 kB 🟢 -3.4 kB 🟢 -2.9 kB
assets/CloudLoginView-IICQ8CN_.js (new) 12 kB 🔴 +12 kB 🔴 +3.35 kB 🔴 +2.96 kB
assets/CloudLoginView-tgWSoSAx.js (removed) 12 kB 🟢 -12 kB 🟢 -3.36 kB 🟢 -2.96 kB
assets/CloudSignupView-CacWIRmn.js (new) 9.78 kB 🔴 +9.78 kB 🔴 +2.85 kB 🔴 +2.51 kB
assets/CloudSignupView-SaC8KfNj.js (removed) 9.78 kB 🟢 -9.78 kB 🟢 -2.86 kB 🟢 -2.52 kB
assets/UserCheckView-B_Ct4yX0.js (removed) 9.04 kB 🟢 -9.04 kB 🟢 -2.33 kB 🟢 -2.02 kB
assets/UserCheckView-RiJGXbEy.js (new) 9.04 kB 🔴 +9.04 kB 🔴 +2.33 kB 🔴 +2.04 kB
assets/CloudLayoutView-CBurVrsY.js (removed) 7.54 kB 🟢 -7.54 kB 🟢 -2.36 kB 🟢 -2.07 kB
assets/CloudLayoutView-DLDTZg0Z.js (new) 7.54 kB 🔴 +7.54 kB 🔴 +2.36 kB 🔴 +2.05 kB
assets/CloudForgotPasswordView-CgxmgfBN.js (new) 5.94 kB 🔴 +5.94 kB 🔴 +2.09 kB 🔴 +1.83 kB
assets/CloudForgotPasswordView-Ckxyskt5.js (removed) 5.94 kB 🟢 -5.94 kB 🟢 -2.09 kB 🟢 -1.84 kB
assets/CloudAuthTimeoutView-Cfr38ch9.js (new) 5.31 kB 🔴 +5.31 kB 🔴 +1.93 kB 🔴 +1.69 kB
assets/CloudAuthTimeoutView-Doiv6n5I.js (removed) 5.31 kB 🟢 -5.31 kB 🟢 -1.93 kB 🟢 -1.69 kB
assets/CloudSubscriptionRedirectView-D-Nu_L8D.js (new) 5.08 kB 🔴 +5.08 kB 🔴 +1.9 kB 🔴 +1.69 kB
assets/CloudSubscriptionRedirectView-D4azZ8mD.js (removed) 5.08 kB 🟢 -5.08 kB 🟢 -1.91 kB 🟢 -1.69 kB
assets/UserSelectView-BNYrpw69.js (new) 4.71 kB 🔴 +4.71 kB 🔴 +1.74 kB 🔴 +1.55 kB
assets/UserSelectView-CUqcDdcz.js (removed) 4.71 kB 🟢 -4.71 kB 🟢 -1.74 kB 🟢 -1.54 kB

Status: 9 added / 9 removed / 2 unchanged

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

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-DjAEl4K1.js (removed) 46.6 kB 🟢 -46.6 kB 🟢 -9.52 kB 🟢 -8.48 kB
assets/KeybindingPanel-DpmJg3vS.js (new) 46.6 kB 🔴 +46.6 kB 🔴 +9.52 kB 🔴 +8.46 kB
assets/SecretsPanel-Bp6QtFks.js (removed) 22.4 kB 🟢 -22.4 kB 🟢 -5.42 kB 🟢 -4.76 kB
assets/SecretsPanel-DGk8aa5z.js (new) 22.4 kB 🔴 +22.4 kB 🔴 +5.42 kB 🔴 +4.76 kB
assets/LegacyCreditsPanel-D2qPZ9hA.js (removed) 21.5 kB 🟢 -21.5 kB 🟢 -5.81 kB 🟢 -5.14 kB
assets/LegacyCreditsPanel-DehZqc6C.js (new) 21.5 kB 🔴 +21.5 kB 🔴 +5.81 kB 🔴 +5.13 kB
assets/SubscriptionPanel-2sw_6cYy.js (new) 19.7 kB 🔴 +19.7 kB 🔴 +5 kB 🔴 +4.41 kB
assets/SubscriptionPanel-KMzs0-CW.js (removed) 19.7 kB 🟢 -19.7 kB 🟢 -5.01 kB 🟢 -4.41 kB
assets/AboutPanel-Ca89ysTL.js (removed) 12 kB 🟢 -12 kB 🟢 -3.32 kB 🟢 -2.98 kB
assets/AboutPanel-DDwx7ts8.js (new) 12 kB 🔴 +12 kB 🔴 +3.32 kB 🔴 +2.98 kB
assets/ExtensionPanel-8AMBeE_m.js (new) 9.78 kB 🔴 +9.78 kB 🔴 +2.82 kB 🔴 +2.51 kB
assets/ExtensionPanel-De03ol4h.js (removed) 9.78 kB 🟢 -9.78 kB 🟢 -2.82 kB 🟢 -2.5 kB
assets/ServerConfigPanel-3wjV-lkA.js (removed) 6.85 kB 🟢 -6.85 kB 🟢 -2.27 kB 🟢 -2.02 kB
assets/ServerConfigPanel-Btu1LQLC.js (new) 6.85 kB 🔴 +6.85 kB 🔴 +2.27 kB 🔴 +2.03 kB
assets/UserPanel-B3UJI4SP.js (removed) 6.56 kB 🟢 -6.56 kB 🟢 -2.15 kB 🟢 -1.89 kB
assets/UserPanel-GypBytIN.js (new) 6.56 kB 🔴 +6.56 kB 🔴 +2.15 kB 🔴 +1.88 kB
assets/cloudRemoteConfig-B1pt6FQG.js (new) 1.85 kB 🔴 +1.85 kB 🔴 +901 B 🔴 +792 B
assets/cloudRemoteConfig-XjMHOPmY.js (removed) 1.85 kB 🟢 -1.85 kB 🟢 -900 B 🟢 -777 B
assets/refreshRemoteConfig-B0qNjoj8.js (new) 1.45 kB 🔴 +1.45 kB 🔴 +647 B 🔴 +548 B
assets/refreshRemoteConfig-KobObvfj.js (removed) 1.45 kB 🟢 -1.45 kB 🟢 -646 B 🟢 -547 B

Status: 10 added / 10 removed / 12 unchanged

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

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/PasswordFields-BaRBqhl0.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.42 kB 🟢 -1.26 kB
assets/PasswordFields-DrDDHRyf.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.42 kB 🔴 +1.26 kB
assets/auth-BVpkIr8b.js (removed) 3.57 kB 🟢 -3.57 kB 🟢 -1.26 kB 🟢 -1.07 kB
assets/auth-BXZ8ISUT.js (new) 3.57 kB 🔴 +3.57 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/SignUpForm-BOO4KvDG.js (removed) 3.16 kB 🟢 -3.16 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-DZSbCzRY.js (new) 3.16 kB 🔴 +3.16 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-dnhUawCQ.js (new) 2.66 kB 🔴 +2.66 kB 🔴 +1.19 kB 🔴 +1.06 kB
assets/UpdatePasswordContent-DTSDrwEb.js (removed) 2.66 kB 🟢 -2.66 kB 🟢 -1.19 kB 🟢 -1.06 kB
assets/authStore-B37d16Jl.js (new) 989 B 🔴 +989 B 🔴 +479 B 🔴 +426 B
assets/authStore-CED0grKl.js (removed) 989 B 🟢 -989 B 🟢 -480 B 🟢 -428 B
assets/auth-BX5Vy9wq.js (removed) 348 B 🟢 -348 B 🟢 -214 B 🟢 -189 B
assets/auth-J8w3BrXi.js (new) 348 B 🔴 +348 B 🔴 +216 B 🔴 +217 B

Status: 6 added / 6 removed / 1 unchanged

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

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useShareDialog-BxOnAYIu.js (removed) 108 kB 🟢 -108 kB 🟢 -22.4 kB 🟢 -18.9 kB
assets/useShareDialog-C-a_vWC1.js (new) 108 kB 🔴 +108 kB 🔴 +22.4 kB 🔴 +18.9 kB
assets/useSubscriptionDialog-CUY_gqlV.js (new) 969 B 🔴 +969 B 🔴 +472 B 🔴 +413 B
assets/useSubscriptionDialog-DYnhk4Vp.js (removed) 969 B 🟢 -969 B 🟢 -474 B 🟢 -414 B

Status: 2 added / 2 removed

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

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-cssWFD2h.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.79 kB 🔴 +3.37 kB
assets/ComfyQueueButton-CUAOgm2n.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.79 kB 🟢 -3.37 kB
assets/useTerminalTabs-Cq9mU1dC.js (removed) 10.7 kB 🟢 -10.7 kB 🟢 -3.6 kB 🟢 -3.16 kB
assets/useTerminalTabs-DHk7zNhH.js (new) 10.7 kB 🔴 +10.7 kB 🔴 +3.6 kB 🔴 +3.18 kB
assets/TopbarBadge-CDHGrnq0.js (new) 7.62 kB 🔴 +7.62 kB 🔴 +1.87 kB 🔴 +1.64 kB
assets/TopbarBadge-CZkJSxr7.js (removed) 7.62 kB 🟢 -7.62 kB 🟢 -1.87 kB 🟢 -1.64 kB
assets/SubscribeButton-ByK3y3nG.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.04 kB 🟢 -914 B
assets/SubscribeButton-DM-S8YKv.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.04 kB 🔴 +916 B
assets/cloudFeedbackTopbarButton-BhzVE_8t.js (new) 1.66 kB 🔴 +1.66 kB 🔴 +843 B 🔴 +746 B
assets/cloudFeedbackTopbarButton-CeHxM72-.js (removed) 1.66 kB 🟢 -1.66 kB 🟢 -843 B 🟢 -758 B
assets/UserAvatar-B0ENHXRR.js (removed) 1.28 kB 🟢 -1.28 kB 🟢 -673 B 🟢 -580 B
assets/UserAvatar-CXjKzBwh.js (new) 1.28 kB 🔴 +1.28 kB 🔴 +673 B 🔴 +579 B
assets/CloudBadge-DQf5tKUF.js (new) 1.17 kB 🔴 +1.17 kB 🔴 +595 B 🔴 +519 B
assets/CloudBadge-K5z1ef8I.js (removed) 1.17 kB 🟢 -1.17 kB 🟢 -596 B 🟢 -523 B
assets/ComfyQueueButton-0FuWFy1c.js (removed) 1.03 kB 🟢 -1.03 kB 🟢 -488 B 🟢 -443 B
assets/ComfyQueueButton-CFcg26d3.js (new) 1.03 kB 🔴 +1.03 kB 🔴 +486 B 🔴 +439 B

Status: 8 added / 8 removed / 5 unchanged

Data & Services — 2.96 MB (baseline 2.96 MB) • 🔴 +1.1 kB

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-D2_bjQRI.js (new) 1.93 MB 🔴 +1.93 MB 🔴 +444 kB 🔴 +336 kB
assets/dialogService-BoOMikzh.js (removed) 1.92 MB 🟢 -1.92 MB 🟢 -443 kB 🟢 -336 kB
assets/api-DvEacfsi.js (new) 885 kB 🔴 +885 kB 🔴 +211 kB 🔴 +167 kB
assets/api-uoNIfaf7.js (removed) 885 kB 🟢 -885 kB 🟢 -211 kB 🟢 -166 kB
assets/load3dService-CHMZpJuK.js (new) 92.5 kB 🔴 +92.5 kB 🔴 +19.7 kB 🔴 +16.9 kB
assets/load3dService-Ci_8YANG.js (removed) 92.5 kB 🟢 -92.5 kB 🟢 -19.7 kB 🟢 -16.9 kB
assets/workflowShareService-CTJsNIeH.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.88 kB 🟢 -4.32 kB
assets/workflowShareService-xFLHyNxL.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.88 kB 🔴 +4.32 kB
assets/keybindingService-CPScJMxi.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.21 kB
assets/keybindingService-D06ZK20M.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.66 kB 🟢 -3.21 kB
assets/releaseStore-D9dY5_Ff.js (removed) 8.12 kB 🟢 -8.12 kB 🟢 -2.28 kB 🟢 -2 kB
assets/releaseStore-DXJJmz0o.js (new) 8.12 kB 🔴 +8.12 kB 🔴 +2.28 kB 🔴 +2 kB
assets/userStore-20uJT8DZ.js (new) 2.24 kB 🔴 +2.24 kB 🔴 +867 B 🔴 +760 B
assets/userStore-DuppcH5M.js (removed) 2.24 kB 🟢 -2.24 kB 🟢 -868 B 🟢 -764 B
assets/audioService-4hihfUte.js (removed) 1.8 kB 🟢 -1.8 kB 🟢 -876 B 🟢 -754 B
assets/audioService-7X92hyko.js (new) 1.8 kB 🔴 +1.8 kB 🔴 +876 B 🔴 +759 B
assets/releaseStore-C-BLG5V4.js (new) 993 B 🔴 +993 B 🔴 +478 B 🔴 +424 B
assets/releaseStore-u8cz-IQ7.js (removed) 993 B 🟢 -993 B 🟢 -480 B 🟢 -429 B
assets/workflowDraftStore-Dre1oZMA.js (new) 969 B 🔴 +969 B 🔴 +472 B 🔴 +422 B
assets/workflowDraftStore-DXT1NWve.js (removed) 969 B 🟢 -969 B 🟢 -473 B 🟢 -417 B
assets/dialogService-BYOussAV.js (new) 958 B 🔴 +958 B 🔴 +464 B 🔴 +415 B
assets/dialogService-jFEOCqv1.js (removed) 958 B 🟢 -958 B 🟢 -466 B 🟢 -414 B
assets/settingStore-BAgw_x1v.js (new) 956 B 🔴 +956 B 🔴 +467 B 🔴 +414 B
assets/settingStore-LpO8xFb3.js (removed) 956 B 🟢 -956 B 🟢 -468 B 🟢 -416 B
assets/assetsStore-eXf809GN.js (new) 955 B 🔴 +955 B 🔴 +468 B 🔴 +415 B
assets/assetsStore-INFZ6vJZ.js (removed) 955 B 🟢 -955 B 🟢 -470 B 🟢 -417 B

Status: 13 added / 13 removed / 4 unchanged

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-Dq-WqP4p.js (removed) 232 kB 🟢 -232 kB 🟢 -51.3 kB 🟢 -41.8 kB
assets/useConflictDetection-h_Gnx8Ha.js (new) 232 kB 🔴 +232 kB 🔴 +51.3 kB 🔴 +41.7 kB
assets/useLoad3dViewer-C9LMYDQZ.js (removed) 18.7 kB 🟢 -18.7 kB 🟢 -4.43 kB 🟢 -3.91 kB
assets/useLoad3dViewer-D8oMlu7o.js (new) 18.7 kB 🔴 +18.7 kB 🔴 +4.43 kB 🔴 +3.91 kB
assets/useLoad3d-CCSESZ-x.js (new) 15 kB 🔴 +15 kB 🔴 +3.79 kB 🔴 +3.35 kB
assets/useLoad3d-Dzf-_i_V.js (removed) 15 kB 🟢 -15 kB 🟢 -3.79 kB 🟢 -3.36 kB
assets/useFeatureFlags-BhQplmlI.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.75 kB 🔴 +1.48 kB
assets/useFeatureFlags-CfhUeTwA.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.75 kB 🟢 -1.48 kB
assets/useCopyToClipboard-DcqzdIwA.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.57 kB
assets/useCopyToClipboard-GGSuHUMc.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.57 kB
assets/downloadUtil-CkP72ZZ5.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.85 kB 🟢 -1.53 kB
assets/downloadUtil-Drc6qolb.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.85 kB 🔴 +1.54 kB
assets/useWorkspaceUI-DwVqaRam.js (removed) 3.34 kB 🟢 -3.34 kB 🟢 -979 B 🟢 -811 B
assets/useWorkspaceUI-xaZc_Q_Z.js (new) 3.34 kB 🔴 +3.34 kB 🔴 +979 B 🔴 +812 B
assets/useExternalLink-1QPMAaMI.js (new) 3.04 kB 🔴 +3.04 kB 🔴 +1.17 kB 🔴 +1.04 kB
assets/useExternalLink-C1kpHXWR.js (removed) 3.04 kB 🟢 -3.04 kB 🟢 -1.17 kB 🟢 -1.04 kB
assets/subscriptionCheckoutUtil-BkPO3RHQ.js (removed) 2.97 kB 🟢 -2.97 kB 🟢 -1.31 kB 🟢 -1.14 kB
assets/subscriptionCheckoutUtil-DSlLOCEx.js (new) 2.97 kB 🔴 +2.97 kB 🔴 +1.31 kB 🔴 +1.14 kB
assets/assetPreviewUtil-Bv9okgx2.js (new) 2.27 kB 🔴 +2.27 kB 🔴 +957 B 🔴 +833 B
assets/assetPreviewUtil-DTcE5ayw.js (removed) 2.27 kB 🟢 -2.27 kB 🟢 -956 B 🟢 -832 B
assets/useUpstreamValue-CvtHSJF6.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -804 B 🟢 -719 B
assets/useUpstreamValue-dUarMpYR.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +802 B 🔴 +710 B
assets/useErrorHandling-B1rAPMQP.js (removed) 1.54 kB 🟢 -1.54 kB 🟢 -647 B 🟢 -554 B
assets/useErrorHandling-Bq8-Vzs_.js (new) 1.54 kB 🔴 +1.54 kB 🔴 +648 B 🔴 +549 B
assets/useLoad3d-D-P6CGIQ.js (new) 1.13 kB 🔴 +1.13 kB 🔴 +539 B 🔴 +482 B
assets/useLoad3d-DmrGS1s3.js (removed) 1.13 kB 🟢 -1.13 kB 🟢 -538 B 🟢 -484 B
assets/useLoad3dViewer-DqTYVmQF.js (removed) 1.07 kB 🟢 -1.07 kB 🟢 -506 B 🟢 -460 B
assets/useLoad3dViewer-UmTg6RXZ.js (new) 1.07 kB 🔴 +1.07 kB 🔴 +503 B 🔴 +454 B
assets/useCurrentUser-Bk5lds2B.js (new) 955 B 🔴 +955 B 🔴 +468 B 🔴 +414 B
assets/useCurrentUser-Dk-uK4fW.js (removed) 955 B 🟢 -955 B 🟢 -469 B 🟢 -413 B
assets/useWorkspaceSwitch-CNAIknyi.js (removed) 747 B 🟢 -747 B 🟢 -385 B 🟢 -332 B
assets/useWorkspaceSwitch-FiiwtrIq.js (new) 747 B 🔴 +747 B 🔴 +385 B 🔴 +331 B

Status: 16 added / 16 removed / 9 unchanged

Vendor & Third-Party — 9.8 MB (baseline 9.8 MB) • 🟢 -17 B

External libraries and shared vendor chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/vendor-primevue-Dnp2bJ8y.js (removed) 1.75 MB 🟢 -1.75 MB 🟢 -315 kB 🟢 -191 kB
assets/vendor-primevue-7RiWC5oc.js (new) 1.75 MB 🔴 +1.75 MB 🔴 +315 kB 🔴 +191 kB

Status: 1 added / 1 removed / 15 unchanged

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

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/i18n-D8_0rnDR.js (new) 566 kB 🔴 +566 kB 🔴 +111 kB 🔴 +87.1 kB
assets/i18n-DRdvSkll.js (removed) 566 kB 🟢 -566 kB 🟢 -111 kB 🟢 -87.2 kB
assets/core-goSMoly3.js (removed) 76.8 kB 🟢 -76.8 kB 🟢 -19.9 kB 🟢 -16.9 kB
assets/core-tVDKwHXN.js (new) 76.8 kB 🔴 +76.8 kB 🔴 +19.9 kB 🔴 +17 kB
assets/groupNode-Bdxlool0.js (new) 74 kB 🔴 +74 kB 🔴 +18.5 kB 🔴 +16.3 kB
assets/groupNode-CFQMFFqF.js (removed) 74 kB 🟢 -74 kB 🟢 -18.5 kB 🟢 -16.3 kB
assets/WidgetSelect-B_do1_7Q.js (removed) 64.6 kB 🟢 -64.6 kB 🟢 -14.1 kB 🟢 -12.1 kB
assets/WidgetSelect-D5zjo_fm.js (new) 64.6 kB 🔴 +64.6 kB 🔴 +14.1 kB 🔴 +12.1 kB
assets/SubscriptionRequiredDialogContentWorkspace-BojvJZIH.js (new) 48.9 kB 🔴 +48.9 kB 🔴 +9.29 kB 🔴 +7.94 kB
assets/SubscriptionRequiredDialogContentWorkspace-ruzi0t8Q.js (removed) 48.9 kB 🟢 -48.9 kB 🟢 -9.29 kB 🟢 -7.93 kB
assets/WidgetPainter-B7vNPCrF.js (new) 33.3 kB 🔴 +33.3 kB 🔴 +8.11 kB 🔴 +7.2 kB
assets/WidgetPainter-DOB1CoFR.js (removed) 33.3 kB 🟢 -33.3 kB 🟢 -8.11 kB 🟢 -7.19 kB
assets/Load3DControls-CfqCLpD_.js (removed) 32.1 kB 🟢 -32.1 kB 🟢 -5.47 kB 🟢 -4.76 kB
assets/Load3DControls-VGgWARkw.js (new) 32.1 kB 🔴 +32.1 kB 🔴 +5.47 kB 🔴 +4.76 kB
assets/WorkspacePanelContent-Baj2GsHw.js (new) 29.9 kB 🔴 +29.9 kB 🔴 +6.32 kB 🔴 +5.55 kB
assets/WorkspacePanelContent-Bo_AINPi.js (removed) 29.9 kB 🟢 -29.9 kB 🟢 -6.33 kB 🟢 -5.55 kB
assets/SubscriptionRequiredDialogContent-7BLOsnbQ.js (removed) 28.2 kB 🟢 -28.2 kB 🟢 -7.16 kB 🟢 -6.3 kB
assets/SubscriptionRequiredDialogContent-BSg37tuM.js (new) 28.2 kB 🔴 +28.2 kB 🔴 +7.16 kB 🔴 +6.3 kB
assets/Load3dViewerContent-DjZC7yHn.js (new) 24.3 kB 🔴 +24.3 kB 🔴 +5.32 kB 🔴 +4.63 kB
assets/Load3dViewerContent-LzPc-nin.js (removed) 24.3 kB 🟢 -24.3 kB 🟢 -5.32 kB 🟢 -4.63 kB
assets/WidgetImageCrop-BVfmGU9_.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.83 kB 🟢 -5.14 kB
assets/WidgetImageCrop-ry5b3bPm.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.82 kB 🔴 +5.14 kB
assets/SubscriptionPanelContentWorkspace-BSlPr1LS.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.18 kB 🔴 +4.55 kB
assets/SubscriptionPanelContentWorkspace-GAx9pNbR.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.18 kB 🟢 -4.55 kB
assets/SignInContent-1gS7OMho.js (new) 20.4 kB 🔴 +20.4 kB 🔴 +5.29 kB 🔴 +4.62 kB
assets/SignInContent-CxLTLS0j.js (removed) 20.4 kB 🟢 -20.4 kB 🟢 -5.29 kB 🟢 -4.63 kB
assets/CurrentUserPopoverWorkspace-DvwO5go1.js (removed) 20.4 kB 🟢 -20.4 kB 🟢 -4.84 kB 🟢 -4.33 kB
assets/CurrentUserPopoverWorkspace-nNT7Rbnb.js (new) 20.4 kB 🔴 +20.4 kB 🔴 +4.83 kB 🔴 +4.33 kB
assets/WidgetInputNumber-JWVObTno.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.84 kB 🟢 -4.3 kB
assets/WidgetInputNumber-NChRbZJ2.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.84 kB 🔴 +4.3 kB
assets/WidgetRecordAudio-Brn-u1gP.js (removed) 18.1 kB 🟢 -18.1 kB 🟢 -5.18 kB 🟢 -4.64 kB
assets/WidgetRecordAudio-CWrh2hOm.js (new) 18.1 kB 🔴 +18.1 kB 🔴 +5.18 kB 🔴 +4.65 kB
assets/Load3D-3Kzzly3q.js (removed) 16.9 kB 🟢 -16.9 kB 🟢 -4.11 kB 🟢 -3.59 kB
assets/Load3D-QDNWhyMX.js (new) 16.9 kB 🔴 +16.9 kB 🔴 +4.12 kB 🔴 +3.59 kB
assets/WidgetCurve-BnP-SO-7.js (new) 16.1 kB 🔴 +16.1 kB 🔴 +4.96 kB 🔴 +4.45 kB
assets/WidgetCurve-SyamYzeg.js (removed) 16.1 kB 🟢 -16.1 kB 🟢 -4.97 kB 🟢 -4.45 kB
assets/load3d-8Q69kyWT.js (new) 15 kB 🔴 +15 kB 🔴 +4.32 kB 🔴 +3.75 kB
assets/load3d-DXCJ5Jv8.js (removed) 15 kB 🟢 -15 kB 🟢 -4.32 kB 🟢 -3.74 kB
assets/WaveAudioPlayer-BuJlz81P.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.68 kB 🔴 +3.22 kB
assets/WaveAudioPlayer-CaaX19B4.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.68 kB 🟢 -3.22 kB
assets/TeamWorkspacesDialogContent-B9v0SkW_.js (removed) 11.1 kB 🟢 -11.1 kB 🟢 -3.34 kB 🟢 -2.97 kB
assets/TeamWorkspacesDialogContent-DKl2SRGc.js (new) 11.1 kB 🔴 +11.1 kB 🔴 +3.33 kB 🔴 +2.97 kB
assets/AudioPreviewPlayer-BTIk6j85.js (new) 10.8 kB 🔴 +10.8 kB 🔴 +3.13 kB 🔴 +2.81 kB
assets/AudioPreviewPlayer-DqP61ZZN.js (removed) 10.8 kB 🟢 -10.8 kB 🟢 -3.13 kB 🟢 -2.81 kB
assets/nodeTemplates-DZrBO_1J.js (new) 9.58 kB 🔴 +9.58 kB 🔴 +3.37 kB 🔴 +2.96 kB
assets/nodeTemplates-geqgw8n_.js (removed) 9.58 kB 🟢 -9.58 kB 🟢 -3.37 kB 🟢 -2.97 kB
assets/InviteMemberDialogContent-Do2NZGs9.js (removed) 7.77 kB 🟢 -7.77 kB 🟢 -2.45 kB 🟢 -2.14 kB
assets/InviteMemberDialogContent-yglAku_7.js (new) 7.77 kB 🔴 +7.77 kB 🔴 +2.44 kB 🔴 +2.13 kB
assets/Load3DConfiguration-BJ6G1Ctx.js (new) 6.6 kB 🔴 +6.6 kB 🔴 +2.04 kB 🔴 +1.78 kB
assets/Load3DConfiguration-CWjHH-r-.js (removed) 6.6 kB 🟢 -6.6 kB 🟢 -2.04 kB 🟢 -1.78 kB
assets/onboardingCloudRoutes-BrERKJwJ.js (removed) 6.53 kB 🟢 -6.53 kB 🟢 -2.04 kB 🟢 -1.76 kB
assets/onboardingCloudRoutes-C8mM_ghY.js (new) 6.53 kB 🔴 +6.53 kB 🔴 +2.04 kB 🔴 +1.76 kB
assets/WidgetWithControl-CjbMZFc6.js (removed) 5.99 kB 🟢 -5.99 kB 🟢 -2.38 kB 🟢 -2.11 kB
assets/WidgetWithControl-CslgvsIr.js (new) 5.99 kB 🔴 +5.99 kB 🔴 +2.38 kB 🔴 +2.13 kB
assets/CreateWorkspaceDialogContent-BnSzFwjI.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +2.15 kB 🔴 +1.88 kB
assets/CreateWorkspaceDialogContent-CT80nE-R.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -2.15 kB 🟢 -1.88 kB
assets/FreeTierDialogContent-DFLH_VMe.js (removed) 5.82 kB 🟢 -5.82 kB 🟢 -2.05 kB 🟢 -1.81 kB
assets/FreeTierDialogContent-DvfqDIHl.js (new) 5.82 kB 🔴 +5.82 kB 🔴 +2.04 kB 🔴 +1.8 kB
assets/EditWorkspaceDialogContent-CEVnzMU4.js (new) 5.75 kB 🔴 +5.75 kB 🔴 +2.11 kB 🔴 +1.84 kB
assets/EditWorkspaceDialogContent-D7LFzI0v.js (removed) 5.75 kB 🟢 -5.75 kB 🟢 -2.11 kB 🟢 -1.84 kB
assets/WidgetTextarea-CBinfaY8.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2.17 kB 🔴 +1.92 kB
assets/WidgetTextarea-tC4YZ93D.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2.17 kB 🟢 -1.93 kB
assets/Preview3d-CSVD55Ru.js (new) 5.36 kB 🔴 +5.36 kB 🔴 +1.79 kB 🔴 +1.56 kB
assets/Preview3d-CyWM20wG.js (removed) 5.36 kB 🟢 -5.36 kB 🟢 -1.79 kB 🟢 -1.56 kB
assets/ValueControlPopover-Bdq906oM.js (removed) 5.33 kB 🟢 -5.33 kB 🟢 -1.93 kB 🟢 -1.73 kB
assets/ValueControlPopover-CVRPuXgC.js (new) 5.33 kB 🔴 +5.33 kB 🔴 +1.92 kB 🔴 +1.72 kB
assets/CancelSubscriptionDialogContent-6IirUtGD.js (removed) 5.22 kB 🟢 -5.22 kB 🟢 -1.95 kB 🟢 -1.7 kB
assets/CancelSubscriptionDialogContent-aMUPlM2k.js (new) 5.22 kB 🔴 +5.22 kB 🔴 +1.94 kB 🔴 +1.7 kB
assets/AnimationControls-CYD1z7uk.js (removed) 4.78 kB 🟢 -4.78 kB 🟢 -1.66 kB 🟢 -1.46 kB
assets/AnimationControls-DD905iYL.js (new) 4.78 kB 🔴 +4.78 kB 🔴 +1.66 kB 🔴 +1.47 kB
assets/DeleteWorkspaceDialogContent-BNz93Exd.js (new) 4.65 kB 🔴 +4.65 kB 🔴 +1.78 kB 🔴 +1.55 kB
assets/DeleteWorkspaceDialogContent-BZbosEwE.js (removed) 4.65 kB 🟢 -4.65 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/LeaveWorkspaceDialogContent-C0-2e3TE.js (new) 4.48 kB 🔴 +4.48 kB 🔴 +1.73 kB 🔴 +1.51 kB
assets/LeaveWorkspaceDialogContent-CbY7sOMg.js (removed) 4.48 kB 🟢 -4.48 kB 🟢 -1.74 kB 🟢 -1.51 kB
assets/RemoveMemberDialogContent-BYoOToOd.js (new) 4.46 kB 🔴 +4.46 kB 🔴 +1.69 kB 🔴 +1.47 kB
assets/RemoveMemberDialogContent-iV4B7TNY.js (removed) 4.46 kB 🟢 -4.46 kB 🟢 -1.69 kB 🟢 -1.47 kB
assets/tierBenefits-CeSi-wvF.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.57 kB 🟢 -1.36 kB
assets/tierBenefits-DnmiBwTs.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.57 kB 🔴 +1.36 kB
assets/RevokeInviteDialogContent-BDIJrrW6.js (removed) 4.37 kB 🟢 -4.37 kB 🟢 -1.7 kB 🟢 -1.48 kB
assets/RevokeInviteDialogContent-BrPTK19S.js (new) 4.37 kB 🔴 +4.37 kB 🔴 +1.7 kB 🔴 +1.49 kB
assets/InviteMemberUpsellDialogContent-CCfYQlNV.js (new) 4.27 kB 🔴 +4.27 kB 🔴 +1.56 kB 🔴 +1.37 kB
assets/InviteMemberUpsellDialogContent-DlxKMXET.js (removed) 4.27 kB 🟢 -4.27 kB 🟢 -1.56 kB 🟢 -1.37 kB
assets/cloudSessionCookie-Dwr9eiz4.js (new) 4.12 kB 🔴 +4.12 kB 🔴 +1.49 kB 🔴 +1.29 kB
assets/cloudSessionCookie-rrLWx6kS.js (removed) 4.12 kB 🟢 -4.12 kB 🟢 -1.49 kB 🟢 -1.31 kB
assets/saveMesh-BGso6zl6.js (removed) 3.92 kB 🟢 -3.92 kB 🟢 -1.68 kB 🟢 -1.48 kB
assets/saveMesh-CegcCMTi.js (new) 3.92 kB 🔴 +3.92 kB 🔴 +1.68 kB 🔴 +1.48 kB
assets/Media3DTop-D74yStnA.js (new) 3.85 kB 🔴 +3.85 kB 🔴 +1.62 kB 🔴 +1.43 kB
assets/Media3DTop-DUCmsqhR.js (removed) 3.85 kB 🟢 -3.85 kB 🟢 -1.62 kB 🟢 -1.43 kB
assets/WidgetGalleria-DjY8RqT4.js (removed) 3.8 kB 🟢 -3.8 kB 🟢 -1.47 kB 🟢 -1.31 kB
assets/WidgetGalleria-DsnKxbbC.js (new) 3.8 kB 🔴 +3.8 kB 🔴 +1.48 kB 🔴 +1.31 kB
assets/WidgetToggleSwitch-DgjXtZJ6.js (new) 3.73 kB 🔴 +3.73 kB 🔴 +1.43 kB 🔴 +1.27 kB
assets/WidgetToggleSwitch-DzXhPHxB.js (removed) 3.73 kB 🟢 -3.73 kB 🟢 -1.43 kB 🟢 -1.26 kB
assets/WidgetMarkdown-Bi9Br2sB.js (new) 3.13 kB 🔴 +3.13 kB 🔴 +1.3 kB 🔴 +1.14 kB
assets/WidgetMarkdown-BMh1Syt-.js (removed) 3.13 kB 🟢 -3.13 kB 🟢 -1.3 kB 🟢 -1.15 kB
assets/WidgetInputText-B6AM_VjC.js (new) 3.09 kB 🔴 +3.09 kB 🔴 +1.31 kB 🔴 +1.17 kB
assets/WidgetInputText-DqIT_TWm.js (removed) 3.09 kB 🟢 -3.09 kB 🟢 -1.31 kB 🟢 -1.18 kB
assets/GlobalToast-100AX0SO.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.11 kB
assets/GlobalToast-BRUS8_16.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.11 kB
assets/ApiNodesSignInContent-CCWTL4Cw.js (new) 2.86 kB 🔴 +2.86 kB 🔴 +1.11 kB 🔴 +976 B
assets/ApiNodesSignInContent-DPTcdSo4.js (removed) 2.86 kB 🟢 -2.86 kB 🟢 -1.11 kB 🟢 -973 B
assets/WidgetChart-BcVFZS9l.js (removed) 2.41 kB 🟢 -2.41 kB 🟢 -1.02 kB 🟢 -885 B
assets/WidgetChart-CzcWvlxU.js (new) 2.41 kB 🔴 +2.41 kB 🔴 +1.02 kB 🔴 +884 B
assets/SubscribeToRun-eIMT1hGA.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +983 B 🔴 +869 B
assets/SubscribeToRun-T8uuT1Pc.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -982 B 🟢 -854 B
assets/MediaAudioTop-DGNgj0F3.js (new) 2.02 kB 🔴 +2.02 kB 🔴 +978 B 🔴 +834 B
assets/MediaAudioTop-Dq2_ytmV.js (removed) 2.02 kB 🟢 -2.02 kB 🟢 -980 B 🟢 -832 B
assets/CloudRunButtonWrapper-RHjv4c4u.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +909 B 🔴 +806 B
assets/CloudRunButtonWrapper-X71IAv7J.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -910 B 🟢 -809 B
assets/graphHasMissingNodes-5ngxvJfv.js (removed) 1.83 kB 🟢 -1.83 kB 🟢 -859 B 🟢 -753 B
assets/graphHasMissingNodes-Du5VfFkC.js (new) 1.83 kB 🔴 +1.83 kB 🔴 +859 B 🔴 +752 B
assets/cloudBadges-BsM0HfN_.js (new) 1.77 kB 🔴 +1.77 kB 🔴 +891 B 🔴 +773 B
assets/cloudBadges-CsPudxQe.js (removed) 1.77 kB 🟢 -1.77 kB 🟢 -890 B 🟢 -777 B
assets/cloudSubscription-CEen9-lr.js (new) 1.68 kB 🔴 +1.68 kB 🔴 +812 B 🔴 +704 B
assets/cloudSubscription-m_eiwL89.js (removed) 1.68 kB 🟢 -1.68 kB 🟢 -813 B 🟢 -716 B
assets/signInSchema-BNDmjJjL.js (removed) 1.6 kB 🟢 -1.6 kB 🟢 -585 B 🟢 -510 B
assets/signInSchema-C1cu6EdV.js (new) 1.6 kB 🔴 +1.6 kB 🔴 +585 B 🔴 +553 B
assets/previousFullPath-B6wMJtwo.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -693 B 🟢 -600 B
assets/previousFullPath-CT79-H4u.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +693 B 🔴 +618 B
assets/Load3D-CjKUT2t1.js (removed) 1.34 kB 🟢 -1.34 kB 🟢 -615 B 🟢 -548 B
assets/Load3D-DrIMDkOE.js (new) 1.34 kB 🔴 +1.34 kB 🔴 +613 B 🔴 +544 B
assets/nightlyBadges-BrsPYjWx.js (removed) 1.29 kB 🟢 -1.29 kB 🟢 -657 B 🟢 -583 B
assets/nightlyBadges-DENEtyWl.js (new) 1.29 kB 🔴 +1.29 kB 🔴 +655 B 🔴 +579 B
assets/Load3dViewerContent-AP8MBmm8.js (removed) 1.23 kB 🟢 -1.23 kB 🟢 -565 B 🟢 -500 B
assets/Load3dViewerContent-ovO9l2Ud.js (new) 1.23 kB 🔴 +1.23 kB 🔴 +563 B 🔴 +499 B
assets/SubscriptionPanelContentWorkspace-Dhj42PoF.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -533 B 🟢 -470 B
assets/SubscriptionPanelContentWorkspace-DsjmkFU5.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +531 B 🔴 +468 B
assets/WidgetLegacy-CJFL45J-.js (new) 978 B 🔴 +978 B 🔴 +478 B 🔴 +422 B
assets/WidgetLegacy-wdFyDJzn.js (removed) 978 B 🟢 -978 B 🟢 -480 B 🟢 -424 B
assets/changeTracker-D9yu1MqW.js (removed) 952 B 🟢 -952 B 🟢 -468 B 🟢 -412 B
assets/changeTracker-DsSONXZZ.js (new) 952 B 🔴 +952 B 🔴 +468 B 🔴 +411 B
assets/i18n-CSwDph0l.js (removed) 137 B 🟢 -137 B 🟢 -122 B 🟢 -109 B
assets/i18n-Dh4krMK7.js (new) 137 B 🔴 +137 B 🔴 +122 B 🔴 +110 B

Status: 66 added / 66 removed / 68 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.0 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.0 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.0 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 47.0 MB heap
large-graph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.3 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.6 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 58.7 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 53.8 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 47.3 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.0 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.4 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 72.1 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 157.7 MB heap
vue-large-graph-pan: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 177.1 MB heap
workflow-execution: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 46.2 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 9ms 10ms +11% z=-0.7
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 11 12 +9% z=1.5
canvas-idle: task duration 343ms 348ms +1% z=-1.5
canvas-idle: script duration 18ms 23ms +32% z=-0.9
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 60.1 MB 60.0 MB -0%
canvas-idle: DOM nodes 22 24 +9% z=1.1
canvas-idle: event listeners 6 6 +0% z=-1.2
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=0.7
canvas-mouse-sweep: p95 frame time 17ms 17ms +0%
canvas-mouse-sweep: layout duration 4ms 4ms -4% z=-0.4
canvas-mouse-sweep: style recalc duration 43ms 40ms -6% z=-0.7
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 81 81 +0% z=1.0
canvas-mouse-sweep: task duration 951ms 920ms -3% z=0.9
canvas-mouse-sweep: script duration 132ms 130ms -1% z=-0.8
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 56.1 MB 56.0 MB -0%
canvas-mouse-sweep: DOM nodes 64 66 +3% z=1.4
canvas-mouse-sweep: event listeners 6 6 +0% z=-0.6
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 +6% z=-1.0
canvas-zoom-sweep: style recalc duration 16ms 17ms +2% z=-1.5
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 282ms 284ms +1% z=-1.9
canvas-zoom-sweep: script duration 24ms 22ms -7% z=-1.6
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 64.0 MB 64.0 MB -0%
canvas-zoom-sweep: DOM nodes 81 79 -2% z=-0.3
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
dom-widget-clipping: p95 frame time 17ms 17ms +1%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 10ms 9ms -5% z=-0.6
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 13 13 +0% z=-0.2
dom-widget-clipping: task duration 347ms 332ms -4% z=-2.0
dom-widget-clipping: script duration 66ms 65ms -2% z=-0.9
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 47.0 MB 47.0 MB +0%
dom-widget-clipping: DOM nodes 21 22 +5% z=-0.1
dom-widget-clipping: event listeners 2 2 +0% 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 10ms 10ms -4% z=-2.4
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 11 10 -9% z=-5.1
large-graph-idle: task duration 521ms 522ms +0% z=-0.4
large-graph-idle: script duration 95ms 94ms -1% z=-0.8
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 53.2 MB 53.3 MB +0%
large-graph-idle: DOM nodes -255 -258 +1% z=-312.8
large-graph-idle: event listeners -121 -125 +3% z=-24.8
large-graph-pan: avg frame time 17ms 17ms -0% z=-0.8
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 16ms 16ms -0% 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 1067ms 1094ms +3% z=0.3
large-graph-pan: script duration 410ms 415ms +1% z=0.3
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 67.8 MB 67.6 MB -0%
large-graph-pan: DOM nodes -261 -259 -1% z=-168.5
large-graph-pan: event listeners -127 -125 -2% z=-156.9
large-graph-zoom: avg frame time 17ms 17ms -0%
large-graph-zoom: p95 frame time 17ms 17ms +0%
large-graph-zoom: layout duration 7ms 7ms +9%
large-graph-zoom: style recalc duration 16ms 16ms +4%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 66 66 +0%
large-graph-zoom: task duration 1254ms 1303ms +4%
large-graph-zoom: script duration 477ms 486ms +2%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 59.0 MB 58.7 MB -1%
large-graph-zoom: DOM nodes -262 -262 +0%
large-graph-zoom: event listeners -123 -125 +2%
minimap-idle: avg frame time 17ms 17ms -0% z=-0.9
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 9ms 9ms -1% z=-0.8
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 10 10 +0% z=0.6
minimap-idle: task duration 523ms 521ms -0% z=-0.1
minimap-idle: script duration 95ms 95ms +0% z=-0.3
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 53.8 MB 53.8 MB +0%
minimap-idle: DOM nodes -259 -260 +0% z=-204.1
minimap-idle: event listeners -125 -127 +2% z=-199.3
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms -1%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 12ms +5% z=-1.2
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 48 48 +0% z=0.1
subgraph-dom-widget-clipping: task duration 340ms 345ms +2% z=-1.8
subgraph-dom-widget-clipping: script duration 122ms 124ms +2% z=-0.6
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 46.9 MB 47.3 MB +1%
subgraph-dom-widget-clipping: DOM nodes 22 22 +0% z=-0.2
subgraph-dom-widget-clipping: event listeners 8 8 +0% z=-1.4
subgraph-idle: avg frame time 17ms 17ms +0% z=0.4
subgraph-idle: p95 frame time 17ms 17ms -1%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 13ms 11ms -17% z=0.2
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 11 12 +9% z=1.7
subgraph-idle: task duration 339ms 336ms -1% z=-1.1
subgraph-idle: script duration 17ms 17ms +1% z=-1.1
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 60.4 MB 60.0 MB -1%
subgraph-idle: DOM nodes 22 23 +5% z=0.8
subgraph-idle: event listeners 6 6 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms +0%
subgraph-mouse-sweep: layout duration 4ms 4ms +0% z=-1.1
subgraph-mouse-sweep: style recalc duration 44ms 45ms +2% z=0.8
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 84 84 +0% z=2.0
subgraph-mouse-sweep: task duration 869ms 884ms +2% z=1.7
subgraph-mouse-sweep: script duration 97ms 100ms +3% z=-0.1
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 52.4 MB 52.4 MB +0%
subgraph-mouse-sweep: DOM nodes 74 74 +0% z=3.2
subgraph-mouse-sweep: event listeners 6 6 +0% variance too high
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 41ms 44ms +7%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 251 251 +0%
viewport-pan-sweep: task duration 3501ms 3648ms +4%
viewport-pan-sweep: script duration 1210ms 1247ms +3%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 72.8 MB 72.1 MB -1%
viewport-pan-sweep: DOM nodes -256 -255 -0%
viewport-pan-sweep: event listeners -109 -111 +2%
vue-large-graph-idle: avg frame time 17ms 17ms -0%
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 11135ms 12027ms +8%
vue-large-graph-idle: script duration 540ms 578ms +7%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 155.0 MB 157.7 MB +2%
vue-large-graph-idle: DOM nodes -8331 -8331 +0%
vue-large-graph-idle: event listeners -16470 -16462 -0%
vue-large-graph-pan: avg frame time 17ms 17ms +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 12ms 14ms +12%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 64 66 +3%
vue-large-graph-pan: task duration 13709ms 14138ms +3%
vue-large-graph-pan: script duration 848ms 859ms +1%
vue-large-graph-pan: TBT 0ms 0ms +0%
vue-large-graph-pan: heap used 176.5 MB 177.1 MB +0%
vue-large-graph-pan: DOM nodes -8331 -8331 +0%
vue-large-graph-pan: event listeners -16460 -16460 +0%
workflow-execution: avg frame time 17ms 17ms +0% z=-0.4
workflow-execution: p95 frame time 17ms 17ms +0%
workflow-execution: layout duration 1ms 1ms +3% z=-1.6
workflow-execution: style recalc duration 25ms 22ms -13% z=-1.2
workflow-execution: layout count 5 5 +0% z=0.1
workflow-execution: style recalc count 18 17 -6% z=-0.4
workflow-execution: task duration 121ms 106ms -12% z=-1.5
workflow-execution: script duration 28ms 23ms -18% z=-2.1
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 47.0 MB 46.2 MB -2%
workflow-execution: DOM nodes 158 156 -1% z=-0.7
workflow-execution: event listeners 71 71 +0% z=4.4
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-03-29T07:45:12.698Z",
  "gitSha": "93ac24ffd6957c7f13ab334eb23085f07a1a1c34",
  "branch": "feature/migrate-primevue-chip",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2032.2809999999834,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 11.863999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 370.87,
      "heapDeltaBytes": 10994812,
      "heapUsedBytes": 62849740,
      "domNodes": 24,
      "jsHeapTotalBytes": 25952256,
      "scriptDurationMs": 23.743,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2022.467000000006,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.049,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 344.258,
      "heapDeltaBytes": 20409928,
      "heapUsedBytes": 63144492,
      "domNodes": 22,
      "jsHeapTotalBytes": 23068672,
      "scriptDurationMs": 21.003,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2014.3269999999802,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 10.218,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 347.58900000000006,
      "heapDeltaBytes": 20372968,
      "heapUsedBytes": 62862848,
      "domNodes": 24,
      "jsHeapTotalBytes": 22544384,
      "scriptDurationMs": 23.215,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 2003.4280000000138,
      "styleRecalcs": 81,
      "styleRecalcDurationMs": 42.75,
      "layouts": 12,
      "layoutDurationMs": 3.5300000000000002,
      "taskDurationMs": 928.5439999999999,
      "heapDeltaBytes": 16724312,
      "heapUsedBytes": 59186304,
      "domNodes": 67,
      "jsHeapTotalBytes": 23068672,
      "scriptDurationMs": 134.497,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1990.3039999999805,
      "styleRecalcs": 81,
      "styleRecalcDurationMs": 40.483000000000004,
      "layouts": 12,
      "layoutDurationMs": 3.3,
      "taskDurationMs": 919.719,
      "heapDeltaBytes": 15983496,
      "heapUsedBytes": 58768436,
      "domNodes": 66,
      "jsHeapTotalBytes": 23330816,
      "scriptDurationMs": 130.368,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1764.4510000000082,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 36.573,
      "layouts": 12,
      "layoutDurationMs": 3.601,
      "taskDurationMs": 719.446,
      "heapDeltaBytes": 15840416,
      "heapUsedBytes": 58269148,
      "domNodes": 59,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 130.126,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1727.9219999999782,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 17.738,
      "layouts": 6,
      "layoutDurationMs": 0.7290000000000001,
      "taskDurationMs": 284.28000000000003,
      "heapDeltaBytes": 24677984,
      "heapUsedBytes": 67379232,
      "domNodes": 78,
      "jsHeapTotalBytes": 20185088,
      "scriptDurationMs": 24.549999999999997,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1733.7559999999712,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 16.267000000000003,
      "layouts": 6,
      "layoutDurationMs": 0.573,
      "taskDurationMs": 282.951,
      "heapDeltaBytes": 24730012,
      "heapUsedBytes": 67128228,
      "domNodes": 79,
      "jsHeapTotalBytes": 19660800,
      "scriptDurationMs": 22.195000000000007,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1728.40199999996,
      "styleRecalcs": 31,
      "styleRecalcDurationMs": 16.802999999999997,
      "layouts": 6,
      "layoutDurationMs": 0.598,
      "taskDurationMs": 283.671,
      "heapDeltaBytes": 24630696,
      "heapUsedBytes": 67113280,
      "domNodes": 79,
      "jsHeapTotalBytes": 20185088,
      "scriptDurationMs": 22.197000000000003,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 558.3409999999844,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 9.377,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 343.798,
      "heapDeltaBytes": 6519612,
      "heapUsedBytes": 49263332,
      "domNodes": 22,
      "jsHeapTotalBytes": 13107200,
      "scriptDurationMs": 66.096,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 533.1739999999741,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 9.469,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 327.201,
      "heapDeltaBytes": 6541948,
      "heapUsedBytes": 49267580,
      "domNodes": 22,
      "jsHeapTotalBytes": 13107200,
      "scriptDurationMs": 64.95700000000001,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 537.9759999999578,
      "styleRecalcs": 13,
      "styleRecalcDurationMs": 9.101999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 331.534,
      "heapDeltaBytes": -2191736,
      "heapUsedBytes": 50463904,
      "domNodes": 21,
      "jsHeapTotalBytes": 16252928,
      "scriptDurationMs": 62.458000000000006,
      "eventListeners": 2,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2042.1049999999923,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.678000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 522.062,
      "heapDeltaBytes": 5649772,
      "heapUsedBytes": 56229492,
      "domNodes": -258,
      "jsHeapTotalBytes": 15929344,
      "scriptDurationMs": 95.471,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2032.9310000000191,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.439000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 526.0050000000001,
      "heapDeltaBytes": 4795524,
      "heapUsedBytes": 55877296,
      "domNodes": -259,
      "jsHeapTotalBytes": 15667200,
      "scriptDurationMs": 93.673,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2034.3729999999596,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.840000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 513.497,
      "heapDeltaBytes": 3953020,
      "heapUsedBytes": 55465008,
      "domNodes": -258,
      "jsHeapTotalBytes": 15929344,
      "scriptDurationMs": 93.557,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2148.989999999998,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 15.861000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1145.951,
      "heapDeltaBytes": 21706620,
      "heapUsedBytes": 74869076,
      "domNodes": -259,
      "jsHeapTotalBytes": 18231296,
      "scriptDurationMs": 439.228,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2176.4539999999784,
      "styleRecalcs": 70,
      "styleRecalcDurationMs": 15.865000000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1093.878,
      "heapDeltaBytes": 19146736,
      "heapUsedBytes": 70925072,
      "domNodes": -257,
      "jsHeapTotalBytes": 17969152,
      "scriptDurationMs": 414.768,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2106.8520000000035,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 16.342,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1042.8359999999998,
      "heapDeltaBytes": 14934528,
      "heapUsedBytes": 68215284,
      "domNodes": -260,
      "jsHeapTotalBytes": 18231296,
      "scriptDurationMs": 381.055,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3129.784000000029,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 17.551000000000002,
      "layouts": 60,
      "layoutDurationMs": 7.367,
      "taskDurationMs": 1321.899,
      "heapDeltaBytes": 5385168,
      "heapUsedBytes": 59662392,
      "domNodes": -262,
      "jsHeapTotalBytes": 18026496,
      "scriptDurationMs": 486.651,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3160.246000000029,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 16.369999999999997,
      "layouts": 60,
      "layoutDurationMs": 7.403,
      "taskDurationMs": 1303.093,
      "heapDeltaBytes": 7230248,
      "heapUsedBytes": 61519076,
      "domNodes": -262,
      "jsHeapTotalBytes": 17764352,
      "scriptDurationMs": 485.716,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3134.636999999998,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 15.028,
      "layouts": 60,
      "layoutDurationMs": 7.295999999999999,
      "taskDurationMs": 1288.422,
      "heapDeltaBytes": 6446088,
      "heapUsedBytes": 61641864,
      "domNodes": -267,
      "jsHeapTotalBytes": 17764352,
      "scriptDurationMs": 481.4240000000001,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "minimap-idle",
      "durationMs": 2022.312999999997,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.064000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 511.0220000000001,
      "heapDeltaBytes": 4174096,
      "heapUsedBytes": 56414408,
      "domNodes": -260,
      "jsHeapTotalBytes": 16453632,
      "scriptDurationMs": 94.888,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "minimap-idle",
      "durationMs": 2033.7349999999788,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.921000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 522.27,
      "heapDeltaBytes": 4039152,
      "heapUsedBytes": 56409640,
      "domNodes": -258,
      "jsHeapTotalBytes": 16191488,
      "scriptDurationMs": 95.20100000000001,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2048.9209999999503,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.944,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 520.978,
      "heapDeltaBytes": 3330576,
      "heapUsedBytes": 56395220,
      "domNodes": -262,
      "jsHeapTotalBytes": 16453632,
      "scriptDurationMs": 90.14100000000002,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 534.0980000000286,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 11.875,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 338.89000000000004,
      "heapDeltaBytes": 6404468,
      "heapUsedBytes": 49489452,
      "domNodes": 22,
      "jsHeapTotalBytes": 13893632,
      "scriptDurationMs": 117.66699999999999,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 528.0159999999796,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 11.616,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 345.001,
      "heapDeltaBytes": 6177956,
      "heapUsedBytes": 50468664,
      "domNodes": 22,
      "jsHeapTotalBytes": 12582912,
      "scriptDurationMs": 124.38899999999998,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 547.5969999999961,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 11.618,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 349.47999999999996,
      "heapDeltaBytes": 6433092,
      "heapUsedBytes": 49637244,
      "domNodes": 22,
      "jsHeapTotalBytes": 13369344,
      "scriptDurationMs": 125.07399999999998,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999727
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2040.2740000000108,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.588,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 366.16900000000004,
      "heapDeltaBytes": 19789648,
      "heapUsedBytes": 62909920,
      "domNodes": 18,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 12.336,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2004.287999999974,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 10.603,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 336.01000000000005,
      "heapDeltaBytes": 19915216,
      "heapUsedBytes": 62932772,
      "domNodes": 23,
      "jsHeapTotalBytes": 23592960,
      "scriptDurationMs": 17.887,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1998.0820000000676,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 11.001999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 329.028,
      "heapDeltaBytes": 19961908,
      "heapUsedBytes": 62638488,
      "domNodes": 24,
      "jsHeapTotalBytes": 22806528,
      "scriptDurationMs": 17.166999999999998,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1999.808999999999,
      "styleRecalcs": 84,
      "styleRecalcDurationMs": 46.129,
      "layouts": 16,
      "layoutDurationMs": 4.3309999999999995,
      "taskDurationMs": 917.672,
      "heapDeltaBytes": 12187852,
      "heapUsedBytes": 55167880,
      "domNodes": 73,
      "jsHeapTotalBytes": 23330816,
      "scriptDurationMs": 100.57900000000001,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1991.32400000002,
      "styleRecalcs": 85,
      "styleRecalcDurationMs": 41.23,
      "layouts": 16,
      "layoutDurationMs": 3.7809999999999997,
      "taskDurationMs": 884.476,
      "heapDeltaBytes": 11936324,
      "heapUsedBytes": 54946916,
      "domNodes": 74,
      "jsHeapTotalBytes": 23068672,
      "scriptDurationMs": 98.92600000000002,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1978.9180000000215,
      "styleRecalcs": 84,
      "styleRecalcDurationMs": 45.05,
      "layouts": 16,
      "layoutDurationMs": 4.356999999999999,
      "taskDurationMs": 884.043,
      "heapDeltaBytes": 11836572,
      "heapUsedBytes": 54899224,
      "domNodes": 74,
      "jsHeapTotalBytes": 23068672,
      "scriptDurationMs": 100.22200000000001,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8193.512999999995,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 43.728,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3647.999,
      "heapDeltaBytes": 26935448,
      "heapUsedBytes": 78756328,
      "domNodes": -256,
      "jsHeapTotalBytes": 19308544,
      "scriptDurationMs": 1246.839,
      "eventListeners": -109,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8165.233,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 43.577,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3602.351,
      "heapDeltaBytes": 25318012,
      "heapUsedBytes": 75649864,
      "domNodes": -255,
      "jsHeapTotalBytes": 20066304,
      "scriptDurationMs": 1237.473,
      "eventListeners": -111,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8138.403000000039,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 44.10600000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3673.754000000001,
      "heapDeltaBytes": 18288128,
      "heapUsedBytes": 68871400,
      "domNodes": -254,
      "jsHeapTotalBytes": 19804160,
      "scriptDurationMs": 1266.301,
      "eventListeners": -111,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12035.836000000018,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12026.935000000001,
      "heapDeltaBytes": -29515076,
      "heapUsedBytes": 165315476,
      "domNodes": -8331,
      "jsHeapTotalBytes": 26042368,
      "scriptDurationMs": 584.592,
      "eventListeners": -16462,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333237,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12109.173999999995,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12083.601999999999,
      "heapDeltaBytes": -29051292,
      "heapUsedBytes": 165452648,
      "domNodes": -8331,
      "jsHeapTotalBytes": 26828800,
      "scriptDurationMs": 578.2040000000001,
      "eventListeners": -16462,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.216666666666665,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 11800.06000000003,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 11790.759,
      "heapDeltaBytes": -29398652,
      "heapUsedBytes": 165382192,
      "domNodes": -8331,
      "jsHeapTotalBytes": 26304512,
      "scriptDurationMs": 576.234,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14072.186999999985,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 13.23900000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14042.403,
      "heapDeltaBytes": -23920632,
      "heapUsedBytes": 186995940,
      "domNodes": -8331,
      "jsHeapTotalBytes": 28053504,
      "scriptDurationMs": 862.5039999999999,
      "eventListeners": -16460,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14161.641999999973,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 13.690999999999981,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14137.502000000002,
      "heapDeltaBytes": -7985676,
      "heapUsedBytes": 185730148,
      "domNodes": -8331,
      "jsHeapTotalBytes": 25694208,
      "scriptDurationMs": 833.568,
      "eventListeners": -16458,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14271.937999999976,
      "styleRecalcs": 67,
      "styleRecalcDurationMs": 13.699000000000016,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14248.024999999998,
      "heapDeltaBytes": -46016036,
      "heapUsedBytes": 147809252,
      "domNodes": -8331,
      "jsHeapTotalBytes": -4628480,
      "scriptDurationMs": 859.43,
      "eventListeners": -16488,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333237,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 441.41500000000633,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 22.831,
      "layouts": 5,
      "layoutDurationMs": 1.411,
      "taskDurationMs": 119.554,
      "heapDeltaBytes": 4710472,
      "heapUsedBytes": 48977052,
      "domNodes": 167,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 28.158999999999995,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "workflow-execution",
      "durationMs": 450.37999999999556,
      "styleRecalcs": 17,
      "styleRecalcDurationMs": 21.554,
      "layouts": 5,
      "layoutDurationMs": 1.3139999999999998,
      "taskDurationMs": 106.12700000000002,
      "heapDeltaBytes": 4379500,
      "heapUsedBytes": 48403860,
      "domNodes": 156,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 22.863000000000003,
      "eventListeners": 71,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "workflow-execution",
      "durationMs": 108.4569999999303,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 14.478,
      "layouts": 4,
      "layoutDurationMs": 1.2969999999999997,
      "taskDurationMs": 78.838,
      "heapDeltaBytes": 2486336,
      "heapUsedBytes": 47057232,
      "domNodes": 142,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 19.590000000000003,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

dante01yoon added a commit that referenced this pull request Mar 28, 2026
)

## Summary
- Add `Tag` component based on Figma design system with CVA variants
  - `square` (rounded-sm) and `rounded` (pill) shapes
- `overlay` shape for tags on image thumbnails (pending Figma
confirmation)
  - `default`, `unselected`, `selected` states matching Figma
  - `removable` prop with X close button and `remove` event
  - Icon slot support
- Rename `SquareChip` → `Tag` across all consumers
(WorkflowTemplateSelectorDialog, SampleModelSelector)
- Update all Storybook stories (Tag, Card, BaseModalLayout)
- Delete old `SquareChip.vue` and `SquareChip.stories.ts`
- Add E2E screenshot test for template card overlay tags

Foundation for migrating PrimeVue `Chip` and `Tag` components in
follow-up PRs.

## Test plan
- [x] Unit tests pass (5 tests: rendering, removable, icon slot)
- [x] E2E screenshot test: template cards with overlay tags
- [x] Typecheck passes
- [x] Lint passes
- [ ] Verify Tag stories render correctly in Storybook
- [ ] Verify WorkflowTemplateSelectorDialog tags display correctly
- [ ] Verify SampleModelSelector chips display correctly

## Follow-up work
- **PR 4** (#10673): Migrate PrimeVue `Chip` → custom `Tag`
(SearchFilterChip, NodeSearchItem, DownloadItem)
- **PR 5** (planned): Migrate PrimeVue `Tag` → custom `Tag` (~14 files)
Base automatically changed from feature/tag-component to main March 28, 2026 23:27
@dante01yoon dante01yoon marked this pull request as ready for review March 29, 2026 07:32
@dante01yoon dante01yoon requested a review from a team March 29, 2026 07:32
@dante01yoon dante01yoon requested a review from viva-jinyi as a code owner March 29, 2026 07:32
@dosubot dosubot bot added the size:XL This PR changes 500-999 lines, ignoring generated files. label Mar 29, 2026
@dosubot dosubot bot added size:L This PR changes 100-499 lines, ignoring generated files. and removed size:XL This PR changes 500-999 lines, ignoring generated files. labels Mar 29, 2026
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@src/components/common/SearchFilterChip.test.ts`:
- Around line 31-35: The test currently asserts Tailwind utility classes
(expect(badge.className).toContain('bg-green-500')) which is brittle; update the
tests that use renderChip (the "applies semantic badge class for input type"
test and the others flagged) to assert semantic behavior instead — e.g., check
the badge element exists, its text content/accessible name is 'I' and that it
has the semantic prop/class passed in (badgeClass like 'i-badge') or use
toHaveAttribute/toHaveClass with only non-utility class names, rather than
checking for Tailwind utility classes; locate the checks in the tests
referencing renderChip and replace utility-class assertions with these semantic
assertions.

In `@src/components/sidebar/tabs/modelLibrary/DownloadItem.vue`:
- Around line 6-9: The template currently treats both 'cancelled' and 'error'
statuses the same and always renders the cancelled label; update the conditional
rendering around the Tag (where download.status is checked) to use a
status-specific label: render t('electronFileDownload.cancelled') when
download.status === 'cancelled' and render t('electronFileDownload.error') (or
the appropriate error translation key) when download.status === 'error', keeping
the same Tag component and styling logic so users see the correct label for each
status.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

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

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 08323b0a-c618-476f-afd3-ea126cde4bed

📥 Commits

Reviewing files that changed from the base of the PR and between af0f7cb and f5a669f.

📒 Files selected for processing (7)
  • browser_tests/fixtures/components/ComfyNodeSearchBox.ts
  • browser_tests/tests/nodeSearchBox.spec.ts
  • src/components/common/SearchFilterChip.test.ts
  • src/components/common/SearchFilterChip.vue
  • src/components/searchbox/NodeSearchItem.vue
  • src/components/sidebar/tabs/modelLibrary/DownloadItem.test.ts
  • src/components/sidebar/tabs/modelLibrary/DownloadItem.vue

Comment on lines +31 to +35
it('applies semantic badge class for input type', () => {
renderChip({ text: 'CLIP', badge: 'I', badgeClass: 'i-badge' })
const badge = screen.getByText('I')
expect(badge.className).toContain('bg-green-500')
})
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Avoid asserting Tailwind utility classes in component tests.

These assertions couple tests to implementation styling (className) instead of user-visible behavior, which makes them brittle during visual refactors.

As per coding guidelines: "**/*.{test,spec}.ts: Do not write tests dependent on non-behavioral features like utility classes or styles."

Also applies to: 37-41, 52-60

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@src/components/common/SearchFilterChip.test.ts` around lines 31 - 35, The
test currently asserts Tailwind utility classes
(expect(badge.className).toContain('bg-green-500')) which is brittle; update the
tests that use renderChip (the "applies semantic badge class for input type"
test and the others flagged) to assert semantic behavior instead — e.g., check
the badge element exists, its text content/accessible name is 'I' and that it
has the semantic prop/class passed in (badgeClass like 'i-badge') or use
toHaveAttribute/toHaveClass with only non-utility class names, rather than
checking for Tailwind utility classes; locate the checks in the tests
referencing renderChip and replace utility-class assertions with these semantic
assertions.

Comment on lines 6 to +9
<div v-if="['cancelled', 'error'].includes(download.status ?? '')">
<Chip
class="mt-2 h-6 bg-red-700 text-sm font-light"
<Tag
:label="t('electronFileDownload.cancelled')"
class="mt-2 bg-red-700 text-sm font-light"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Use a status-specific label for error state.

Line 6 includes error, but Line 8 always renders the cancelled label. That can mislead users when a download failed for a non-cancel reason.

💡 Proposed fix
-      <Tag
-        :label="t('electronFileDownload.cancelled')"
+      <Tag
+        :label="
+          t(
+            download.status === 'error'
+              ? 'electronFileDownload.error'
+              : 'electronFileDownload.cancelled'
+          )
+        "
         class="mt-2 bg-red-700 text-sm font-light"
         removable
         `@remove`="handleRemoveDownload"
       />
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@src/components/sidebar/tabs/modelLibrary/DownloadItem.vue` around lines 6 -
9, The template currently treats both 'cancelled' and 'error' statuses the same
and always renders the cancelled label; update the conditional rendering around
the Tag (where download.status is checked) to use a status-specific label:
render t('electronFileDownload.cancelled') when download.status === 'cancelled'
and render t('electronFileDownload.error') (or the appropriate error translation
key) when download.status === 'error', keeping the same Tag component and
styling logic so users see the correct label for each status.

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

Labels

size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants