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

feat(): rename illustrations.error-message to eo-illustration-message, and support status variants #1395

Merged
merged 1 commit into from
Nov 11, 2024

Conversation

weareoutman
Copy link
Member

@weareoutman weareoutman commented Nov 11, 2024

依赖检查

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

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

  • 本次 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

  • 新功能

    • 引入了新的 eo-illustration-message 组件,支持多种消息展示和配置。
    • 新增状态变体功能,支持成功、错误、警告和信息类型的消息展示。
  • 文档

    • 新增 eo-illustration-message 组件的使用文档,包含 YAML 格式的示例。
    • 移除 error-message 组件的文档。
  • 样式

    • 更新了样式文件,增加了针对不同状态的样式类(如 .success.error.warning.info)。
    • .title 类重命名为 .heading,以提高一致性。

Copy link

coderabbitai bot commented Nov 11, 2024

Walkthrough

此拉取请求包含多个更改,主要涉及组件文档和实现的更新。新增了 eo-illustration-message 组件的文档,并删除了 error-message 组件及其相关文档。新的 IllustrationMessage 组件被引入以替代已删除的组件,支持不同的消息变体和插图。CSS 样式也进行了相应的修改,以支持新的组件和样式需求。此外,更新了 package.json 以添加对图标库的依赖。

Changes

文件路径 更改摘要
bricks/illustrations/docs/eo-illustration-message.md 新增文档,介绍 eo-illustration-message 组件及其用法示例。
bricks/illustrations/docs/error-message.md 删除文档,移除对 illustrations.error-message 组件的描述。
bricks/illustrations/src/error-message/index.tsx 删除整个 ErrorMessage 组件及相关导出。
shared/common-bricks/common-bricks.json 新增类别 "illustrations",包含 "eo-illustration-message"
bricks/illustrations/package.json peerDependencies 中新增依赖 "@next-bricks/icons": "*"
bricks/illustrations/src/bootstrap.ts 更新导入语句,从 error-message 更改为 illustration-message
bricks/illustrations/src/illustration-message/index.spec.tsx 更新测试套件,修改为 eo-illustration-message,并调整测试内容以反映新的组件名称和类型。
bricks/illustrations/src/illustration-message/index.tsx 新增 IllustrationMessage 组件,支持不同的消息变体和插图展示。
bricks/illustrations/src/illustration-message/styles.shadow.css 修改 CSS,新增和重命名类以支持不同的消息状态样式。

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

coderabbitai[bot]

This comment was marked as resolved.

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: 2

🧹 Outside diff range and nitpick comments (8)
bricks/illustrations/src/illustration-message/styles.shadow.css (2)

9-11: 建议限制通用选择器的作用范围

通用选择器 * 可能会影响到所有嵌套的子组件。建议将其限制在特定的作用域内,以避免样式污染。

-* {
+:host * {
   box-sizing: border-box;
 }

39-57: 建议使用响应式字体大小

状态图标使用固定的字体大小(72px)可能在不同屏幕尺寸下显示不合适。建议考虑使用相对单位或响应式设计方案。

颜色变量的使用符合设计系统规范,这很好。

 .status {
-  font-size: 72px;
+  font-size: clamp(48px, 8vw, 72px);
 }
bricks/illustrations/package.json (1)

73-74: 建议限制图标包的版本范围

虽然添加 @next-bricks/icons 作为 peer dependency 是合理的,但使用 * 作为版本范围可能会导致兼容性问题。建议指定一个主版本号范围,例如 ^1.0.0

  "peerDependencies": {
-   "@next-bricks/icons": "*"
+   "@next-bricks/icons": "^1.0.0"
  }
bricks/illustrations/src/illustration-message/index.spec.tsx (1)

132-181: 建议扩展状态变体测试覆盖范围

当前测试验证了图标的变化,建议添加以下测试项:

  1. 验证每个状态变体对应的 class 变化
  2. 验证不同状态下图标的 theme 属性是否正确

建议添加如下测试代码:

// 验证 class 变化
expect(
  element.shadowRoot?.querySelector(".status")?.classList.contains("success")
).toBe(true);

await act(async () => {
  element.variant = "error";
});
expect(
  element.shadowRoot?.querySelector(".status")?.classList.contains("error")
).toBe(true);

// 验证 theme 属性
expect(
  element.shadowRoot?.querySelector("eo-icon")?.getAttribute("theme")
).toBe("filled");
bricks/illustrations/src/illustration-message/index.tsx (4)

83-86: [优化建议] 考虑移除对已弃用属性 errorTitle 的依赖

render 方法中,heading 的值为 this.heading || this.errorTitle,其中 errorTitle 已被标记为弃用。建议逐步移除对 errorTitle 的依赖,确保新代码只使用 heading 属性。


54-57: [一致性建议] 更新别名以反映组件重命名

@defineElement 装饰器中,alias 包含了旧的组件名称 "illustrations.error-message"。为了保持命名一致性,建议更新或移除别名,以避免混淆。


69-70: [弃用警告] 属性 errorTitle 已弃用

errorTitle 属性已被标记为弃用,建议在文档和代码中明确指出,并鼓励使用新的 heading 属性。


165-167: [代码优化] 检查 <slot /> 的使用是否必要

在 JSX 中使用 <slot /> 可能并非必要,或者可能需要替换为适当的 React 插槽实现。

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

📥 Commits

Reviewing files that changed from the base of the PR and between c647987 and 5a72981.

📒 Files selected for processing (9)
  • bricks/illustrations/docs/eo-illustration-message.md (1 hunks)
  • bricks/illustrations/docs/error-message.md (0 hunks)
  • bricks/illustrations/package.json (1 hunks)
  • bricks/illustrations/src/bootstrap.ts (1 hunks)
  • bricks/illustrations/src/error-message/index.tsx (0 hunks)
  • bricks/illustrations/src/illustration-message/index.spec.tsx (8 hunks)
  • bricks/illustrations/src/illustration-message/index.tsx (1 hunks)
  • bricks/illustrations/src/illustration-message/styles.shadow.css (2 hunks)
  • shared/common-bricks/common-bricks.json (1 hunks)
💤 Files with no reviewable changes (2)
  • bricks/illustrations/docs/error-message.md
  • bricks/illustrations/src/error-message/index.tsx
✅ Files skipped from review due to trivial changes (1)
  • bricks/illustrations/src/bootstrap.ts
🚧 Files skipped from review as they are similar to previous changes (2)
  • bricks/illustrations/docs/eo-illustration-message.md
  • shared/common-bricks/common-bricks.json
🔇 Additional comments (6)
bricks/illustrations/src/illustration-message/styles.shadow.css (1)

26-26: 命名更改符合语义化原则

.title 更改为 .heading 更好地体现了元素的语义,这是一个很好的改进。

bricks/illustrations/package.json (1)

73-74: 验证图标包的使用情况

需要确认新组件中图标的使用是否符合预期。

✅ Verification successful

图标使用验证完成

根据源代码分析,illustration-message 组件中的图标使用符合预期:

  • 正确引入了 @next-bricks/icons 包中的 GeneralIcon 组件
  • 使用 wrapBrick 正确封装了图标组件
  • 仅在状态类型(success/error/warning/info)的消息中使用图标
  • 图标的使用场景明确且合理
🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# 描述:验证 @next-bricks/icons 的导入和使用情况

# 测试:搜索代码库中对图标包的引用
echo "检查对 @next-bricks/icons 的引用:"
rg "@next-bricks/icons" --type ts --type tsx

# 测试:检查新组件中的图标使用
echo "检查 illustration-message 组件中的图标使用:"
fd "illustration-message" --type f --exec rg "Icon|icon" {}

Length of output: 276


Script:

#!/bin/bash
# 修正搜索命令,使用更通用的文件类型

# 检查对图标包的引用
echo "检查对 @next-bricks/icons 的引用:"
rg "@next-bricks/icons"

# 检查新组件中的图标使用
echo "检查 illustration-message 组件中的图标使用:"
fd "illustration-message" --type f --exec cat {} \;

Length of output: 48279


Script:

#!/bin/bash
# 检查 illustration-message 组件的源代码
echo "检查 illustration-message 组件源代码:"
fd "illustration-message.*\.(tsx|ts)$" --type f --exec cat {} \;

Length of output: 140


Script:

#!/bin/bash
# 使用更精确的路径搜索
echo "检查 illustration-message 组件源代码:"
cat bricks/illustrations/src/illustration-message/index.tsx

echo -e "\n检查组件中的图标引用:"
rg -l "general-icon" bricks/illustrations/src/illustration-message/

Length of output: 4426

bricks/illustrations/src/illustration-message/index.spec.tsx (4)

4-4: 类型导入更新正确!

类型从 ErrorMessage 更新为 IllustrationMessage 符合组件重命名的要求。


Line range hint 19-56: 基础用法测试更新合理,并改进了可访问性!

  • 组件名称更新为 eo-illustration-message
  • 为图片添加了 alt 属性,提高了可访问性
  • 类名从 title 更新为更语义化的 heading

Line range hint 70-90: 未找到场景测试更新正确!

测试用例正确反映了组件重命名和图片属性的更新。


Line range hint 103-130: 未知错误场景测试更新合理!

测试结构简化且保持了功能完整性。

Copy link

codecov bot commented Nov 11, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 85.19%. Comparing base (9781ac1) to head (5a72981).
Report is 2 commits behind head on master.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #1395      +/-   ##
==========================================
+ Coverage   85.18%   85.19%   +0.01%     
==========================================
  Files         507      507              
  Lines       14906    14921      +15     
  Branches     2220     2222       +2     
==========================================
+ Hits        12697    12712      +15     
  Misses       1775     1775              
  Partials      434      434              
Files with missing lines Coverage Δ
...s/illustrations/src/illustration-message/index.tsx 100.00% <100.00%> (ø)

Copy link

@github-actions github-actions bot temporarily deployed to pull request November 11, 2024 04:33 Inactive
Copy link

📐🤏 Size check result (9781ac1...c896e3e):

See full diff

Load all bricks together

Name Prev Now Diff
All bricks 4,613.15 KB 4,613.4 KB 🔼 +0.25 KB

Critical changes: None.

See full changes
Name Prev Now Diff
<core> 295.13 KB 295.22 KB
<react> 53.61 KB 53.61 KB 🟰
advanced 511.46 KB 511.46 KB 🟰
ai 287.43 KB 287.52 KB
api-market 10.61 KB 10.61 KB 🟰
basic 183.36 KB 183.36 KB 🟰
containers 96.42 KB 96.42 KB 🟰
data-view 787.4 KB 787.36 KB
diagram 172.94 KB 172.91 KB
form 311.26 KB 311.26 KB 🟰
form-platform 12.89 KB 12.89 KB 🟰
icons 15.22 KB 15.22 KB 🟰
illustrations 17.19 KB 17.47 KB 🔼 +0.28 KB
inject 56.45 KB 56.45 KB 🟰
markdown 239.66 KB 239.66 KB 🟰
mini-chart 10.66 KB 10.66 KB 🟰
nav 115.86 KB 115.86 KB 🟰
presentational 131.72 KB 131.72 KB 🟰
recent-history 32.71 KB 32.71 KB 🟰
shoelace 326.27 KB 326.27 KB 🟰
visual-builder 400.88 KB 400.88 KB 🟰
vs 839.15 KB 839.1 KB

Load bricks by each package

Critical changes:

Name Prev Now Diff
illustrations 77.34 KB 91.66 KB 🔺 +14.32 KB
See full changes
Name Prev Now Diff
advanced 743.97 KB 743.92 KB
ai 499.66 KB 499.63 KB
api-market 206.83 KB 206.84 KB
basic 338.22 KB 338.22 KB 🟰
containers 234.63 KB 234.63 KB 🟰
data-view 869.55 KB 869.68 KB 🔼 +0.13 KB
diagram 243.82 KB 243.82 KB 🟰
form 479.87 KB 479.84 KB
form-platform 175.42 KB 175.42 KB 🟰
icons 72.87 KB 72.87 KB 🟰
illustrations 77.34 KB 91.66 KB 🔺 +14.32 KB
inject 56.45 KB 56.45 KB 🟰
markdown 328.94 KB 328.94 KB 🟰
mini-chart 76.3 KB 76.3 KB 🟰
nav 391.19 KB 391.19 KB 🟰
presentational 342.46 KB 342.46 KB 🟰
recent-history 169.48 KB 169.48 KB 🟰
shoelace 326.27 KB 326.27 KB 🟰
visual-builder 1,492.03 KB 1,492.08 KB
vs 1,013.78 KB 1,013.81 KB
widget-editors 0 KB 0 KB 🟰
Critical details for package illustrations
Name Prev Now Diff
<self> 23.73 KB 24.01 KB 🔼 +0.28 KB
icons 14.04 KB New

Load by each brick

Critical changes:

Name Prev Now Diff
illustrations.error-message 73.14 KB 87.46 KB 🔺 +14.32 KB
See full changes
Name Prev Now Diff
advanced.capture-snapshot 52.74 KB 52.73 KB
advanced.general-cascader 215.64 KB 215.59 KB
advanced.general-table 326.62 KB 326.62 KB 🟰
advanced.pdf-viewer 199.48 KB 199.5 KB
ai.chat-agent 68.07 KB 68.07 KB 🟰
ai.chat-view 494.94 KB 494.89 KB
api-market.apis-directory-tree 206.83 KB 206.84 KB
basic.active-element-blur 9 KB 9 KB 🟰
basic.change-language 8.99 KB 8.99 KB 🟰
basic.copy-to-clipboard 9.15 KB 9.15 KB 🟰
basic.dropdown-button 154.53 KB 154.53 KB 🟰
basic.general-button 128.25 KB 128.25 KB 🟰
basic.general-image 89.01 KB 89.01 KB 🟰
basic.general-link 122.94 KB 122.94 KB 🟰
basic.general-menu 69.23 KB 69.23 KB 🟰
basic.general-menu-item 83.88 KB 83.88 KB 🟰
basic.general-popover 101.44 KB 101.44 KB 🟰
basic.general-tag 85.94 KB 85.94 KB 🟰
basic.general-tag-list 90.31 KB 90.31 KB 🟰
basic.general-text 161.5 KB 161.5 KB 🟰
basic.get-language 8.98 KB 8.98 KB 🟰
basic.home-redirect 14.43 KB 14.44 KB
basic.http-proxy-request 9.06 KB 9.06 KB 🟰
basic.http-request 8.98 KB 8.98 KB 🟰
basic.lock-body-scroll 10.73 KB 10.73 KB 🟰
basic.set-theme-by-apps 8.99 KB 9 KB
basic.set-timeout 8.99 KB 8.99 KB 🟰
basic.show-dialog 180.82 KB 180.82 KB 🟰
basic.show-notification 148.38 KB 148.38 KB 🟰
basic.show-watermark 10.72 KB 10.72 KB 🟰
basic.v3-widget-mate 8.97 KB 8.97 KB 🟰
containers.easy-view 67.34 KB 67.34 KB 🟰
containers.flex-layout 67.09 KB 67.08 KB
containers.general-card 140.16 KB 140.16 KB 🟰
containers.general-category 67.71 KB 67.71 KB 🟰
containers.general-drawer 94.01 KB 94.01 KB 🟰
containers.general-modal 142.17 KB 142.17 KB 🟰
containers.grid-layout 68.16 KB 68.16 KB 🟰
containers.micro-view 79.02 KB 79.02 KB 🟰
containers.search-bar 67.21 KB 67.2 KB
containers.tab-group 72.22 KB 72.21 KB
containers.tab-item 99.05 KB 99.05 KB 🟰
containers.tab-list 99.05 KB 99.05 KB 🟰
data-view.app-wall-card-item 69.87 KB 69.87 KB 🟰
data-view.app-wall-relation-line 69.56 KB 69.56 KB 🟰
data-view.app-wall-system-card 84.07 KB 84.03 KB
data-view.basic-index-group 69.15 KB 69.15 KB 🟰
data-view.battery-chart 69.88 KB 69.88 KB 🟰
data-view.brick-notification 83.25 KB 83.25 KB 🟰
data-view.cabinet-app-layer 69.55 KB 69.55 KB 🟰
data-view.cabinet-button 69.16 KB 69.16 KB 🟰
data-view.cabinet-container 79.43 KB 79.43 KB 🟰
data-view.cabinet-graph 93.59 KB 93.59 KB 🟰
data-view.cabinet-node 69.96 KB 69.96 KB 🟰
data-view.cabinet-thumbnail 83.24 KB 83.24 KB 🟰
data-view.china-map-chart 562.23 KB 562.3 KB
data-view.complex-search 95.72 KB 95.76 KB
data-view.data-display-flipper 69.1 KB 69.1 KB 🟰
data-view.data-display-flipper-fifth 68.97 KB 68.97 KB 🟰
data-view.data-display-flipper-sixth 68.82 KB 68.82 KB 🟰
data-view.dropdown-menu 85.32 KB 85.32 KB 🟰
data-view.gauge-chart 70.02 KB 70.02 KB 🟰
data-view.gear-background 115.13 KB 115.13 KB 🟰
data-view.graph-layout-grid 86.34 KB 86.34 KB 🟰
data-view.graph-node 69.03 KB 69.03 KB 🟰
data-view.graph-text 77.49 KB 77.49 KB 🟰
data-view.grid-background 104.36 KB 104.36 KB 🟰
data-view.hi-tech-button 69.79 KB 69.79 KB 🟰
data-view.indicator-card 69.27 KB 69.27 KB 🟰
data-view.lights-component-title 68.7 KB 68.7 KB 🟰
data-view.loading-panel 73.07 KB 73.07 KB 🟰
data-view.modern-style-component-title 69.76 KB 69.76 KB 🟰
data-view.modern-style-page-title 69.79 KB 69.79 KB 🟰
data-view.modern-style-treemap 80.28 KB 80.28 KB 🟰
data-view.particle-animation 69.69 KB 69.69 KB 🟰
data-view.progress-bar-list 71.85 KB 71.85 KB 🟰
data-view.radar-chart 70.73 KB 70.73 KB 🟰
data-view.simple-card-item 69.37 KB 69.37 KB 🟰
data-view.tabs-drawer 85.18 KB 85.14 KB
data-view.tabs-page-title 71.92 KB 71.92 KB 🟰
data-view.tech-mesh-base-view 68.26 KB 68.26 KB 🟰
data-view.title-text 69.45 KB 69.45 KB 🟰
data-view.top-title-bar 80.63 KB 80.63 KB 🟰
diagram.editable-label 67.87 KB 67.86 KB
diagram.experimental-node 67.41 KB 67.4 KB
eo-actions 141.84 KB 141.84 KB 🟰
eo-alert 88.03 KB 88.03 KB 🟰
eo-antd-icon 71.7 KB 71.7 KB 🟰
eo-app-bar-wrapper 68.4 KB 68.4 KB 🟰
eo-auto-complete 102.43 KB 102.44 KB
eo-avatar 105.98 KB 105.98 KB 🟰
eo-avatar-group 104.54 KB 104.54 KB 🟰
eo-banner 87.01 KB 87.01 KB 🟰
eo-breadcrumb 127.2 KB 127.2 KB 🟰
eo-breadcrumb-item 126.76 KB 126.77 KB
eo-broadcast-channel 69.63 KB 69.63 KB 🟰
eo-button 128.25 KB 128.25 KB 🟰
eo-card 140.16 KB 140.16 KB 🟰
eo-card-item 167.53 KB 167.53 KB 🟰
eo-carousel-text 72.68 KB 72.68 KB 🟰
eo-cascader 215.6 KB 215.59 KB
eo-category 67.71 KB 67.71 KB 🟰
eo-checkbox 106.68 KB 106.68 KB 🟰
eo-code-display 232.5 KB 232.5 KB 🟰
eo-color-picker 223.84 KB 223.84 KB 🟰
eo-content-layout 66.64 KB 66.64 KB 🟰
eo-context-menu 148.35 KB 148.35 KB 🟰
eo-counter-badge 84.49 KB 84.5 KB
eo-current-time 86.71 KB 86.76 KB
eo-date-picker 223.91 KB 223.88 KB
eo-descriptions 164.22 KB 164.22 KB 🟰
eo-diagram 121.45 KB 121.45 KB 🟰
eo-directory 132.11 KB 132.11 KB 🟰
eo-directory-tree 120.89 KB 120.89 KB 🟰
eo-directory-tree-internal-node 69.02 KB 69.02 KB 🟰
eo-directory-tree-leaf 68.22 KB 68.22 KB 🟰
eo-display-canvas 211.63 KB 211.63 KB 🟰
eo-divider 73.55 KB 73.56 KB
eo-draw-canvas 219.25 KB 219.25 KB 🟰
eo-drawer 94.01 KB 94.01 KB 🟰
eo-dropdown-actions 145.55 KB 145.55 KB 🟰
eo-dropdown-button 154.53 KB 154.53 KB 🟰
eo-dropdown-select 138.68 KB 138.69 KB
eo-dynamic-form-item 165.71 KB 165.72 KB
eo-easy-view 67.34 KB 67.34 KB 🟰
eo-easyops-avatar 110.1 KB 110.1 KB 🟰
eo-easyops-icon 71.7 KB 71.7 KB 🟰
eo-event-agent 13.98 KB 13.98 KB 🟰
eo-fa-icon 71.7 KB 71.7 KB 🟰
eo-flex-layout 67.09 KB 67.08 KB
eo-form 69.55 KB 69.55 KB 🟰
eo-form-item 75.26 KB 75.26 KB 🟰
eo-formatter-number 69.67 KB 69.68 KB
eo-frame-breadcrumb 143.99 KB 143.99 KB 🟰
eo-grid-layout 68.16 KB 68.16 KB 🟰
eo-humanize-time 139.57 KB 139.57 KB 🟰
eo-icon 71.7 KB 71.7 KB 🟰
eo-icon-select 195.54 KB 195.54 KB 🟰
eo-iframe 69.67 KB 69.68 KB
eo-illustration-message 87.46 KB New
eo-image 89.01 KB 89.01 KB 🟰
eo-img-icon 71.7 KB 71.7 KB 🟰
eo-info-card-item 137.29 KB 137.29 KB 🟰
eo-input 96.44 KB 96.43 KB
eo-launchpad-button 161.34 KB 161.34 KB 🟰
eo-launchpad-button-v2 215.58 KB 215.58 KB 🟰
eo-launchpad-quick-access 202.21 KB 202.21 KB 🟰
eo-launchpad-recent-visits 201.01 KB 201.02 KB
eo-link 122.94 KB 122.94 KB 🟰
eo-loading-container 83.7 KB 83.7 KB 🟰
eo-loading-step 101.41 KB 101.36 KB
eo-main-view 87.01 KB 87.01 KB 🟰
eo-markdown-display 132.75 KB 132.75 KB 🟰
eo-markdown-editor 299.02 KB 298.99 KB
eo-menu 69.23 KB 69.23 KB 🟰
eo-menu-group 69.01 KB 69.01 KB 🟰
eo-menu-item 83.88 KB 83.88 KB 🟰
eo-menu-item-sub-menu 84.35 KB 84.35 KB 🟰
eo-message-listener 69.41 KB 69.41 KB 🟰
eo-micro-view 79.02 KB 79.02 KB 🟰
eo-mini-actions 146.44 KB 146.44 KB 🟰
eo-mini-line-chart 76.3 KB 76.3 KB 🟰
eo-modal 142.17 KB 142.17 KB 🟰
eo-narrow-view 75.32 KB 75.32 KB 🟰
eo-nav-menu 192.65 KB 192.65 KB 🟰
eo-next-table 376.95 KB 376.91 KB
eo-page-title 69.34 KB 69.34 KB 🟰
eo-page-view 75.32 KB 75.32 KB 🟰
eo-pagination 172.46 KB 172.46 KB 🟰
eo-popover 101.44 KB 101.44 KB 🟰
eo-popup 97.22 KB 97.22 KB 🟰
eo-radio 97.75 KB 97.75 KB 🟰
eo-resizable-box 69.05 KB 69.05 KB 🟰
eo-search 100.48 KB 100.48 KB 🟰
eo-search-bar 67.21 KB 67.2 KB
eo-search-launchpad 204.87 KB 204.87 KB 🟰
eo-select 114.38 KB 114.39 KB
eo-sidebar 167.93 KB 167.93 KB 🟰
eo-sidebar-menu 148.98 KB 148.98 KB 🟰
eo-sidebar-menu-group 148.98 KB 148.98 KB 🟰
eo-sidebar-menu-item 133.85 KB 133.85 KB 🟰
eo-sidebar-menu-submenu 148.98 KB 148.98 KB 🟰
eo-sidebar-sub-menu 149.02 KB 149.02 KB 🟰
eo-spin 67.54 KB 67.54 KB 🟰
eo-statistics-card 87.91 KB 87.95 KB
eo-submit-buttons 150.28 KB 150.28 KB 🟰
eo-svg-icon 71.7 KB 71.7 KB 🟰
eo-switch 94.65 KB 94.65 KB 🟰
eo-tab-group 72.22 KB 72.21 KB
eo-tab-item 99.05 KB 99.05 KB 🟰
eo-tab-list 99.05 KB 99.05 KB 🟰
eo-table 326.63 KB 326.62 KB
eo-tag 85.94 KB 85.94 KB 🟰
eo-tag-list 90.31 KB 90.31 KB 🟰
eo-text 161.5 KB 161.5 KB 🟰
eo-text-tooltip 141.09 KB 141.08 KB
eo-textarea 84.31 KB 84.31 KB 🟰
eo-time-picker 205.91 KB 205.91 KB 🟰
eo-time-range-picker 222.83 KB 222.83 KB 🟰
eo-tooltip 117.97 KB 117.98 KB
eo-tree 140.68 KB 140.67 KB
eo-tree-select 227.69 KB 227.73 KB
eo-upload-file 162.29 KB 162.29 KB 🟰
eo-upload-image 170.9 KB 170.9 KB 🟰
eo-user-or-user-group-select 175.42 KB 175.42 KB 🟰
eo-workbench-layout 260.22 KB 260.22 KB 🟰
eo-workbench-layout-v2 261.71 KB 261.71 KB 🟰
form.dynamic-form-item 165.71 KB 165.72 KB
form.general-checkbox 106.68 KB 106.68 KB 🟰
form.general-form 69.55 KB 69.55 KB 🟰
form.general-form-item 75.26 KB 75.26 KB 🟰
form.general-input 96.43 KB 96.43 KB 🟰
form.general-radio 97.75 KB 97.75 KB 🟰
form.general-search 100.47 KB 100.48 KB
form.general-select 114.38 KB 114.39 KB
form.general-switch 94.65 KB 94.65 KB 🟰
form.general-textarea 84.31 KB 84.31 KB 🟰
form.icon-select 195.54 KB 195.54 KB 🟰
form.submit-buttons 150.28 KB 150.28 KB 🟰
form.upload-image 170.9 KB 170.9 KB 🟰
icons.antd-icon 71.7 KB 71.7 KB 🟰
icons.easyops-icon 71.7 KB 71.7 KB 🟰
icons.fa-icon 71.7 KB 71.7 KB 🟰
icons.general-icon 71.7 KB 71.7 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 73.14 KB 87.46 KB 🔺 +14.32 KB
illustrations.get-illustration 9.35 KB 9.36 KB
illustrations.get-illustrations-by-category 6.25 KB 6.26 KB
illustrations.loading-transition 66.81 KB 66.82 KB
illustrations.translate-illustration-config 9.35 KB 9.36 KB
inject.visual-builder-preview-agent 56.45 KB 56.45 KB 🟰
markdown.markdown-editor 299.02 KB 298.99 KB
nav.app-bar-wrapper 68.4 KB 68.4 KB 🟰
nav.easyops-navbar-alerts 136.29 KB 136.29 KB 🟰
nav.launchpad-config 215.52 KB 215.53 KB
nav.nav-logo 132.87 KB 132.88 KB
nav.poll-announce 168.85 KB 168.85 KB 🟰
presentational.code-display 232.5 KB 232.5 KB 🟰
presentational.general-alert 88.03 KB 88.03 KB 🟰
presentational.general-descriptions 164.22 KB 164.22 KB 🟰
presentational.humanize-time 139.57 KB 139.57 KB 🟰
recent-history.clear-history 28.44 KB 28.44 KB 🟰
recent-history.get-all-history 28.44 KB 28.44 KB 🟰
recent-history.push-history 28.44 KB 28.44 KB 🟰
recent-history.recent-visit 168.29 KB 168.29 KB 🟰
sl-alert 30.13 KB 30.13 KB 🟰
sl-animated-image 24.88 KB 24.88 KB 🟰
sl-animation 25.05 KB 25.05 KB 🟰
sl-avatar 25.35 KB 25.35 KB 🟰
sl-badge 21.92 KB 21.92 KB 🟰
sl-breadcrumb 27.29 KB 27.29 KB 🟰
sl-breadcrumb-item 27.29 KB 27.29 KB 🟰
sl-button 32.75 KB 32.75 KB 🟰
sl-button-group 21.17 KB 21.17 KB 🟰
sl-card 22.18 KB 22.18 KB 🟰
sl-carousel 31.31 KB 31.31 KB 🟰
sl-carousel-item 31.31 KB 31.31 KB 🟰
sl-checkbox 29.79 KB 29.79 KB 🟰
sl-color-picker 63.98 KB 63.98 KB 🟰
sl-details 27.57 KB 27.57 KB 🟰
sl-dialog 32.51 KB 32.51 KB 🟰
sl-divider 21.01 KB 21.01 KB 🟰
sl-drawer 33.6 KB 33.6 KB 🟰
sl-dropdown 35.61 KB 35.61 KB 🟰
sl-format-bytes 21.83 KB 21.83 KB 🟰
sl-format-date 21.88 KB 21.88 KB 🟰
sl-format-number 21.89 KB 21.89 KB 🟰
sl-icon 24.01 KB 24.01 KB 🟰
sl-icon-button 26.61 KB 26.61 KB 🟰
sl-image-comparer 27.27 KB 27.27 KB 🟰
sl-input 33.31 KB 33.31 KB 🟰
sl-menu 41.13 KB 41.13 KB 🟰
sl-menu-item 41.13 KB 41.13 KB 🟰
sl-menu-label 20.74 KB 20.74 KB 🟰
sl-mutation-observer 21.23 KB 21.23 KB 🟰
sl-option 26.87 KB 26.87 KB 🟰
sl-popup 30.29 KB 30.29 KB 🟰
sl-progress-bar 23.48 KB 23.48 KB 🟰
sl-progress-ring 22.57 KB 22.57 KB 🟰
sl-qr-code 26.48 KB 26.48 KB 🟰
sl-radio 25.77 KB 25.77 KB 🟰
sl-radio-button 25.53 KB 25.53 KB 🟰
sl-radio-group 25.86 KB 25.86 KB 🟰
sl-range 28.57 KB 28.57 KB 🟰
sl-rating 27.93 KB 27.93 KB 🟰
sl-relative-time 22.16 KB 22.16 KB 🟰
sl-resize-observer 21.09 KB 21.09 KB 🟰
sl-select 47.9 KB 47.9 KB 🟰
sl-skeleton 21.73 KB 21.73 KB 🟰
sl-spinner 22.18 KB 22.18 KB 🟰
sl-split-panel 23.8 KB 23.8 KB 🟰
sl-switch 26.7 KB 26.7 KB 🟰
sl-tab 32.6 KB 32.6 KB 🟰
sl-tab-group 32.6 KB 32.6 KB 🟰
sl-tab-panel 32.6 KB 32.6 KB 🟰
sl-tag 28.76 KB 28.76 KB 🟰
sl-textarea 27.21 KB 27.21 KB 🟰
sl-tooltip 33.69 KB 33.69 KB 🟰
sl-tree 36.75 KB 36.75 KB 🟰
sl-tree-item 36.75 KB 36.75 KB 🟰
sl-visually-hidden 20.71 KB 20.71 KB 🟰
visual-builder.batch-update-raw-data-generated-view 7.83 KB 7.84 KB
visual-builder.chat-conversation 184.12 KB 184.13 KB
visual-builder.chat-preview 69.81 KB 69.82 KB
visual-builder.check-editor-by-name 7.44 KB 7.45 KB
visual-builder.contract-select 123.2 KB 123.21 KB
visual-builder.generate-snippets-context-menu 146.7 KB 146.71 KB
visual-builder.get-data-deps 7.46 KB 7.47 KB
visual-builder.get-dependency-tree 7.83 KB 7.84 KB
visual-builder.get-raw-data-system-prompts 11.81 KB 11.82 KB
visual-builder.inject-chat-preview-agent 8.41 KB 8.42 KB
visual-builder.page-arch-node 131.05 KB 131.06 KB
visual-builder.parse-path 9.08 KB 9.08 KB 🟰
visual-builder.pre-generated-container 70.19 KB 70.2 KB
visual-builder.pre-generated-preview 69.77 KB 69.78 KB
visual-builder.pre-generated-table-view 67.43 KB 67.44 KB
visual-builder.property-editor 1,299.31 KB 1,299.27 KB
visual-builder.raw-data-preview 72.65 KB 72.66 KB
visual-builder.workbench-action 134.79 KB 134.8 KB
visual-builder.workbench-action-list 140.22 KB 140.23 KB
visual-builder.workbench-history-action 168.27 KB 168.28 KB
visual-builder.workbench-pane 83.51 KB 83.52 KB
visual-builder.workbench-sidebar 68.3 KB 68.31 KB
visual-builder.workbench-tree 140.25 KB 140.26 KB
vs.code-editor 1,013.78 KB 1,013.76 KB
Critical details for brick illustrations.error-message
Name Prev Now Diff
icons/dist/chunks/4899.a0a574e4.js 7.95 KB New
icons/dist/chunks/icons.9990c48f.js 0.44 KB New
icons/dist/index.b443f328.js 5.65 KB New
illustrations/dist/chunks/eo-illustration-message.71dcff1a.js 3.92 KB New
illustrations/dist/chunks/error-message.8812b307.js 3.64 KB Del
illustrations/dist/index.58f3f440.js 5.61 KB New
illustrations/dist/index.b302b078.js 5.6 KB Del

@qiaofengxi qiaofengxi merged commit a31fc31 into master Nov 11, 2024
9 checks passed
@qiaofengxi qiaofengxi deleted the steve/illustration-message branch November 11, 2024 06:21
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