Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(): render tabs eagerly #1474

Merged
merged 1 commit into from
Jan 10, 2025
Merged

fix(): render tabs eagerly #1474

merged 1 commit into from
Jan 10, 2025

Conversation

weareoutman
Copy link
Member

@weareoutman weareoutman commented Jan 10, 2025

依赖检查

组件之间的依赖声明,是微服务组件架构下的重要信息,请确保其正确性。

请勾选以下两组选项其中之一:

  • 本次 MR 没有使用上游组件(例如框架、后台组件等)的较新版本提供的特性。

或者:

  • 本次 MR 使用了上游组件(例如框架、后台组件等)的较新版本提供的特性。
  • 在对应的文件中更新了该上游组件的依赖版本(或确认了当前声明的依赖版本已包含本次 MR 使用的新特性)。

提交信息检查

Git 提交信息将决定包的版本发布及自动生成的 CHANGELOG,请检查工作内容与提交信息是否相符,并在以下每组选项中都依次确认。

破坏性变更是针对于下游使用者而言,可以通过本次改动对下游使用者的影响来识别变更类型:

  • 下游使用者不做任何改动,仍可以正常工作时,那么它属于普通变更。
  • 反之,下游使用者不做改动就无法正常工作时,那么它属于破坏性变更。

例如,构件修改了一个属性名,小产品 Storyboard 中需要使用新属性名才能工作,那么它就是破坏性变更。
又例如,构件还没有任何下游使用者,那么它的任何变更都是普通变更。

破坏性变更:

  • ⚠️ 本次 MR 包含破坏性变更的提交,请继续确认以下所有选项:
  • 没有更好的兼容方案,必须做破坏性变更。
  • 使用了 feat 作为提交类型。
  • 标注了 BREAKING CHANGE: 你的变更说明
  • 同时更新了本仓库中所有下游使用者的调用。
  • 同时更新了本仓库中所有下游使用者对该子包的依赖为即将发布的 major 版本。
  • 同时为其它仓库的 Migrating 做好了准备,例如文档或批量改动的方法。
  • 手动验证过破坏性变更在 Migrate 后可以正常工作。
  • 破坏性变更所在的提交没有意外携带其它子包的改动。

新特性:

  • 本次 MR 包含新特性的提交,且该提交不带有破坏性变更,并使用了 feat 作为提交类型。
  • 给新特性添加了单元测试。
  • 手动验证过新特性可以正常工作。

问题修复:

  • 本次 MR 包含问题修复的提交,且该提交不带有新特性或破坏性变更,并使用了 fix 作为提交类型。
  • 给问题修复添加了单元测试。
  • 手动验证过问题修复得到解决。

杂项工作:

即所有对下游使用者无任何影响、且没有必要显示在 CHANGELOG 中的改动,例如修改注释、测试用例、开发文档等:

  • 本次 MR 包含杂项工作的提交,且该提交不带有问题修复、新特性或破坏性变更,并使用了 chore, docs, test 等作为提交类型。

Summary by CodeRabbit

  • 性能优化
    • 优化了选项卡组件的渲染行为,通过使用 useLayoutEffect 确保同步更新 DOM。
    • 改进了选项卡初始化和激活逻辑的处理方式。

Copy link

coderabbitai bot commented Jan 10, 2025

概述

浏览

bricks/containers/src/tab/tab-group/index.tsx 文件中,TabGroup 组件的实现发生了变化。主要修改涉及将 useEffect 替换为 useLayoutEffect,以更同步地处理选项卡的初始化和活动选项卡的设置。这一变更旨在改善选项卡组件的渲染行为,确保在 DOM 更新时更精确地控制效果执行时机。

变更

文件路径 变更摘要
bricks/containers/src/tab/tab-group/index.tsx - 将 useEffect 替换为 useLayoutEffect
- 移动 initSetTab 函数到 useLayoutEffect 内部
- 简化 handleSetActive 函数
- 调整 useLayoutEffect 的依赖项为 [onTabSelect]

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (1)
bricks/containers/src/tab/tab-group/index.tsx (1)

Line range hint 138-168: 优化渲染时序和事件处理

使用 useLayoutEffect 替代 useEffect 是一个很好的改进,可以确保 DOM 更新的同步性。不过有以下几点建议:

  1. 类型转换可能不安全,建议添加类型检查
  2. 函数定义可以提取到 hook 外部以优化性能

建议按如下方式重构代码:

+ const handleSetActive = (e: MouseEvent) => {
+   const target = e.target;
+   if (!(target instanceof HTMLElement)) return;
+   const panel = (target as TabItem).panel;
+   if (panel) {
+     setActiveItem(panel);
+     onTabSelect?.(panel);
+   }
+ };

+ const initSetTab = (navSlot: HTMLSlotElement) => {
+   const navSlotChildren = navSlot.assignedElements()[0]
+     ?.childNodes as unknown as TabItem[];
+   if (!Array.isArray(navSlotChildren)) return;
+   navSlotChildren?.length > 0 &&
+     setTabs(() => {
+       const tabs: string[] = [];
+       navSlotChildren.forEach((item) => tabs.push(item.panel));
+       return tabs;
+     });
+ };

  useLayoutEffect(() => {
    const navSlot = navSlotRef.current;
-   initSetTab();
+   initSetTab(navSlot);

    navSlot.addEventListener("click", handleSetActive);
-   navSlot.addEventListener("slotchange", initSetTab);
+   navSlot.addEventListener("slotchange", () => initSetTab(navSlot));
    return () => {
      navSlot.removeEventListener("click", handleSetActive);
-     navSlot.removeEventListener("slotchange", initSetTab);
+     navSlot.removeEventListener("slotchange", () => initSetTab(navSlot));
    };
  }, [onTabSelect]);
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between b7c834e and ae5c9f7.

📒 Files selected for processing (1)
  • bricks/containers/src/tab/tab-group/index.tsx (3 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: Build bricks (20.x)
  • GitHub Check: Analyze (javascript-typescript)

Copy link

codecov bot commented Jan 10, 2025

Codecov Report

Attention: Patch coverage is 92.85714% with 1 line in your changes missing coverage. Please review.

Project coverage is 85.51%. Comparing base (b7c834e) to head (ae5c9f7).
Report is 2 commits behind head on master.

Files with missing lines Patch % Lines
bricks/containers/src/tab/tab-group/index.tsx 92.85% 0 Missing and 1 partial ⚠️
Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##           master    #1474   +/-   ##
=======================================
  Coverage   85.51%   85.51%           
=======================================
  Files         526      526           
  Lines       15762    15762           
  Branches     2381     2381           
=======================================
  Hits        13479    13479           
  Misses       1829     1829           
  Partials      454      454           
Files with missing lines Coverage Δ
bricks/containers/src/tab/tab-group/index.tsx 97.95% <92.85%> (ø)

Copy link

@github-actions github-actions bot temporarily deployed to pull request January 10, 2025 10:43 Inactive
@qiaofengxi qiaofengxi merged commit 2b8d600 into master Jan 10, 2025
9 checks passed
@qiaofengxi qiaofengxi deleted the steve/sync-tab branch January 10, 2025 10:44
Copy link

📐🤏 Size check result (b7c834e...5ec9acc):

See full diff

Load all bricks together

Name Prev Now Diff
All bricks 4,532.04 KB 4,532.25 KB 🔼 +0.21 KB

Critical changes: None.

See full changes
Name Prev Now Diff
<core> 311.41 KB 311.43 KB
<react> 53.61 KB 53.61 KB 🟰
advanced 518.17 KB 518.17 KB 🟰
ai 288.12 KB 288.16 KB
api-market 10.61 KB 10.61 KB 🟰
basic 183.62 KB 183.62 KB 🟰
containers 96.74 KB 96.74 KB 🟰
data-view 639.99 KB 640.03 KB
diagram 177.55 KB 177.55 KB 🟰
form 329.86 KB 329.88 KB
form-platform 12.95 KB 12.95 KB 🟰
icons 15.26 KB 15.26 KB 🟰
illustrations 17.55 KB 17.55 KB 🟰
inject 56.51 KB 56.51 KB 🟰
markdown 248.68 KB 248.68 KB 🟰
mini-chart 10.67 KB 10.67 KB 🟰
nav 120.97 KB 120.97 KB 🟰
presentational 134.9 KB 134.9 KB 🟰
recent-history 32.7 KB 32.7 KB 🟰
shoelace 325.88 KB 325.88 KB 🟰
visual-builder 418.66 KB 418.74 KB
vs 839.04 KB 839.06 KB

Load bricks by each package

Critical changes: None.

See full changes
Name Prev Now Diff
advanced 751.62 KB 751.62 KB 🟰
ai 501.75 KB 501.74 KB
api-market 208.36 KB 208.36 KB 🟰
basic 339.76 KB 339.76 KB 🟰
containers 235.75 KB 235.75 KB 🟰
data-view 736.7 KB 736.62 KB
diagram 248.62 KB 248.59 KB
form 501.05 KB 501.07 KB
form-platform 178.25 KB 178.25 KB 🟰
icons 72.97 KB 72.97 KB 🟰
illustrations 91.85 KB 91.85 KB 🟰
inject 56.51 KB 56.51 KB 🟰
markdown 338.21 KB 338.18 KB
mini-chart 76.35 KB 76.35 KB 🟰
nav 397.75 KB 397.75 KB 🟰
presentational 347.03 KB 347.03 KB 🟰
recent-history 170.26 KB 170.26 KB 🟰
shoelace 325.88 KB 325.88 KB 🟰
visual-builder 1,512 KB 1,512.06 KB
vs 1,015.18 KB 1,015.17 KB
widget-editors 0 KB 0 KB 🟰

Load by each brick

Critical changes: None.

See full changes
Name Prev Now Diff
advanced.capture-snapshot 52.76 KB 52.76 KB 🟰
advanced.general-cascader 217.11 KB 217.15 KB
advanced.general-table 332.32 KB 332.31 KB
advanced.pdf-viewer 199.54 KB 199.54 KB 🟰
ai.chat-agent 68.13 KB 68.13 KB 🟰
ai.chat-view 496.94 KB 496.96 KB
api-market.apis-directory-tree 208.36 KB 208.36 KB 🟰
basic.active-element-blur 9.09 KB 9.09 KB 🟰
basic.change-language 9.07 KB 9.07 KB 🟰
basic.copy-to-clipboard 9.24 KB 9.24 KB 🟰
basic.dropdown-button 155.36 KB 155.36 KB 🟰
basic.general-button 129.04 KB 129.04 KB 🟰
basic.general-image 89.18 KB 89.18 KB 🟰
basic.general-link 123.73 KB 123.73 KB 🟰
basic.general-menu 69.37 KB 69.37 KB 🟰
basic.general-menu-item 84.06 KB 84.06 KB 🟰
basic.general-popover 103.22 KB 103.22 KB 🟰
basic.general-tag 86.13 KB 86.13 KB 🟰
basic.general-tag-list 90.51 KB 90.51 KB 🟰
basic.general-text 162.43 KB 162.43 KB 🟰
basic.get-language 9.07 KB 9.07 KB 🟰
basic.home-redirect 14.58 KB 14.58 KB 🟰
basic.http-proxy-request 9.15 KB 9.15 KB 🟰
basic.http-request 9.07 KB 9.07 KB 🟰
basic.lock-body-scroll 10.82 KB 10.82 KB 🟰
basic.set-theme-by-apps 9.08 KB 9.08 KB 🟰
basic.set-timeout 9.08 KB 9.08 KB 🟰
basic.show-dialog 181.75 KB 181.75 KB 🟰
basic.show-notification 149.67 KB 149.67 KB 🟰
basic.show-watermark 10.82 KB 10.82 KB 🟰
basic.v3-widget-mate 9.06 KB 9.06 KB 🟰
containers.easy-view 67.41 KB 67.41 KB 🟰
containers.flex-layout 67.15 KB 67.15 KB 🟰
containers.general-card 140.97 KB 140.97 KB 🟰
containers.general-category 67.78 KB 67.77 KB
containers.general-drawer 94.21 KB 94.21 KB 🟰
containers.general-modal 142.98 KB 142.97 KB
containers.grid-layout 68.24 KB 68.24 KB 🟰
containers.micro-view 79.18 KB 79.18 KB 🟰
containers.search-bar 67.27 KB 67.27 KB 🟰
containers.tab-group 72.43 KB 72.42 KB
containers.tab-item 99.39 KB 99.39 KB 🟰
containers.tab-list 99.39 KB 99.39 KB 🟰
data-view.app-wall-card-item 70.36 KB 70.36 KB 🟰
data-view.app-wall-relation-line 70.05 KB 70.05 KB 🟰
data-view.app-wall-system-card 84.57 KB 84.57 KB 🟰
data-view.basic-index-group 69.64 KB 69.64 KB 🟰
data-view.battery-chart 70.37 KB 70.37 KB 🟰
data-view.brick-notification 83.75 KB 83.75 KB 🟰
data-view.bubbles-indicator 108.91 KB 108.91 KB 🟰
data-view.cabinet-app-layer 70.04 KB 70.04 KB 🟰
data-view.cabinet-button 69.65 KB 69.65 KB 🟰
data-view.cabinet-container 79.92 KB 79.92 KB 🟰
data-view.cabinet-graph 94.09 KB 94.09 KB 🟰
data-view.cabinet-node 70.45 KB 70.45 KB 🟰
data-view.cabinet-thumbnail 83.74 KB 83.74 KB 🟰
data-view.china-map 96 KB 96.03 KB
data-view.china-map-chart 376.61 KB 376.61 KB 🟰
data-view.complex-search 96.28 KB 96.28 KB 🟰
data-view.crystal-ball-indicator 103.29 KB 103.29 KB 🟰
data-view.data-display-flipper 69.59 KB 69.59 KB 🟰
data-view.data-display-flipper-fifth 69.46 KB 69.46 KB 🟰
data-view.data-display-flipper-sixth 69.31 KB 69.31 KB 🟰
data-view.dropdown-menu 85.89 KB 85.89 KB 🟰
data-view.gauge-chart 70.51 KB 70.51 KB 🟰
data-view.gear-background 115.62 KB 115.62 KB 🟰
data-view.globe-with-gear-indicator 154.15 KB 154.15 KB 🟰
data-view.globe-with-halo-indicator 104.29 KB 104.29 KB 🟰
data-view.globe-with-orbit-indicator 104.12 KB 104.12 KB 🟰
data-view.graph-layout-grid 86.82 KB 86.82 KB 🟰
data-view.graph-node 69.51 KB 69.51 KB 🟰
data-view.graph-text 77.98 KB 77.98 KB 🟰
data-view.grid-background 104.85 KB 104.85 KB 🟰
data-view.hi-tech-button 70.28 KB 70.28 KB 🟰
data-view.indicator-card 69.75 KB 69.75 KB 🟰
data-view.lights-component-title 69.19 KB 69.19 KB 🟰
data-view.loading-panel 73.56 KB 73.56 KB 🟰
data-view.modern-style-component-title 70.25 KB 70.25 KB 🟰
data-view.modern-style-page-title 70.29 KB 70.29 KB 🟰
data-view.modern-style-treemap 80.84 KB 80.84 KB 🟰
data-view.particle-animation 70.18 KB 70.18 KB 🟰
data-view.progress-bar-list 72.35 KB 72.35 KB 🟰
data-view.radar-chart 71.22 KB 71.22 KB 🟰
data-view.simple-card-item 69.87 KB 69.87 KB 🟰
data-view.tabs-drawer 85.75 KB 85.71 KB
data-view.tabs-page-title 72.41 KB 72.41 KB 🟰
data-view.tech-mesh-base-view 68.76 KB 68.76 KB 🟰
data-view.title-text 69.94 KB 69.94 KB 🟰
data-view.top-title-bar 81.12 KB 81.12 KB 🟰
diagram.editable-label 68.01 KB 68.01 KB 🟰
diagram.experimental-node 67.46 KB 67.46 KB 🟰
eo-actions 142.67 KB 142.67 KB 🟰
eo-alert 88.17 KB 88.17 KB 🟰
eo-antd-icon 71.79 KB 71.79 KB 🟰
eo-app-bar-wrapper 68.62 KB 68.62 KB 🟰
eo-auto-complete 102.64 KB 102.64 KB 🟰
eo-avatar 106.71 KB 106.71 KB 🟰
eo-avatar-group 105.27 KB 105.27 KB 🟰
eo-banner 87.24 KB 87.24 KB 🟰
eo-breadcrumb 127.99 KB 127.99 KB 🟰
eo-breadcrumb-item 127.55 KB 127.55 KB 🟰
eo-broadcast-channel 69.77 KB 69.77 KB 🟰
eo-button 129.04 KB 129.04 KB 🟰
eo-card 140.97 KB 140.97 KB 🟰
eo-card-item 168.41 KB 168.41 KB 🟰
eo-carousel-text 75.83 KB 75.83 KB 🟰
eo-cascader 217.11 KB 217.11 KB 🟰
eo-category 67.78 KB 67.77 KB
eo-checkbox 106.88 KB 106.88 KB 🟰
eo-code-display 233.83 KB 233.83 KB 🟰
eo-color-picker 241.26 KB 241.26 KB 🟰
eo-content-layout 66.71 KB 66.71 KB 🟰
eo-context-menu 149.19 KB 149.19 KB 🟰
eo-counter-badge 84.68 KB 84.68 KB 🟰
eo-current-time 86.84 KB 86.84 KB 🟰
eo-date-picker 234.57 KB 234.55 KB
eo-descriptions 165.1 KB 165.1 KB 🟰
eo-diagram 121.69 KB 121.69 KB 🟰
eo-directory 133.06 KB 133.06 KB 🟰
eo-directory-tree 122.11 KB 122.11 KB 🟰
eo-directory-tree-internal-node 83.49 KB 83.5 KB
eo-directory-tree-leaf 82.8 KB 82.8 KB 🟰
eo-display-canvas 216.09 KB 216.13 KB
eo-divider 73.64 KB 73.64 KB 🟰
eo-draw-canvas 223.75 KB 223.75 KB 🟰
eo-drawer 94.22 KB 94.21 KB
eo-dropdown-actions 146.37 KB 146.37 KB 🟰
eo-dropdown-button 155.36 KB 155.36 KB 🟰
eo-dropdown-select 140.51 KB 140.51 KB 🟰
eo-dynamic-form-item 166.64 KB 166.64 KB 🟰
eo-easy-view 67.41 KB 67.41 KB 🟰
eo-easyops-avatar 110.83 KB 110.83 KB 🟰
eo-easyops-icon 71.79 KB 71.79 KB 🟰
eo-event-agent 14.11 KB 14.11 KB 🟰
eo-fa-icon 71.79 KB 71.79 KB 🟰
eo-flex-layout 67.15 KB 67.15 KB 🟰
eo-form 69.63 KB 69.63 KB 🟰
eo-form-item 75.4 KB 75.4 KB 🟰
eo-formatter-number 69.82 KB 69.82 KB 🟰
eo-frame-breadcrumb 144.96 KB 144.96 KB 🟰
eo-grid-layout 68.24 KB 68.24 KB 🟰
eo-humanize-time 140.41 KB 140.41 KB 🟰
eo-icon 71.79 KB 71.79 KB 🟰
eo-icon-select 197.16 KB 197.16 KB 🟰
eo-iframe 69.81 KB 69.81 KB 🟰
eo-illustration-message 87.65 KB 87.65 KB 🟰
eo-image 89.18 KB 89.18 KB 🟰
eo-img-icon 71.79 KB 71.79 KB 🟰
eo-info-card-item 138.14 KB 138.14 KB 🟰
eo-input 96.63 KB 96.63 KB 🟰
eo-launchpad-button 162.28 KB 162.28 KB 🟰
eo-launchpad-button-v2 217.29 KB 217.29 KB 🟰
eo-launchpad-quick-access 203.9 KB 203.9 KB 🟰
eo-launchpad-recent-visits 202.72 KB 202.72 KB 🟰
eo-link 123.73 KB 123.73 KB 🟰
eo-loading-container 83.88 KB 83.88 KB 🟰
eo-loading-step 101.61 KB 101.61 KB 🟰
eo-main-view 87.24 KB 87.24 KB 🟰
eo-markdown-display 140.79 KB 140.79 KB 🟰
eo-markdown-editor 300.27 KB 300.28 KB
eo-menu 69.37 KB 69.37 KB 🟰
eo-menu-group 69.15 KB 69.15 KB 🟰
eo-menu-item 84.06 KB 84.06 KB 🟰
eo-menu-item-sub-menu 84.52 KB 84.52 KB 🟰
eo-message-listener 69.55 KB 69.55 KB 🟰
eo-micro-view 79.18 KB 79.18 KB 🟰
eo-mini-actions 147.26 KB 147.26 KB 🟰
eo-mini-line-chart 76.35 KB 76.35 KB 🟰
eo-modal 142.98 KB 142.97 KB
eo-narrow-view 75.46 KB 75.46 KB 🟰
eo-nav-menu 193.87 KB 193.87 KB 🟰
eo-next-table 383.48 KB 383.44 KB
eo-page-title 69.49 KB 69.49 KB 🟰
eo-page-view 75.46 KB 75.46 KB 🟰
eo-pagination 173.32 KB 173.32 KB 🟰
eo-popover 103.22 KB 103.22 KB 🟰
eo-popup 97.35 KB 97.35 KB 🟰
eo-radio 98.63 KB 98.63 KB 🟰
eo-resizable-box 69.13 KB 69.13 KB 🟰
eo-search 100.67 KB 100.68 KB
eo-search-bar 67.27 KB 67.27 KB 🟰
eo-search-launchpad 206.57 KB 206.57 KB 🟰
eo-select 146.66 KB 146.66 KB 🟰
eo-sidebar 168.93 KB 168.93 KB 🟰
eo-sidebar-menu 149.95 KB 149.95 KB 🟰
eo-sidebar-menu-group 149.95 KB 149.95 KB 🟰
eo-sidebar-menu-item 134.81 KB 134.81 KB 🟰
eo-sidebar-menu-submenu 149.95 KB 149.95 KB 🟰
eo-sidebar-sub-menu 149.97 KB 149.97 KB 🟰
eo-spin 67.61 KB 67.61 KB 🟰
eo-statistics-card 88.04 KB 88.04 KB 🟰
eo-submit-buttons 151.16 KB 151.16 KB 🟰
eo-svg-icon 71.79 KB 71.79 KB 🟰
eo-switch 94.83 KB 94.83 KB 🟰
eo-tab-group 72.43 KB 72.42 KB
eo-tab-item 99.39 KB 99.39 KB 🟰
eo-tab-list 99.39 KB 99.39 KB 🟰
eo-table 332.27 KB 332.27 KB 🟰
eo-tag 86.13 KB 86.13 KB 🟰
eo-tag-list 90.51 KB 90.51 KB 🟰
eo-text 162.43 KB 162.43 KB 🟰
eo-text-tooltip 142.04 KB 142.04 KB 🟰
eo-textarea 84.48 KB 84.48 KB 🟰
eo-time-picker 216.67 KB 216.67 KB 🟰
eo-time-range-picker 233.78 KB 233.8 KB
eo-tooltip 118.74 KB 118.74 KB 🟰
eo-tree 141.57 KB 141.57 KB 🟰
eo-tree-select 229.83 KB 229.83 KB 🟰
eo-upload-file 163.17 KB 163.17 KB 🟰
eo-upload-image 171.78 KB 171.78 KB 🟰
eo-user-or-user-group-select 178.25 KB 178.25 KB 🟰
eo-workbench-layout 261.26 KB 261.26 KB 🟰
eo-workbench-layout-v2 262.74 KB 262.74 KB 🟰
form.dynamic-form-item 166.64 KB 166.64 KB 🟰
form.general-checkbox 106.88 KB 106.88 KB 🟰
form.general-form 69.63 KB 69.63 KB 🟰
form.general-form-item 75.4 KB 75.4 KB 🟰
form.general-input 96.63 KB 96.64 KB
form.general-radio 98.64 KB 98.63 KB
form.general-search 100.67 KB 100.67 KB 🟰
form.general-select 146.66 KB 146.66 KB 🟰
form.general-switch 94.83 KB 94.83 KB 🟰
form.general-textarea 84.48 KB 84.48 KB 🟰
form.icon-select 197.16 KB 197.16 KB 🟰
form.submit-buttons 151.16 KB 151.16 KB 🟰
form.upload-image 171.78 KB 171.78 KB 🟰
icons.antd-icon 71.79 KB 71.79 KB 🟰
icons.easyops-icon 71.79 KB 71.79 KB 🟰
icons.fa-icon 71.79 KB 71.79 KB 🟰
icons.general-icon 71.79 KB 71.79 KB 🟰
icons.get-antd-icons 6.83 KB 6.83 KB 🟰
icons.get-easyops-icons 6.83 KB 6.83 KB 🟰
icons.get-fa-icons 6.83 KB 6.83 KB 🟰
icons.get-libs 6.83 KB 6.83 KB 🟰
icons.search-icons 6.83 KB 6.83 KB 🟰
illustrations.error-message 87.65 KB 87.65 KB 🟰
illustrations.get-illustration 9.35 KB 9.35 KB 🟰
illustrations.get-illustrations-by-category 6.25 KB 6.25 KB 🟰
illustrations.loading-transition 66.87 KB 66.87 KB 🟰
illustrations.translate-illustration-config 9.35 KB 9.35 KB 🟰
inject.visual-builder-preview-agent 56.51 KB 56.51 KB 🟰
markdown.markdown-editor 300.24 KB 300.28 KB
nav.app-bar-wrapper 68.62 KB 68.62 KB 🟰
nav.easyops-navbar-alerts 137.26 KB 137.26 KB 🟰
nav.get-menu-config-options 8.38 KB 8.38 KB 🟰
nav.get-menu-config-tree 8.88 KB 8.88 KB 🟰
nav.launchpad-config 217.19 KB 217.19 KB 🟰
nav.nav-logo 133.84 KB 133.84 KB 🟰
nav.poll-announce 170.32 KB 170.32 KB 🟰
presentational.code-display 233.83 KB 233.83 KB 🟰
presentational.general-alert 88.17 KB 88.17 KB 🟰
presentational.general-descriptions 165.1 KB 165.1 KB 🟰
presentational.humanize-time 140.41 KB 140.41 KB 🟰
recent-history.clear-history 28.43 KB 28.43 KB 🟰
recent-history.get-all-history 28.43 KB 28.43 KB 🟰
recent-history.push-history 28.43 KB 28.43 KB 🟰
recent-history.recent-visit 169.06 KB 169.06 KB 🟰
sl-alert 31.13 KB 31.13 KB 🟰
sl-animated-image 25.39 KB 25.39 KB 🟰
sl-animation 25.56 KB 25.56 KB 🟰
sl-avatar 25.87 KB 25.87 KB 🟰
sl-badge 22.43 KB 22.43 KB 🟰
sl-breadcrumb 27.92 KB 27.92 KB 🟰
sl-breadcrumb-item 27.92 KB 27.92 KB 🟰
sl-button 33.12 KB 33.12 KB 🟰
sl-button-group 21.68 KB 21.68 KB 🟰
sl-card 22.69 KB 22.69 KB 🟰
sl-carousel 31.94 KB 31.94 KB 🟰
sl-carousel-item 31.94 KB 31.94 KB 🟰
sl-checkbox 30.31 KB 30.31 KB 🟰
sl-color-picker 64.49 KB 64.49 KB 🟰
sl-details 28.11 KB 28.11 KB 🟰
sl-dialog 33.05 KB 33.05 KB 🟰
sl-divider 21.52 KB 21.52 KB 🟰
sl-drawer 34.13 KB 34.13 KB 🟰
sl-dropdown 36.17 KB 36.17 KB 🟰
sl-format-bytes 22.34 KB 22.34 KB 🟰
sl-format-date 22.39 KB 22.39 KB 🟰
sl-format-number 22.41 KB 22.41 KB 🟰
sl-icon 24.53 KB 24.53 KB 🟰
sl-icon-button 27.16 KB 27.16 KB 🟰
sl-image-comparer 27.81 KB 27.81 KB 🟰
sl-input 33.82 KB 33.82 KB 🟰
sl-menu 41.77 KB 41.77 KB 🟰
sl-menu-item 41.77 KB 41.77 KB 🟰
sl-menu-label 21.25 KB 21.25 KB 🟰
sl-mutation-observer 21.74 KB 21.74 KB 🟰
sl-option 27.39 KB 27.39 KB 🟰
sl-popup 31.9 KB 31.9 KB 🟰
sl-progress-bar 24 KB 24 KB 🟰
sl-progress-ring 23.09 KB 23.09 KB 🟰
sl-qr-code 27 KB 27 KB 🟰
sl-radio 26.28 KB 26.28 KB 🟰
sl-radio-button 26.04 KB 26.04 KB 🟰
sl-radio-group 26.38 KB 26.38 KB 🟰
sl-range 29.1 KB 29.1 KB 🟰
sl-rating 28.45 KB 28.45 KB 🟰
sl-relative-time 22.61 KB 22.61 KB 🟰
sl-resize-observer 21.63 KB 21.63 KB 🟰
sl-select 48.55 KB 48.55 KB 🟰
sl-skeleton 22.24 KB 22.24 KB 🟰
sl-spinner 22.69 KB 22.69 KB 🟰
sl-split-panel 24.33 KB 24.33 KB 🟰
sl-switch 27.21 KB 27.21 KB 🟰
sl-tab 34.2 KB 34.2 KB 🟰
sl-tab-group 34.2 KB 34.2 KB 🟰
sl-tab-panel 34.2 KB 34.2 KB 🟰
sl-tag 29.3 KB 29.3 KB 🟰
sl-textarea 27.91 KB 27.91 KB 🟰
sl-tooltip 34.27 KB 34.27 KB 🟰
sl-tree 37.27 KB 37.27 KB 🟰
sl-tree-item 37.27 KB 37.27 KB 🟰
sl-visually-hidden 21.22 KB 21.22 KB 🟰
visual-builder.batch-update-raw-data-generated-view 7.82 KB 7.82 KB 🟰
visual-builder.chat-conversation 184.83 KB 184.83 KB 🟰
visual-builder.chat-preview 69.88 KB 69.88 KB 🟰
visual-builder.check-editor-by-name 7.44 KB 7.44 KB 🟰
visual-builder.contract-select 123.4 KB 123.4 KB 🟰
visual-builder.generate-snippets-context-menu 147.46 KB 147.46 KB 🟰
visual-builder.get-data-deps 7.45 KB 7.45 KB 🟰
visual-builder.get-dependency-tree 7.82 KB 7.82 KB 🟰
visual-builder.get-raw-data-system-prompts 11.8 KB 11.8 KB 🟰
visual-builder.inject-chat-preview-agent 8.4 KB 8.4 KB 🟰
visual-builder.page-arch-node 131.82 KB 131.82 KB 🟰
visual-builder.parse-path 9.07 KB 9.07 KB 🟰
visual-builder.pre-generated-container 70.24 KB 70.24 KB 🟰
visual-builder.pre-generated-preview 69.86 KB 69.86 KB 🟰
visual-builder.pre-generated-table-view 67.47 KB 67.47 KB 🟰
visual-builder.property-editor 1,318.91 KB 1,318.88 KB
visual-builder.raw-data-preview 72.77 KB 72.77 KB 🟰
visual-builder.workbench-action 135.57 KB 135.57 KB 🟰
visual-builder.workbench-action-list 140.99 KB 140.99 KB 🟰
visual-builder.workbench-history-action 169.17 KB 169.17 KB 🟰
visual-builder.workbench-pane 83.6 KB 83.6 KB 🟰
visual-builder.workbench-sidebar 68.35 KB 68.35 KB 🟰
visual-builder.workbench-tree 141.04 KB 141.04 KB 🟰
vs.code-editor 1,015.17 KB 1,015.19 KB

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

Successfully merging this pull request may close these issues.

2 participants