Skip to content

Conversation

@DrJKL
Copy link
Contributor

@DrJKL DrJKL commented Nov 25, 2025

Summary

See this page.

┆Issue is synchronized with this Notion page by Unito

@dosubot dosubot bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Nov 25, 2025
@coderabbitai
Copy link

coderabbitai bot commented Nov 25, 2025

📝 Walkthrough

Walkthrough

Removed the generateImportMapPlugin feature: plugin implementation, its export and import/usage in Vite config, the fast-glob dependency, and a comment referencing the plugin.

Changes

Cohort / File(s) Summary
Plugin implementation & export
build/plugins/generateImportMapPlugin.ts, build/plugins/index.ts
Deleted the Vite/Rollup plugin that generated and injected a browser import map for vendor chunks, and removed its re-export from the plugins index.
Vite build config
vite.config.mts
Removed import and conditional invocation of generateImportMapPlugin, eliminating the non-cloud/cloud import-map generation branch.
Dependencies
package.json
Removed the fast-glob dependency.
Comments
.storybook/main.ts
Removed a comment noting that generateImportMapPlugin was intentionally not included.

Sequence Diagram(s)

Old build flow with plugin:

sequenceDiagram
    autonumber
    participant Dev as Developer / Build
    participant Vite as Vite Config
    participant Plugin as generateImportMapPlugin
    participant Rollup as Rollup Build
    participant FS as File System / dist

    Dev->>Vite: run build
    Vite->>Plugin: configResolved() (register externals)
    Vite->>Rollup: start build
    Rollup->>Plugin: generateBundle() (collect vendor chunks, copy assets)
    Plugin->>FS: write assets to dist/assets/lib
    Plugin->>Rollup: provide import map entries
    Rollup->>Plugin: transformIndexHtml() (inject importmap)
    Plugin->>FS: write index.html with <script type="importmap">
Loading

New build flow without plugin:

sequenceDiagram
    autonumber
    participant Dev as Developer / Build
    participant Vite as Vite Config
    participant Rollup as Rollup Build
    participant FS as File System / dist

    Dev->>Vite: run build
    Vite->>Rollup: start build (no import-map plugin)
    Rollup->>FS: write build outputs
Loading

Possibly related issues

  • Follow-up on #5777 #5779 — Related: touches the same import/export surface and removal of generateImportMapPlugin usage in vite.config, so it could be linked to this PR.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch drjkl/importmap

📜 Recent review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 51d8371 and 1cf8f5d.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (5)
  • .storybook/main.ts (0 hunks)
  • build/plugins/generateImportMapPlugin.ts (0 hunks)
  • build/plugins/index.ts (0 hunks)
  • package.json (0 hunks)
  • vite.config.mts (1 hunks)
💤 Files with no reviewable changes (4)
  • package.json
  • build/plugins/index.ts
  • build/plugins/generateImportMapPlugin.ts
  • .storybook/main.ts
🧰 Additional context used
🧠 Learnings (3)
📓 Common learnings
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: AGENTS.md:0-0
Timestamp: 2025-11-24T19:48:23.077Z
Learning: Applies to **/*.{ts,tsx,js,vue} : Organize imports by sorting and grouping by plugin, and run `pnpm format` before committing
📚 Learning: 2025-11-24T19:48:23.077Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: AGENTS.md:0-0
Timestamp: 2025-11-24T19:48:23.077Z
Learning: Applies to **/*.{ts,tsx,js,vue} : Organize imports by sorting and grouping by plugin, and run `pnpm format` before committing

Applied to files:

  • vite.config.mts
📚 Learning: 2025-11-24T19:46:52.254Z
Learnt from: CR
Repo: Comfy-Org/ComfyUI_frontend PR: 0
File: .cursorrules:0-0
Timestamp: 2025-11-24T19:46:52.254Z
Learning: Use Vite for fast development and building

Applied to files:

  • vite.config.mts
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
  • GitHub Check: test
  • GitHub Check: lint-and-format
  • GitHub Check: setup
  • GitHub Check: collect
🔇 Additional comments (1)
vite.config.mts (1)

19-19: Import statement correctly removes generateImportMapPlugin with no orphaned references.

Verification confirms complete removal: generateImportMapPlugin has no remaining references in the codebase, the plugin file was successfully deleted from build/plugins/, the fast-glob dependency was removed from package.json, and comfyAPIPlugin remains properly imported (line 19) and used (line 236) in vite.config.mts.


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

@github-actions
Copy link

github-actions bot commented Nov 25, 2025

🎭 Playwright Test Results

⚠️ Tests passed with flaky tests

⏰ Completed at: 11/25/2025, 04:24:46 AM UTC

📈 Summary

  • Total Tests: 493
  • Passed: 478 ✅
  • Failed: 0
  • Flaky: 6 ⚠️
  • Skipped: 9 ⏭️

📊 Test Reports by Browser

  • chromium: View Report • ✅ 469 / ❌ 0 / ⚠️ 6 / ⏭️ 9
  • chromium-2x: View Report • ✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0
  • chromium-0.5x: View Report • ✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0
  • mobile-chrome: View Report • ✅ 6 / ❌ 0 / ⚠️ 0 / ⏭️ 0

🎉 Click on the links above to view detailed test results for each browser configuration.

@github-actions
Copy link

github-actions bot commented Nov 25, 2025

🎨 Storybook Build Status

Build completed successfully!

⏰ Completed at: 11/25/2025, 04:15:29 AM UTC

🔗 Links


🎉 Your Storybook is ready for review!

@github-actions
Copy link

github-actions bot commented Nov 25, 2025

Bundle Size Report

Summary

  • Raw size: 17 MB baseline 14.2 MB — 🔴 +2.81 MB
  • Gzip: 3.36 MB baseline 2.84 MB — 🔴 +525 kB
  • Brotli: 2.58 MB baseline 2.22 MB — 🔴 +354 kB
  • Bundles: 93 current • 92 baseline • 52 added / 51 removed

Category Glance
Vendor & Third-Party 🔴 +2.86 MB (8.56 MB) · Other 🟢 -26.5 kB (3.84 MB) · Panels & Settings 🟢 -8.98 kB (297 kB) · App Entry Points 🟢 -6.03 kB (3.18 MB) · Graph Workspace 🟢 -2.55 kB (940 kB) · UI Components 🟢 -2.19 kB (139 kB) · + 3 more

Per-category breakdown
App Entry Points — 3.18 MB (baseline 3.18 MB) • 🟢 -6.03 kB

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-_fV9vjdR.js (removed) 2.95 MB 🟢 -2.95 MB 🟢 -615 kB 🟢 -467 kB
assets/index-CrTazbIJ.js (new) 2.95 MB 🔴 +2.95 MB 🔴 +614 kB 🔴 +466 kB
assets/index-BHgx_C51.js (removed) 228 kB 🟢 -228 kB 🟢 -48.9 kB 🟢 -40.3 kB
assets/index-CeyoNidv.js (new) 227 kB 🔴 +227 kB 🔴 +48.6 kB 🔴 +40 kB
assets/index-C5ZWCgp8.js (new) 345 B 🔴 +345 B 🔴 +243 B 🔴 +232 B
assets/index-CeJCEJa-.js (removed) 345 B 🟢 -345 B 🟢 -244 B 🟢 -200 B

Status: 3 added / 3 removed

Graph Workspace — 940 kB (baseline 942 kB) • 🟢 -2.55 kB

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-Dk4RnPst.js (removed) 942 kB 🟢 -942 kB 🟢 -182 kB 🟢 -140 kB
assets/GraphView-B-MUqenv.js (new) 940 kB 🔴 +940 kB 🔴 +182 kB 🔴 +139 kB

Status: 1 added / 1 removed

Views & Navigation — 6.54 kB (baseline 7.97 kB) • 🟢 -1.43 kB

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/UserSelectView-BTI0VZvV.js (removed) 7.97 kB 🟢 -7.97 kB 🟢 -2.44 kB 🟢 -2.14 kB
assets/UserSelectView-L9pF1nWG.js (new) 6.54 kB 🔴 +6.54 kB 🔴 +2.14 kB 🔴 +1.91 kB

Status: 1 added / 1 removed

Panels & Settings — 297 kB (baseline 306 kB) • 🟢 -8.98 kB

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CreditsPanel-CPX01sfD.js (removed) 22.9 kB 🟢 -22.9 kB 🟢 -5.46 kB 🟢 -4.78 kB
assets/CreditsPanel-D-FgbNUv.js (new) 21.4 kB 🔴 +21.4 kB 🔴 +5.15 kB 🔴 +4.5 kB
assets/KeybindingPanel-D_4Rviyv.js (removed) 15.1 kB 🟢 -15.1 kB 🟢 -3.73 kB 🟢 -3.29 kB
assets/KeybindingPanel-kv7KreK1.js (new) 13.6 kB 🔴 +13.6 kB 🔴 +3.42 kB 🔴 +3.01 kB
assets/ExtensionPanel-D248mhZ1.js (removed) 11.9 kB 🟢 -11.9 kB 🟢 -2.79 kB 🟢 -2.45 kB
assets/ExtensionPanel-DYmJlYkX.js (new) 10.4 kB 🔴 +10.4 kB 🔴 +2.48 kB 🔴 +2.17 kB
assets/AboutPanel-CcgPSU4L.js (removed) 10.1 kB 🟢 -10.1 kB 🟢 -2.62 kB 🟢 -2.31 kB
assets/AboutPanel-BnAQJayz.js (new) 8.61 kB 🔴 +8.61 kB 🔴 +2.31 kB 🔴 +2.06 kB
assets/ServerConfigPanel-D_MibSGP.js (removed) 8.02 kB 🟢 -8.02 kB 🟢 -2.12 kB 🟢 -1.87 kB
assets/UserPanel-C_aL9JR3.js (removed) 7.74 kB 🟢 -7.74 kB 🟢 -2.02 kB 🟢 -1.77 kB
assets/ServerConfigPanel-D03NZRwG.js (new) 6.56 kB 🔴 +6.56 kB 🔴 +1.83 kB 🔴 +1.63 kB
assets/UserPanel-B1KILAyC.js (new) 6.23 kB 🔴 +6.23 kB 🔴 +1.72 kB 🔴 +1.51 kB
assets/settings-BXTtSH4O.js 33.3 kB 33.3 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-C9Pzn-NG.js 25.2 kB 25.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-CCy2fA_h.js 27.3 kB 27.3 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-CQpqEFfl.js 26.6 kB 26.6 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-DHcnxypw.js 21.7 kB 21.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-DhFTK9fY.js 25.1 kB 25.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-DlT4t_ui.js 25.9 kB 25.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-DRgSrIdD.js 24.2 kB 24.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/settings-tjkeqiZq.js 21.1 kB 21.1 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 6 added / 6 removed

UI Components — 139 kB (baseline 141 kB) • 🟢 -2.19 kB

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/Load3D.vue_vue_type_script_setup_true_lang-Ck6antZN.js (new) 53.9 kB 🔴 +53.9 kB 🔴 +8.52 kB 🔴 +7.32 kB
assets/Load3D.vue_vue_type_script_setup_true_lang-DH2kXWH_.js (removed) 53.9 kB 🟢 -53.9 kB 🟢 -8.43 kB 🟢 -7.24 kB
assets/WidgetSelect.vue_vue_type_script_setup_true_lang-CUHpx6ed.js (removed) 48 kB 🟢 -48 kB 🟢 -10.3 kB 🟢 -8.92 kB
assets/WidgetSelect.vue_vue_type_script_setup_true_lang-KsVPhw_D.js (new) 46.8 kB 🔴 +46.8 kB 🔴 +10.1 kB 🔴 +8.76 kB
assets/WidgetInputNumber.vue_vue_type_script_setup_true_lang-EFa9g0Jr.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.35 kB 🔴 +2.95 kB
assets/WidgetInputNumber.vue_vue_type_script_setup_true_lang-Bb6zR8t6.js (removed) 12.7 kB 🟢 -12.7 kB 🟢 -3.31 kB 🟢 -2.94 kB
assets/LazyImage.vue_vue_type_script_setup_true_lang-DNzEEbAp.js (new) 10.8 kB 🔴 +10.8 kB 🔴 +2.97 kB 🔴 +2.6 kB
assets/LazyImage.vue_vue_type_script_setup_true_lang-Wi-CcgaU.js (removed) 10.7 kB 🟢 -10.7 kB 🟢 -2.91 kB 🟢 -2.54 kB
assets/ComfyQueueButton-DaMr49mM.js (removed) 9.22 kB 🟢 -9.22 kB 🟢 -2.5 kB 🟢 -2.2 kB
assets/ComfyQueueButton-DSqnu89L.js (new) 7.73 kB 🔴 +7.73 kB 🔴 +2.2 kB 🔴 +1.95 kB
assets/WidgetLayoutField.vue_vue_type_script_setup_true_lang-CHRwc31X.js (new) 2.16 kB 🔴 +2.16 kB 🔴 +827 B 🔴 +717 B
assets/WidgetLayoutField.vue_vue_type_script_setup_true_lang-8vZknvID.js (removed) 2.15 kB 🟢 -2.15 kB 🟢 -802 B 🟢 -703 B
assets/WidgetButton-0Kc6B4DO.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +928 B 🔴 +816 B
assets/WidgetButton-B4tUAfgp.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -872 B 🟢 -769 B
assets/UserAvatar.vue_vue_type_script_setup_true_lang-B4qnwhJi.js (new) 1.34 kB 🔴 +1.34 kB 🔴 +688 B 🔴 +597 B
assets/UserAvatar.vue_vue_type_script_setup_true_lang-D2s8tnS2.js (removed) 1.26 kB 🟢 -1.26 kB 🟢 -637 B 🟢 -542 B
assets/MediaTitle.vue_vue_type_script_setup_true_lang-BuoUPDmL.js (new) 897 B 🔴 +897 B 🔴 +502 B 🔴 +433 B
assets/MediaTitle.vue_vue_type_script_setup_true_lang-Cc9BST1n.js (removed) 848 B 🟢 -848 B 🟢 -471 B 🟢 -413 B

Status: 9 added / 9 removed

Data & Services — 12.5 kB (baseline 12.5 kB) • 🔴 +33 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/keybindingService-CL2ektdE.js (new) 7.51 kB 🔴 +7.51 kB 🔴 +1.83 kB 🔴 +1.58 kB
assets/keybindingService-CwfmhFay.js (removed) 7.51 kB 🟢 -7.51 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/serverConfigStore-NS6ibDz2.js (new) 2.83 kB 🔴 +2.83 kB 🔴 +909 B 🔴 +794 B
assets/serverConfigStore-D2N-YjtJ.js (removed) 2.79 kB 🟢 -2.79 kB 🟢 -891 B 🟢 -774 B
assets/audioService-9HysKnsv.js (new) 2.2 kB 🔴 +2.2 kB 🔴 +961 B 🔴 +822 B
assets/audioService-B8O6rByI.js (removed) 2.2 kB 🟢 -2.2 kB 🟢 -963 B 🟢 -822 B

Status: 3 added / 3 removed

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

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/audioUtils-CKRgPqfy.js (removed) 1.41 kB 🟢 -1.41 kB 🟢 -650 B 🟢 -547 B
assets/audioUtils-Dl1NUg64.js (new) 1.41 kB 🔴 +1.41 kB 🔴 +650 B 🔴 +542 B
assets/mathUtil-CTARWQ-l.js 1.07 kB 1.07 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeFilterUtil-CXKCRJ-m.js 460 B 460 B ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 1 added / 1 removed

Vendor & Third-Party — 8.56 MB (baseline 5.7 MB) • 🔴 +2.86 MB

External libraries and shared vendor chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/vendor-other-BUi7FCLE.js (new) 3.98 MB 🔴 +3.98 MB 🔴 +843 kB 🔴 +673 kB
assets/vendor-other-OCBGbKU2.js (removed) 3.59 MB 🟢 -3.59 MB 🟢 -757 kB 🟢 -604 kB
assets/vendor-primevue-DTsA3ueY.js (new) 1.96 MB 🔴 +1.96 MB 🔴 +336 kB 🔴 +202 kB
assets/vendor-chart-Bc7F9itp.js (new) 452 kB 🔴 +452 kB 🔴 +99.1 kB 🔴 +81 kB
assets/vendor-tiptap-CaFtSsrn.js (new) 232 kB 🔴 +232 kB 🔴 +45.7 kB 🔴 +37.7 kB
assets/vendor-tiptap-CmuD0u4q.js (removed) 232 kB 🟢 -232 kB 🟢 -45.7 kB 🟢 -37.7 kB
assets/vendor-vue-xOQVyCMJ.js (new) 160 kB 🔴 +160 kB 🔴 +37.3 kB 🔴 +31.5 kB
assets/vendor-vue-DhKsTD0i.js (removed) 92.6 kB 🟢 -92.6 kB 🟢 -23.9 kB 🟢 -20.8 kB
assets/vendor-primevue-PESgPnbc.js (removed) 517 B 🟢 -517 B 🟢 -299 B 🟢 -264 B
assets/vendor-three-aR6ntw5X.js 1.37 MB 1.37 MB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/vendor-xterm-BZLod3g9.js 407 kB 407 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 5 added / 4 removed

Other — 3.84 MB (baseline 3.87 MB) • 🟢 -26.5 kB

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/WidgetRecordAudio-CJDE_OXz.js (removed) 21.9 kB 🟢 -21.9 kB 🟢 -5.53 kB 🟢 -4.89 kB
assets/WidgetRecordAudio-rk9QDkwa.js (new) 20.5 kB 🔴 +20.5 kB 🔴 +5.26 kB 🔴 +4.64 kB
assets/AudioPreviewPlayer-BYgJ76eO.js (removed) 14.9 kB 🟢 -14.9 kB 🟢 -3.69 kB 🟢 -3.3 kB
assets/AudioPreviewPlayer-Q_Md9yb5.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.4 kB 🔴 +3.05 kB
assets/WidgetGalleria-BN_SARgc.js (removed) 5.56 kB 🟢 -5.56 kB 🟢 -1.74 kB 🟢 -1.54 kB
assets/WidgetColorPicker-kZcW0qzz.js (removed) 4.87 kB 🟢 -4.87 kB 🟢 -1.69 kB 🟢 -1.48 kB
assets/WidgetMarkdown-K02bWu2B.js (removed) 4.63 kB 🟢 -4.63 kB 🟢 -1.61 kB 🟢 -1.4 kB
assets/WidgetAudioUI-CnGRnFFG.js (removed) 4.33 kB 🟢 -4.33 kB 🟢 -1.44 kB 🟢 -1.29 kB
assets/WidgetGalleria-BHaa8DSl.js (new) 4.1 kB 🔴 +4.1 kB 🔴 +1.44 kB 🔴 +1.3 kB
assets/WidgetTextarea-BvWypr28.js (removed) 4.03 kB 🟢 -4.03 kB 🟢 -1.34 kB 🟢 -1.18 kB
assets/WidgetInputText-vSxFS9mB.js (removed) 3.45 kB 🟢 -3.45 kB 🟢 -1.23 kB 🟢 -1.09 kB
assets/WidgetColorPicker-CLYt4HNB.js (new) 3.41 kB 🔴 +3.41 kB 🔴 +1.38 kB 🔴 +1.23 kB
assets/WidgetToggleSwitch-bTZXGlh1.js (removed) 3.23 kB 🟢 -3.23 kB 🟢 -1.14 kB 🟢 -1.02 kB
assets/WidgetMarkdown-DCA3rYQg.js (new) 3.16 kB 🔴 +3.16 kB 🔴 +1.31 kB 🔴 +1.15 kB
assets/MediaImageBottom-ejDoxCSl.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.05 kB 🟢 -915 B
assets/MediaAudioBottom-BDbYu9Q5.js (removed) 3 kB 🟢 -3 kB 🟢 -1.05 kB 🟢 -927 B
assets/Media3DTop-DxPklIIK.js (removed) 3 kB 🟢 -3 kB 🟢 -1.08 kB 🟢 -928 B
assets/MediaVideoBottom-DjB5qTcP.js (removed) 3 kB 🟢 -3 kB 🟢 -1.05 kB 🟢 -927 B
assets/Media3DBottom-KI9M9LRY.js (removed) 2.98 kB 🟢 -2.98 kB 🟢 -1.04 kB 🟢 -930 B
assets/WidgetAudioUI--EsqkcpB.js (new) 2.82 kB 🔴 +2.82 kB 🔴 +1.12 kB 🔴 +1.02 kB
assets/MediaVideoTop-P2MYHlgs.js (new) 2.76 kB 🔴 +2.76 kB 🔴 +1.05 kB 🔴 +902 B
assets/MediaVideoTop-BB0lT7C5.js (removed) 2.7 kB 🟢 -2.7 kB 🟢 -1.01 kB 🟢 -850 B
assets/WidgetTextarea-BwQUPYTk.js (new) 2.54 kB 🔴 +2.54 kB 🔴 +1.04 kB 🔴 +907 B
assets/WidgetChart-DaKVD7Py.js (new) 2.48 kB 🔴 +2.48 kB 🔴 +933 B 🔴 +815 B
assets/WidgetChart-rDmYEWg5.js (removed) 2.39 kB 🟢 -2.39 kB 🟢 -873 B 🟢 -758 B
assets/WidgetImageCompare-DE5-CeXh.js (new) 2.21 kB 🔴 +2.21 kB 🔴 +749 B 🔴 +659 B
assets/WidgetSelect-BY_XTrlo.js (removed) 2.17 kB 🟢 -2.17 kB 🟢 -674 B 🟢 -569 B
assets/WidgetImageCompare-Ds3K3ULR.js (removed) 2.15 kB 🟢 -2.15 kB 🟢 -706 B 🟢 -609 B
assets/WidgetInputNumber-SahJVm_K.js (removed) 2.12 kB 🟢 -2.12 kB 🟢 -664 B 🟢 -556 B
assets/WidgetInputText-CsG2gyjY.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +916 B 🔴 +852 B
assets/Load3D-DBX3zK0v.js (removed) 1.94 kB 🟢 -1.94 kB 🟢 -599 B 🟢 -499 B
assets/WidgetLegacy-BBO50Xkl.js (removed) 1.88 kB 🟢 -1.88 kB 🟢 -562 B 🟢 -508 B
assets/WidgetToggleSwitch-CpHzqeGw.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +833 B 🔴 +727 B
assets/MediaImageTop-DlKHfEAA.js (removed) 1.68 kB 🟢 -1.68 kB 🟢 -805 B 🟢 -687 B
assets/MediaImageTop-BTxsJ9KT.js (new) 1.68 kB 🔴 +1.68 kB 🔴 +813 B 🔴 +692 B
assets/MediaImageBottom-By1oBMyN.js (new) 1.57 kB 🔴 +1.57 kB 🔴 +741 B 🔴 +647 B
assets/MediaAudioBottom-C1iiuH1c.js (new) 1.52 kB 🔴 +1.52 kB 🔴 +738 B 🔴 +657 B
assets/MediaVideoBottom-BX_i92Es.js (new) 1.52 kB 🔴 +1.52 kB 🔴 +737 B 🔴 +657 B
assets/Media3DBottom-Bhnpm3Rs.js (new) 1.5 kB 🔴 +1.5 kB 🔴 +729 B 🔴 +652 B
assets/Media3DTop-s8mUqaQ5.js (new) 1.49 kB 🔴 +1.49 kB 🔴 +766 B 🔴 +653 B
assets/MediaAudioTop-ClVHGsSJ.js (new) 1.46 kB 🔴 +1.46 kB 🔴 +740 B 🔴 +618 B
assets/MediaAudioTop-RTI8pWy9.js (removed) 1.42 kB 🟢 -1.42 kB 🟢 -701 B 🟢 -580 B
assets/WidgetSelect-DTWjR09V.js (new) 655 B 🔴 +655 B 🔴 +343 B 🔴 +292 B
assets/WidgetInputNumber-BwB1pyKz.js (new) 595 B 🔴 +595 B 🔴 +329 B 🔴 +280 B
assets/Load3D-Dk3HXIR-.js (new) 424 B 🔴 +424 B 🔴 +267 B 🔴 +223 B
assets/WidgetLegacy-D2h-bvNj.js (new) 364 B 🔴 +364 B 🔴 +238 B 🔴 +194 B
assets/commands-_s-RvhJR.js 13.6 kB 13.6 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-BuUILW6P.js 13 kB 13 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-BV4R6fLx.js 14.9 kB 14.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CLwPdnT6.js 14.2 kB 14.2 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-CWMchBmd.js 15.9 kB 15.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DazTQhtc.js 12.9 kB 12.9 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DmWrOe93.js 13.7 kB 13.7 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-DwiH7Kr6.js 13.8 kB 13.8 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/commands-mS3LCNPn.js 14.5 kB 14.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-5lOBdqcC.js 84.5 kB 84.5 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-BOCuaVpE.js 73.4 kB 73.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-ClrEFGUz.js 72.4 kB 72.4 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-CyNU0iQX.js 99.3 kB 99.3 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-D7gwLxft.js 114 kB 114 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-DC8o4BCt.js 86.8 kB 86.8 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-DKiesCV4.js 94.3 kB 94.3 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-Hq2q-OtB.js 83.6 kB 83.6 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/main-USAlAlnj.js 82 kB 82 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-_Px5dSNW.js 306 kB 306 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-7z21KPoS.js 285 kB 285 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-BWKZzBPK.js 346 kB 346 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-CGbgH4Yl.js 320 kB 320 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-CjjjdWkV.js 313 kB 313 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-CVrNtxvj.js 288 kB 288 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-DLRSA0IK.js 309 kB 309 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-DQV2gnwA.js 372 kB 372 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/nodeDefs-ofqLG5vz.js 310 kB 310 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B
assets/widgetPropFilter-BIbGSUAt.js 1.28 kB 1.28 kB ⚪ 0 B ⚪ 0 B ⚪ 0 B

Status: 23 added / 23 removed

@DrJKL DrJKL requested a review from a team as a code owner November 25, 2025 04:14
@DrJKL DrJKL merged commit 1351690 into main Nov 25, 2025
29 checks passed
@DrJKL DrJKL deleted the drjkl/importmap branch November 25, 2025 04:39
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