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(): use transform: none instead of transform: translate(0, 0) #1493

Merged
merged 1 commit into from
Mar 3, 2025

Conversation

weareoutman
Copy link
Member

@weareoutman weareoutman commented Mar 3, 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

  • 样式
    • 调整了抽屉组件在打开时的视觉转换效果,取消了之前的平移效果,使界面表现更自然直观。

Copy link

coderabbitai bot commented Mar 3, 2025

Walkthrough

此次更改更新了抽屉组件打开时的 CSS 样式。在抽屉处于 open 状态时,针对各方向的抽屉包装器(左、右、底、上)的 transform 属性从 translate(0, 0) 修改为 none,从而取消了平移效果。此调整仅涉及 CSS 样式,不影响公开实体的声明。

Changes

文件路径 变更摘要
bricks/containers/.../drawer.shadow.css 将抽屉打开时各方向包装器的 transformtranslate(0, 0) 修改为 none,取消平移效果。

📜 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 e81fe7b and 852d316.

📒 Files selected for processing (1)
  • bricks/containers/src/drawer/drawer.shadow.css (1 hunks)
✅ Files skipped from review due to trivial changes (1)
  • bricks/containers/src/drawer/drawer.shadow.css
⏰ Context from checks skipped due to timeout of 90000ms (2)
  • GitHub Check: Size check (20.x)
  • GitHub Check: Build docs (20.x)

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

github-actions bot commented Mar 3, 2025

@github-actions github-actions bot temporarily deployed to pull request March 3, 2025 10:17 Inactive
@weareoutman weareoutman changed the title fix(): use transform: none instead of transform: (0, 0) fix(): use transform: none instead of transform: translate(0, 0) Mar 3, 2025
@weareoutman weareoutman merged commit d51dab1 into master Mar 3, 2025
9 checks passed
@weareoutman weareoutman deleted the steve/fix-drawer-transform branch March 3, 2025 10:20
Copy link

github-actions bot commented Mar 3, 2025

📐🤏 Size check result (e81fe7b...9aedc4d):

See full diff

Load all bricks together

Name Prev Now Diff
All bricks 4,337.93 KB 4,357.05 KB 🔺 +19.12 KB

Critical changes:

Name Prev Now Diff
visual-builder 415.88 KB 434.93 KB 🔺 +19.05 KB
See full changes
Name Prev Now Diff
<core> 311.4 KB 311.46 KB
advanced 515.19 KB 515.22 KB
ai 285.13 KB 285.1 KB
api-market 10.56 KB 10.56 KB 🟰
basic 156.04 KB 156.04 KB 🟰
containers 95.05 KB 95.04 KB
data-view 639.76 KB 639.77 KB
diagram 176.52 KB 176.6 KB
form 321.26 KB 321.27 KB
form-platform 12.57 KB 12.57 KB 🟰
icons 64.12 KB 64.12 KB 🟰
illustrations 17.31 KB 17.31 KB 🟰
inject 56.22 KB 56.23 KB
markdown 248.92 KB 248.92 KB 🟰
mini-chart 10.61 KB 10.61 KB 🟰
nav 121.37 KB 121.37 KB 🟰
presentational 134.41 KB 134.41 KB 🟰
recent-history 32.53 KB 32.53 KB 🟰
shoelace 185.54 KB 185.54 KB 🟰
visual-builder 415.88 KB 434.93 KB 🔺 +19.05 KB
vs 838.93 KB 838.89 KB

Load bricks by each package

Critical changes:

Name Prev Now Diff
visual-builder 1,587.69 KB 1,606.79 KB 🔺 +19.1 KB
See full changes
Name Prev Now Diff
advanced 824.83 KB 824.86 KB
ai 580.95 KB 580.99 KB
api-market 319.06 KB 319.07 KB
basic 355.87 KB 355.88 KB
containers 249.57 KB 249.57 KB 🟰
data-view 795.02 KB 795.04 KB
diagram 259.88 KB 259.95 KB
form 608.35 KB 608.33 KB
form-platform 300.96 KB 300.98 KB
icons 121.82 KB 121.82 KB 🟰
illustrations 141.65 KB 141.63 KB
inject 56.22 KB 56.23 KB
markdown 443.54 KB 443.55 KB
mini-chart 76.29 KB 76.29 KB 🟰
nav 463.04 KB 463.05 KB
presentational 430.2 KB 430.19 KB
recent-history 300.43 KB 300.43 KB 🟰
shoelace 185.58 KB 185.58 KB 🟰
visual-builder 1,587.69 KB 1,606.79 KB 🔺 +19.1 KB
vs 1,121.91 KB 1,121.91 KB 🟰
widget-editors 0 KB 0 KB 🟰
Critical details for package visual-builder
Name Prev Now Diff
<self> 415.85 KB 442.96 KB 🔺 +27.11 KB
form 51 KB 42.99 KB 🟢 -8.01 KB

Load by each brick

Critical changes:

Name Prev Now Diff
eo-checkbox 210.1 KB 155.75 KB 🟢 -54.35 KB
eo-date-picker 335.14 KB 280.78 KB 🟢 -54.36 KB
eo-input 194.6 KB 140.25 KB 🟢 -54.35 KB
eo-radio 148.65 KB 203.02 KB 🔺 +54.37 KB
form.general-input 194.6 KB 140.25 KB 🟢 -54.35 KB
form.general-radio 203.01 KB 148.66 KB 🟢 -54.35 KB
form.general-search 144.28 KB 198.65 KB 🔺 +54.37 KB
visual-builder.contract-select 166.65 KB 168.42 KB 🔺 +1.77 KB
visual-builder.raw-data-preview 72.63 KB 78.7 KB 🔺 +6.07 KB
See full changes
Name Prev Now Diff
advanced.capture-snapshot 52.37 KB 52.37 KB 🟰
advanced.general-cascader 266.84 KB 266.85 KB
advanced.general-table 378.16 KB 378.16 KB 🟰
advanced.pdf-viewer 199.15 KB 199.17 KB
ai.chat-agent 67.79 KB 67.79 KB 🟰
ai.chat-view 576.16 KB 576.21 KB
api-market.apis-directory-tree 319.07 KB 319.07 KB 🟰
basic.active-element-blur 8.57 KB 8.57 KB 🟰
basic.change-language 8.57 KB 8.57 KB 🟰
basic.copy-to-clipboard 8.73 KB 8.73 KB 🟰
basic.dropdown-button 269.53 KB 269.49 KB
basic.general-button 150.46 KB 150.46 KB 🟰
basic.general-image 146.43 KB 146.43 KB 🟰
basic.general-link 256.68 KB 256.68 KB 🟰
basic.general-menu 78.4 KB 78.4 KB 🟰
basic.general-menu-item 142.8 KB 142.8 KB 🟰
basic.general-popover 186.47 KB 186.47 KB 🟰
basic.general-tag 144.75 KB 144.75 KB 🟰
basic.general-tag-list 146.85 KB 146.85 KB 🟰
basic.general-text 285.52 KB 285.53 KB
basic.get-language 8.56 KB 8.56 KB 🟰
basic.home-redirect 23.46 KB 23.46 KB 🟰
basic.http-proxy-request 8.64 KB 8.64 KB 🟰
basic.http-request 8.56 KB 8.56 KB 🟰
basic.lock-body-scroll 23.15 KB 23.15 KB 🟰
basic.set-theme-by-apps 8.57 KB 8.57 KB 🟰
basic.set-timeout 8.57 KB 8.57 KB 🟰
basic.show-dialog 274.23 KB 274.23 KB 🟰
basic.show-notification 256.68 KB 256.68 KB 🟰
basic.show-watermark 10.31 KB 10.31 KB 🟰
basic.v3-widget-mate 8.55 KB 8.55 KB 🟰
containers.easy-view 67.12 KB 67.12 KB 🟰
containers.flex-layout 66.86 KB 66.85 KB
containers.general-card 162.08 KB 162.08 KB 🟰
containers.general-category 67.49 KB 67.48 KB
containers.general-drawer 156.29 KB 156.28 KB
containers.general-modal 162.78 KB 162.77 KB
containers.grid-layout 67.95 KB 67.94 KB
containers.micro-view 88 KB 88 KB 🟰
containers.search-bar 66.98 KB 66.97 KB
containers.tab-group 72.14 KB 72.13 KB
containers.tab-item 157.91 KB 157.9 KB
containers.tab-list 157.91 KB 157.9 KB
data-view.app-wall-card-item 70.07 KB 70.07 KB 🟰
data-view.app-wall-relation-line 69.77 KB 69.77 KB 🟰
data-view.app-wall-system-card 134.31 KB 134.31 KB 🟰
data-view.basic-index-group 69.36 KB 69.36 KB 🟰
data-view.battery-chart 70.09 KB 70.09 KB 🟰
data-view.brick-notification 133.5 KB 133.5 KB 🟰
data-view.bubbles-indicator 167.24 KB 167.24 KB 🟰
data-view.cabinet-app-layer 69.76 KB 69.76 KB 🟰
data-view.cabinet-button 69.37 KB 69.37 KB 🟰
data-view.cabinet-container 79.64 KB 79.64 KB 🟰
data-view.cabinet-graph 93.81 KB 93.81 KB 🟰
data-view.cabinet-node 70.17 KB 70.17 KB 🟰
data-view.cabinet-thumbnail 83.46 KB 83.46 KB 🟰
data-view.china-map 145.78 KB 145.78 KB 🟰
data-view.china-map-chart 376.36 KB 376.32 KB
data-view.complex-search 146.03 KB 146.03 KB 🟰
data-view.crystal-ball-indicator 161.63 KB 161.63 KB 🟰
data-view.data-display-flipper 69.31 KB 69.31 KB 🟰
data-view.data-display-flipper-fifth 69.17 KB 69.17 KB 🟰
data-view.data-display-flipper-sixth 69.03 KB 69.03 KB 🟰
data-view.dropdown-menu 135.6 KB 135.64 KB
data-view.gauge-chart 70.23 KB 70.23 KB 🟰
data-view.gear-background 115.33 KB 115.33 KB 🟰
data-view.globe-with-gear-indicator 212.49 KB 212.49 KB 🟰
data-view.globe-with-halo-indicator 162.63 KB 162.63 KB 🟰
data-view.globe-with-orbit-indicator 162.45 KB 162.45 KB 🟰
data-view.graph-layout-grid 86.55 KB 86.55 KB 🟰
data-view.graph-node 69.23 KB 69.23 KB 🟰
data-view.graph-text 77.7 KB 77.7 KB 🟰
data-view.grid-background 104.57 KB 104.57 KB 🟰
data-view.hi-tech-button 70 KB 70 KB 🟰
data-view.indicator-card 69.47 KB 69.47 KB 🟰
data-view.lights-component-title 68.9 KB 68.9 KB 🟰
data-view.loading-panel 73.28 KB 73.28 KB 🟰
data-view.modern-style-component-title 69.97 KB 69.97 KB 🟰
data-view.modern-style-page-title 70.01 KB 70.01 KB 🟰
data-view.modern-style-treemap 80.56 KB 80.56 KB 🟰
data-view.particle-animation 69.9 KB 69.9 KB 🟰
data-view.progress-bar-list 72.07 KB 72.07 KB 🟰
data-view.radar-chart 70.94 KB 70.94 KB 🟰
data-view.simple-card-item 69.58 KB 69.58 KB 🟰
data-view.tabs-drawer 135.46 KB 135.5 KB
data-view.tabs-page-title 72.12 KB 72.12 KB 🟰
data-view.tech-mesh-base-view 68.47 KB 68.47 KB 🟰
data-view.title-text 69.66 KB 69.66 KB 🟰
data-view.top-title-bar 80.84 KB 80.84 KB 🟰
diagram.editable-label 67.75 KB 67.75 KB 🟰
diagram.experimental-node 67.2 KB 67.2 KB 🟰
eo-actions 266.38 KB 266.39 KB
eo-alert 137.73 KB 137.73 KB 🟰
eo-antd-icon 121.82 KB 121.82 KB 🟰
eo-app-bar-wrapper 68.09 KB 68.09 KB 🟰
eo-auto-complete 200.61 KB 200.62 KB
eo-avatar 249.14 KB 249.11 KB
eo-avatar-group 248.02 KB 248.05 KB
eo-banner 96.01 KB 96 KB
eo-breadcrumb 258.8 KB 258.8 KB 🟰
eo-breadcrumb-item 258.36 KB 258.36 KB 🟰
eo-broadcast-channel 78.8 KB 78.8 KB 🟰
eo-button 150.46 KB 150.46 KB 🟰
eo-card 162.08 KB 162.08 KB 🟰
eo-card-item 286.64 KB 286.64 KB 🟰
eo-carousel-text 75.36 KB 75.36 KB 🟰
eo-cascader 266.84 KB 266.85 KB
eo-category 67.49 KB 67.48 KB
eo-checkbox 210.1 KB 155.75 KB 🟢 -54.35 KB
eo-code-display 340.36 KB 340.4 KB
eo-color-picker 238.82 KB 238.82 KB 🟰
eo-content-layout 66.42 KB 66.41 KB
eo-context-menu 269.41 KB 269.41 KB 🟰
eo-counter-badge 143.48 KB 143.48 KB 🟰
eo-current-time 136.41 KB 136.46 KB
eo-date-picker 335.14 KB 280.78 KB 🟢 -54.36 KB
eo-descriptions 183.25 KB 183.24 KB
eo-diagram 121.47 KB 121.47 KB 🟰
eo-directory 267.98 KB 267.98 KB 🟰
eo-directory-tree 166.81 KB 166.81 KB 🟰
eo-directory-tree-internal-node 132.99 KB 132.99 KB 🟰
eo-directory-tree-leaf 132.3 KB 132.3 KB 🟰
eo-display-canvas 215.48 KB 215.55 KB
eo-divider 73.17 KB 73.17 KB 🟰
eo-draw-canvas 235.47 KB 235.55 KB
eo-drawer 156.29 KB 156.27 KB
eo-dropdown-actions 268 KB 267.99 KB
eo-dropdown-button 269.49 KB 269.53 KB
eo-dropdown-select 263.95 KB 263.91 KB
eo-dynamic-form-item 187.91 KB 187.92 KB
eo-easy-view 67.12 KB 67.12 KB 🟰
eo-easyops-avatar 250.99 KB 250.99 KB 🟰
eo-easyops-icon 121.82 KB 121.82 KB 🟰
eo-event-agent 23.06 KB 23.06 KB 🟰
eo-fa-icon 121.82 KB 121.82 KB 🟰
eo-flex-layout 66.86 KB 66.85 KB
eo-form 70 KB 70.01 KB
eo-form-item 76.12 KB 76.13 KB
eo-formatter-number 78.87 KB 78.87 KB 🟰
eo-frame-breadcrumb 270.61 KB 270.61 KB 🟰
eo-grid-layout 67.95 KB 67.94 KB
eo-humanize-time 272.93 KB 272.93 KB 🟰
eo-icon 121.82 KB 121.82 KB 🟰
eo-icon-select 207.76 KB 207.76 KB 🟰
eo-iframe 78.84 KB 78.84 KB 🟰
eo-illustration-message 137.43 KB 137.45 KB
eo-image 146.43 KB 146.43 KB 🟰
eo-img-icon 121.82 KB 121.82 KB 🟰
eo-info-card-item 273.11 KB 273.11 KB 🟰
eo-input 194.6 KB 140.25 KB 🟢 -54.35 KB
eo-launchpad-button 294.71 KB 294.68 KB
eo-launchpad-button-v2 301.81 KB 301.82 KB
eo-launchpad-quick-access 289.76 KB 289.77 KB
eo-launchpad-recent-visits 288.62 KB 288.6 KB
eo-link 256.68 KB 256.68 KB 🟰
eo-loading-container 142.96 KB 142.96 KB 🟰
eo-loading-step 163.5 KB 163.55 KB
eo-main-view 96.01 KB 96 KB
eo-markdown-display 140.95 KB 140.95 KB 🟰
eo-markdown-editor 405.33 KB 405.37 KB
eo-menu 78.4 KB 78.4 KB 🟰
eo-menu-group 78.33 KB 78.33 KB 🟰
eo-menu-item 142.8 KB 142.8 KB 🟰
eo-menu-item-sub-menu 143.24 KB 143.24 KB 🟰
eo-message-listener 78.57 KB 78.57 KB 🟰
eo-micro-view 88 KB 88 KB 🟰
eo-mini-actions 268.46 KB 268.46 KB 🟰
eo-mini-line-chart 76.29 KB 76.29 KB 🟰
eo-modal 162.78 KB 162.77 KB
eo-narrow-view 75.17 KB 75.17 KB 🟰
eo-nav-menu 314.35 KB 314.39 KB
eo-next-table 509.55 KB 509.6 KB
eo-page-title 78.54 KB 78.54 KB 🟰
eo-page-view 75.17 KB 75.17 KB 🟰
eo-pagination 294.48 KB 294.44 KB
eo-popover 186.47 KB 186.47 KB 🟰
eo-popup 145.64 KB 145.63 KB
eo-radio 148.65 KB 203.02 KB 🔺 +54.37 KB
eo-resizable-box 68.84 KB 68.83 KB
eo-search 144.28 KB 144.29 KB
eo-search-bar 66.98 KB 66.97 KB
eo-search-launchpad 292.42 KB 292.43 KB
eo-select 334.7 KB 334.76 KB
eo-sidebar 298.86 KB 298.86 KB 🟰
eo-sidebar-menu 282.38 KB 282.38 KB 🟰
eo-sidebar-menu-group 282.38 KB 282.38 KB 🟰
eo-sidebar-menu-item 267.24 KB 267.24 KB 🟰
eo-sidebar-menu-submenu 282.38 KB 282.42 KB
eo-sidebar-sub-menu 273.22 KB 273.22 KB 🟰
eo-spin 67.31 KB 67.31 KB 🟰
eo-statistics-card 137.6 KB 137.6 KB 🟰
eo-submit-buttons 172.42 KB 172.43 KB
eo-svg-icon 121.82 KB 121.82 KB 🟰
eo-switch 145.6 KB 145.61 KB
eo-tab-group 72.14 KB 72.13 KB
eo-tab-item 157.91 KB 157.9 KB
eo-tab-list 157.91 KB 157.9 KB
eo-table 378.16 KB 378.16 KB 🟰
eo-tag 144.75 KB 144.75 KB 🟰
eo-tag-list 146.85 KB 146.85 KB 🟰
eo-text 285.52 KB 285.53 KB
eo-text-tooltip 139.31 KB 139.31 KB 🟰
eo-textarea 85.15 KB 85.16 KB
eo-time-picker 212.79 KB 212.8 KB
eo-time-range-picker 279.96 KB 279.97 KB
eo-tooltip 256.72 KB 256.68 KB
eo-tree 138.17 KB 138.17 KB 🟰
eo-tree-select 279.55 KB 279.56 KB
eo-upload-file 290.66 KB 290.67 KB
eo-upload-image 189.06 KB 189.07 KB
eo-user-or-user-group-select 300.96 KB 300.98 KB
eo-workbench-layout 337.97 KB 337.95 KB
eo-workbench-layout-v2 339.42 KB 339.43 KB
form.dynamic-form-item 187.91 KB 187.92 KB
form.general-checkbox 210.1 KB 210.11 KB
form.general-form 70 KB 70.01 KB
form.general-form-item 76.12 KB 76.13 KB
form.general-input 194.6 KB 140.25 KB 🟢 -54.35 KB
form.general-radio 203.01 KB 148.66 KB 🟢 -54.35 KB
form.general-search 144.28 KB 198.65 KB 🔺 +54.37 KB
form.general-select 334.7 KB 334.72 KB
form.general-switch 199.96 KB 199.96 KB 🟰
form.general-textarea 85.15 KB 85.16 KB
form.icon-select 207.76 KB 207.76 KB 🟰
form.submit-buttons 172.42 KB 172.43 KB
form.upload-image 189.06 KB 189.07 KB
icons.antd-icon 121.82 KB 121.82 KB 🟰
icons.easyops-icon 121.82 KB 121.82 KB 🟰
icons.fa-icon 121.82 KB 121.82 KB 🟰
icons.general-icon 121.82 KB 121.82 KB 🟰
icons.get-antd-icons 121.82 KB 121.82 KB 🟰
icons.get-easyops-icons 121.82 KB 121.82 KB 🟰
icons.get-fa-icons 121.82 KB 121.82 KB 🟰
icons.get-libs 121.82 KB 121.82 KB 🟰
icons.search-icons 121.82 KB 121.82 KB 🟰
illustrations.error-message 137.45 KB 137.45 KB 🟰
illustrations.get-illustration 9.12 KB 9.12 KB 🟰
illustrations.get-illustrations-by-category 6.02 KB 6.02 KB 🟰
illustrations.loading-transition 66.64 KB 66.64 KB 🟰
illustrations.translate-illustration-config 9.12 KB 9.12 KB 🟰
inject.visual-builder-preview-agent 56.22 KB 56.23 KB
markdown.markdown-editor 405.37 KB 405.41 KB
nav.app-bar-wrapper 68.09 KB 68.09 KB 🟰
nav.easyops-navbar-alerts 267.19 KB 267.19 KB 🟰
nav.get-menu-config-options 7.85 KB 7.85 KB 🟰
nav.get-menu-config-tree 8.35 KB 8.35 KB 🟰
nav.launchpad-config 298.49 KB 298.5 KB
nav.nav-logo 266.26 KB 266.26 KB 🟰
nav.poll-announce 276.8 KB 276.8 KB 🟰
presentational.code-display 340.4 KB 340.36 KB
presentational.general-alert 137.73 KB 137.73 KB 🟰
presentational.general-descriptions 183.25 KB 183.24 KB
presentational.humanize-time 272.93 KB 272.93 KB 🟰
recent-history.clear-history 28.36 KB 28.36 KB 🟰
recent-history.get-all-history 28.36 KB 28.36 KB 🟰
recent-history.push-history 28.36 KB 28.36 KB 🟰
recent-history.recent-visit 299.37 KB 299.33 KB
sl-alert 106.23 KB 106.23 KB 🟰
sl-animated-image 105.29 KB 105.29 KB 🟰
sl-animation 108.64 KB 108.64 KB 🟰
sl-avatar 105.28 KB 105.28 KB 🟰
sl-badge 105.29 KB 105.29 KB 🟰
sl-breadcrumb 106.03 KB 106.03 KB 🟰
sl-breadcrumb-item 106.03 KB 106.03 KB 🟰
sl-button 106.02 KB 106.02 KB 🟰
sl-button-group 105.29 KB 105.29 KB 🟰
sl-card 105.28 KB 105.28 KB 🟰
sl-carousel 106.03 KB 106.03 KB 🟰
sl-carousel-item 106.03 KB 106.03 KB 🟰
sl-checkbox 105.29 KB 105.29 KB 🟰
sl-color-picker 111.06 KB 111.06 KB 🟰
sl-details 106.02 KB 106.02 KB 🟰
sl-dialog 106.23 KB 106.23 KB 🟰
sl-divider 105.29 KB 105.29 KB 🟰
sl-drawer 106.02 KB 106.02 KB 🟰
sl-dropdown 106.22 KB 106.22 KB 🟰
sl-format-bytes 106.02 KB 106.02 KB 🟰
sl-format-date 106.02 KB 106.02 KB 🟰
sl-format-number 106.02 KB 106.02 KB 🟰
sl-icon 105.28 KB 105.28 KB 🟰
sl-icon-button 105.29 KB 105.29 KB 🟰
sl-image-comparer 106.03 KB 106.03 KB 🟰
sl-input 106.02 KB 106.02 KB 🟰
sl-menu 106.22 KB 106.22 KB 🟰
sl-menu-item 106.22 KB 106.22 KB 🟰
sl-menu-label 105.33 KB 105.29 KB
sl-mutation-observer 105.29 KB 105.29 KB 🟰
sl-option 106.02 KB 106.02 KB 🟰
sl-popup 106.22 KB 106.22 KB 🟰
sl-progress-bar 106.03 KB 106.03 KB 🟰
sl-progress-ring 106.02 KB 106.02 KB 🟰
sl-qr-code 109.96 KB 109.96 KB 🟰
sl-radio 105.29 KB 105.29 KB 🟰
sl-radio-button 105.29 KB 105.29 KB 🟰
sl-radio-group 105.29 KB 105.29 KB 🟰
sl-range 106.02 KB 106.02 KB 🟰
sl-rating 106.02 KB 106.02 KB 🟰
sl-relative-time 106.02 KB 106.02 KB 🟰
sl-resize-observer 105.29 KB 105.29 KB 🟰
sl-select 106.22 KB 106.22 KB 🟰
sl-skeleton 105.29 KB 105.29 KB 🟰
sl-spinner 106.02 KB 106.02 KB 🟰
sl-split-panel 106.02 KB 106.02 KB 🟰
sl-switch 105.28 KB 105.28 KB 🟰
sl-tab 106.03 KB 106.03 KB 🟰
sl-tab-group 106.03 KB 106.03 KB 🟰
sl-tab-panel 106.03 KB 106.03 KB 🟰
sl-tag 106.01 KB 106.01 KB 🟰
sl-textarea 105.29 KB 105.29 KB 🟰
sl-tooltip 106.23 KB 106.23 KB 🟰
sl-tree 106.02 KB 106.02 KB 🟰
sl-tree-item 106.02 KB 106.02 KB 🟰
sl-visually-hidden 105.29 KB 105.29 KB 🟰
visual-builder.batch-update-raw-data-generated-view 7.47 KB 7.59 KB 🔼 +0.12 KB
visual-builder.chat-conversation 326.89 KB 327 KB 🔼 +0.11 KB
visual-builder.chat-preview 69.53 KB 69.64 KB 🔼 +0.11 KB
visual-builder.check-editor-by-name 7.09 KB 7.21 KB 🔼 +0.12 KB
visual-builder.contract-select 166.65 KB 168.42 KB 🔺 +1.77 KB
visual-builder.generate-snippets-context-menu 279.09 KB 279.19 KB 🔼 +0.1 KB
visual-builder.get-config-by-data-for-ai 8.4 KB New
visual-builder.get-data-deps 7.1 KB 7.22 KB 🔼 +0.12 KB
visual-builder.get-dependency-tree 7.48 KB 7.59 KB 🔼 +0.11 KB
visual-builder.get-raw-data-system-prompts 11.45 KB 11.81 KB 🔼 +0.36 KB
visual-builder.inject-chat-preview-agent 8.06 KB 8.17 KB 🔼 +0.11 KB
visual-builder.page-arch-node 269.41 KB 269.53 KB 🔼 +0.12 KB
visual-builder.parse-path 8.72 KB 8.84 KB 🔼 +0.12 KB
visual-builder.pre-generated-config 78.3 KB New
visual-builder.pre-generated-config-preview 75.4 KB New
visual-builder.pre-generated-container 69.89 KB 70.02 KB 🔼 +0.13 KB
visual-builder.pre-generated-preview 69.51 KB 69.62 KB 🔼 +0.11 KB
visual-builder.pre-generated-table-view 67.12 KB 67.24 KB 🔼 +0.12 KB
visual-builder.property-editor 1,406.64 KB 1,406.72 KB
visual-builder.raw-data-preview 72.63 KB 78.7 KB 🔺 +6.07 KB
visual-builder.workbench-action 268.18 KB 268.29 KB 🔼 +0.11 KB
visual-builder.workbench-action-list 273.61 KB 273.72 KB 🔼 +0.11 KB
visual-builder.workbench-history-action 288.85 KB 288.96 KB 🔼 +0.11 KB
visual-builder.workbench-pane 133.29 KB 133.4 KB 🔼 +0.11 KB
visual-builder.workbench-sidebar 68 KB 68.12 KB 🔼 +0.12 KB
visual-builder.workbench-tree 273.65 KB 273.77 KB 🔼 +0.12 KB
vs.code-editor 1,121.87 KB 1,121.88 KB
Critical details for brick eo-checkbox
Name Prev Now Diff
form/dist/chunks/1045.a9ea1f1b.js 2.51 KB New
form/dist/chunks/8548.66dd7965.js 0.83 KB New
form/dist/index.4ac47ef2.js 6.11 KB New
form/dist/index.a78e64c5.js 6.1 KB Del
icons/dist/chunks/114.11316303.js 1.59 KB Del
icons/dist/chunks/144.35eed58e.js 50.06 KB Del
icons/dist/chunks/41.0c1ecdf2.js 3.54 KB Del
icons/dist/chunks/45.f857a51b.js 2.51 KB Del
Critical details for brick eo-date-picker
Name Prev Now Diff
form/dist/chunks/1045.a9ea1f1b.js 2.51 KB New
form/dist/chunks/8548.66dd7965.js 0.83 KB New
form/dist/index.4ac47ef2.js 6.11 KB New
form/dist/index.a78e64c5.js 6.1 KB Del
icons/dist/chunks/114.11316303.js 1.59 KB Del
icons/dist/chunks/144.35eed58e.js 50.06 KB Del
icons/dist/chunks/41.0c1ecdf2.js 3.54 KB Del
icons/dist/chunks/45.f857a51b.js 2.51 KB Del
Critical details for brick eo-input
Name Prev Now Diff
form/dist/chunks/1045.a9ea1f1b.js 2.51 KB New
form/dist/chunks/8548.66dd7965.js 0.83 KB New
form/dist/index.4ac47ef2.js 6.11 KB New
form/dist/index.a78e64c5.js 6.1 KB Del
icons/dist/chunks/114.11316303.js 1.59 KB Del
icons/dist/chunks/144.35eed58e.js 50.06 KB Del
icons/dist/chunks/41.0c1ecdf2.js 3.54 KB Del
icons/dist/chunks/45.f857a51b.js 2.51 KB Del
Critical details for brick eo-radio
Name Prev Now Diff
form/dist/chunks/1045.a9ea1f1b.js 2.51 KB Del
form/dist/chunks/8548.66dd7965.js 0.83 KB Del
form/dist/index.4ac47ef2.js 6.11 KB New
form/dist/index.a78e64c5.js 6.1 KB Del
icons/dist/chunks/114.11316303.js 1.59 KB New
icons/dist/chunks/144.35eed58e.js 50.06 KB New
icons/dist/chunks/41.0c1ecdf2.js 3.54 KB New
icons/dist/chunks/45.f857a51b.js 2.51 KB New
Critical details for brick form.general-input
Name Prev Now Diff
form/dist/chunks/1045.a9ea1f1b.js 2.51 KB New
form/dist/chunks/8548.66dd7965.js 0.83 KB New
form/dist/index.4ac47ef2.js 6.11 KB New
form/dist/index.a78e64c5.js 6.1 KB Del
icons/dist/chunks/114.11316303.js 1.59 KB Del
icons/dist/chunks/144.35eed58e.js 50.06 KB Del
icons/dist/chunks/41.0c1ecdf2.js 3.54 KB Del
icons/dist/chunks/45.f857a51b.js 2.51 KB Del
Critical details for brick form.general-radio
Name Prev Now Diff
form/dist/chunks/1045.a9ea1f1b.js 2.51 KB New
form/dist/chunks/8548.66dd7965.js 0.83 KB New
form/dist/index.4ac47ef2.js 6.11 KB New
form/dist/index.a78e64c5.js 6.1 KB Del
icons/dist/chunks/114.11316303.js 1.59 KB Del
icons/dist/chunks/144.35eed58e.js 50.06 KB Del
icons/dist/chunks/41.0c1ecdf2.js 3.54 KB Del
icons/dist/chunks/45.f857a51b.js 2.51 KB Del
Critical details for brick form.general-search
Name Prev Now Diff
form/dist/chunks/1045.a9ea1f1b.js 2.51 KB Del
form/dist/chunks/8548.66dd7965.js 0.83 KB Del
form/dist/index.4ac47ef2.js 6.11 KB New
form/dist/index.a78e64c5.js 6.1 KB Del
icons/dist/chunks/114.11316303.js 1.59 KB New
icons/dist/chunks/144.35eed58e.js 50.06 KB New
icons/dist/chunks/41.0c1ecdf2.js 3.54 KB New
icons/dist/chunks/45.f857a51b.js 2.51 KB New
Critical details for brick visual-builder.contract-select
Name Prev Now Diff
form/dist/chunks/1045.a9ea1f1b.js 2.51 KB Del
form/dist/chunks/8548.66dd7965.js 0.83 KB Del
form/dist/chunks/react.aa821fb3.js 55.24 KB Del
form/dist/index.4ac47ef2.js 6.11 KB New
form/dist/index.a78e64c5.js 6.1 KB Del
visual-builder/dist/chunks/1045.f6e80fec.js 2.51 KB New
visual-builder/dist/chunks/114.aaa7c484.js 1.6 KB New
visual-builder/dist/chunks/3144.0096b9c3.js 50.06 KB New
visual-builder/dist/chunks/4041.468489fa.js 3.55 KB New
visual-builder/dist/chunks/4837.b122ae40.js 2.5 KB New
visual-builder/dist/index.004e3207.js 6.47 KB Del
visual-builder/dist/index.43083b10.js 6.59 KB New
Critical details for brick visual-builder.raw-data-preview
Name Prev Now Diff
visual-builder/dist/chunks/1304.a8196a2e.js 7.07 KB New
visual-builder/dist/chunks/raw-data-preview.39456503.js 8.44 KB Del
visual-builder/dist/chunks/raw-data-preview.7b191fed.js 7.32 KB New
visual-builder/dist/index.004e3207.js 6.47 KB Del
visual-builder/dist/index.43083b10.js 6.59 KB New

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.

1 participant