Skip to content

chore(deps): Update dependency prettier to ^3.8.1#190

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/prettier-3.x
Open

chore(deps): Update dependency prettier to ^3.8.1#190
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/prettier-3.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jun 25, 2025

This PR contains the following updates:

Package Change Age Confidence
prettier (source) ^3.5.3^3.8.1 age confidence

Release Notes

prettier/prettier (prettier)

v3.8.1

Compare Source

v3.8.0

Compare Source

diff

🔗 Release note

v3.7.4

Compare Source

diff

LWC: Avoid quote around interpolations (#​18383 by @​kovsu)
<!-- Input -->
<div foo={bar}>   </div>

<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>

<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>
TypeScript: Fix comment inside union type gets duplicated (#​18393 by @​fisker)
// Input
type Foo = (/** comment */ a | b) | c;

// Prettier 3.7.3
type Foo = /** comment */ (/** comment */ a | b) | c;

// Prettier 3.7.4
type Foo = /** comment */ (a | b) | c;
TypeScript: Fix unstable comment print in union type comments (#​18395 by @​fisker)
// Input
type X = (A | B) & (
  // comment
  A | B
);

// Prettier 3.7.3 (first format)
type X = (A | B) &
  (// comment
  A | B);

// Prettier 3.7.3 (second format)
type X = (
  | A
  | B // comment
) &
  (A | B);

// Prettier 3.7.4
type X = (A | B) &
  // comment
  (A | B);

v3.7.3

Compare Source

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#​18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

v3.7.2

Compare Source

diff

JavaScript: Fix string print when switching quotes (#​18351 by @​fisker)
// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")

// Prettier 3.7.1
console.log('A descriptor\\'s .kind must be "method" or "field".');

// Prettier 3.7.2
console.log('A descriptor\\\'s .kind must be "method" or "field".');
JavaScript: Preserve quote for embedded HTML attribute values (#​18352 by @​kovsu)
// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;

// Prettier 3.7.1
const html = /* HTML */ ` <div class=${styles.banner}></div> `;

// Prettier 3.7.2
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
TypeScript: Fix comment in empty type literal (#​18364 by @​fisker)
// Input
export type XXX = {
  // tbd
};

// Prettier 3.7.1
export type XXX = { // tbd };

// Prettier 3.7.2
export type XXX = {
  // tbd
};

v3.7.1

Compare Source

diff

API: Fix performance regression in doc printer (#​18342 by @​fisker)

Prettier 3.7.1 can be very slow when formatting big files, the regression has been fixed.

v3.7.0

Compare Source

diff

🔗 Release Notes

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@codecov
Copy link
Copy Markdown

codecov bot commented Jun 25, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 76.29%. Comparing base (2670992) to head (2b04441).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #190   +/-   ##
=======================================
  Coverage   76.29%   76.29%           
=======================================
  Files         642      642           
  Lines       19815    19815           
  Branches     3060     3060           
=======================================
  Hits        15117    15117           
  Misses       4112     4112           
  Partials      586      586           
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions
Copy link
Copy Markdown

github-actions bot commented Jun 25, 2025

@github-actions github-actions bot temporarily deployed to pull request June 25, 2025 03:18 Inactive
@github-actions
Copy link
Copy Markdown

github-actions bot commented Jun 25, 2025

📐🤏 Size check result (2670992...7e7b159):

See full diff

Load all bricks together

Name Prev Now Diff
All bricks 5,426.92 KB 5,426.86 KB

Critical changes: None.

See full changes
Name Prev Now Diff
<core> 324.71 KB 324.75 KB
<react> 55.05 KB 55.05 KB 🟰
advanced 539.49 KB 539.51 KB
ai 289.16 KB 289.16 KB 🟰
ai-portal 476.84 KB 476.76 KB
api-market 10.6 KB 10.6 KB 🟰
basic 102.43 KB 102.43 KB 🟰
containers 97.56 KB 97.56 KB 🟰
data-view 643.35 KB 643.36 KB
diagram 185.38 KB 185.39 KB
form 326.78 KB 326.83 KB
form-platform 133.2 KB 133.19 KB
icons 85.72 KB 85.72 KB 🟰
illustrations 17.44 KB 17.44 KB 🟰
inject 56.25 KB 56.25 KB 🟰
markdown 313.99 KB 313.95 KB
mini-chart 16.1 KB 16.1 KB 🟰
nav 224.18 KB 224.24 KB
presentational 193.97 KB 193.97 KB 🟰
recent-history 33.17 KB 33.17 KB 🟰
shoelace 196.12 KB 196.09 KB
visual-builder 474.56 KB 474.49 KB
vs 955.57 KB 955.57 KB 🟰

Load bricks by each package

Critical changes: None.

See full changes
Name Prev Now Diff
advanced 874.78 KB 874.76 KB
ai 618.51 KB 618.55 KB
ai-portal 1,096.08 KB 1,095.92 KB ↓ -0.16 KB
api-market 351.84 KB 351.84 KB 🟰
basic 389 KB 389 KB 🟰
containers 274.8 KB 274.8 KB 🟰
data-view 819.81 KB 819.83 KB
diagram 268.45 KB 268.51 KB
form 646.91 KB 646.99 KB
form-platform 454.04 KB 454.04 KB 🟰
icons 143.32 KB 143.32 KB 🟰
illustrations 163.28 KB 163.28 KB 🟰
inject 56.25 KB 56.25 KB 🟰
markdown 521.55 KB 521.52 KB
mini-chart 81.69 KB 81.69 KB 🟰
nav 598.61 KB 598.63 KB
presentational 522.21 KB 522.21 KB 🟰
recent-history 332.66 KB 332.64 KB
shoelace 196.09 KB 196.13 KB
visual-builder 1,797.16 KB 1,797.11 KB
vs 1,270.41 KB 1,270.43 KB
widget-editors 0 KB 0 KB 🟰

Load by each brick

Critical changes:

Name Prev Now Diff
eo-auto-complete 222.33 KB 168.08 KB 🟢 -54.25 KB
eo-date-picker 304.23 KB 358.49 KB 🔺 +54.26 KB
form.general-input 161.99 KB 216.23 KB 🔺 +54.24 KB
form.general-search 166.09 KB 220.33 KB 🔺 +54.24 KB
form.general-switch 221.76 KB 167.52 KB 🟢 -54.24 KB
visual-builder.contract-select 189.13 KB 190.93 KB 🔺 +1.8 KB
See full changes
Name Prev Now Diff
advanced.capture-snapshot 52.36 KB 52.36 KB 🟰
advanced.general-cascader 289.19 KB 289.22 KB
advanced.general-table 400.9 KB 400.88 KB
advanced.pdf-viewer 201 KB 201 KB 🟰
ai-portal.action-buttons 184.88 KB 184.88 KB 🟰
ai-portal.activity-timeline 307.39 KB 307.39 KB 🟰
ai-portal.ai-agents 300.84 KB 300.8 KB
ai-portal.ai-employees 308.49 KB 308.5 KB
ai-portal.blank-state 68.73 KB 68.73 KB 🟰
ai-portal.call-tool 8.27 KB 8.27 KB 🟰
ai-portal.chat-box 330.83 KB 330.83 KB 🟰
ai-portal.chat-input 330.85 KB 330.85 KB 🟰
ai-portal.chat-panel 626.01 KB 625.98 KB
ai-portal.chat-panel-welcome 154.45 KB 154.54 KB
ai-portal.chat-stream 637.59 KB 637.55 KB
ai-portal.clear-request-store 8.24 KB 8.24 KB 🟰
ai-portal.cruise-canvas 676.82 KB 676.82 KB 🟰
ai-portal.dropdown-select 370.14 KB 370.18 KB
ai-portal.elevo-card 300.3 KB 300.31 KB
ai-portal.elevo-logo 68.2 KB 68.2 KB 🟰
ai-portal.elevo-sidebar 334.47 KB 334.48 KB
ai-portal.flow-tabs 73 KB 73 KB 🟰
ai-portal.goal-card-list 319.79 KB 319.79 KB 🟰
ai-portal.home-container 68.82 KB 68.82 KB 🟰
ai-portal.icon-button 299.96 KB 299.96 KB 🟰
ai-portal.load-request-store 8.24 KB 8.24 KB 🟰
ai-portal.mcp-tools 163.36 KB 163.46 KB 🔼 +0.1 KB
ai-portal.notice-dropdown 312.7 KB 312.7 KB 🟰
ai-portal.notice-list 350.58 KB 350.6 KB
ai-portal.page-container 303.64 KB 303.63 KB
ai-portal.preview-container 254.91 KB 254.91 KB 🟰
ai-portal.project-conversations 319.91 KB 319.89 KB
ai-portal.project-knowledges 319.44 KB 319.44 KB 🟰
ai-portal.running-flow 156.23 KB 156.32 KB
ai-portal.save-request-store 8.24 KB 8.24 KB 🟰
ai-portal.set-chat-command 8.2 KB 8.2 KB 🟰
ai-portal.set-chat-mentioned-employee 8.21 KB 8.21 KB 🟰
ai-portal.show-case 300.29 KB 300.29 KB 🟰
ai-portal.show-cases 308.17 KB 308.14 KB
ai-portal.space-chat-guide 77.57 KB 77.57 KB 🟰
ai-portal.space-logo 68.69 KB 68.69 KB 🟰
ai-portal.space-workbench 822.84 KB 822.73 KB ↓ -0.11 KB
ai-portal.stage-flow 325.48 KB 325.48 KB 🟰
ai-portal.stat-with-mini-chart 93.51 KB 93.51 KB 🟰
ai-portal.sticky-container 68.78 KB 68.78 KB 🟰
ai-portal.tab-list 69.22 KB 69.22 KB 🟰
ai.chat-agent 67.7 KB 67.7 KB 🟰
ai.chat-view 613.69 KB 613.74 KB
api-market.apis-directory-tree 351.84 KB 351.88 KB
basic.active-element-blur 8.62 KB 8.62 KB 🟰
basic.change-language 8.61 KB 8.61 KB 🟰
basic.copy-to-clipboard 8.77 KB 8.77 KB 🟰
basic.dropdown-button 301.72 KB 301.72 KB 🟰
basic.general-button 173.18 KB 173.18 KB 🟰
basic.general-image 167.66 KB 167.66 KB 🟰
basic.general-link 288.25 KB 288.25 KB 🟰
basic.general-menu 78.02 KB 78.02 KB 🟰
basic.general-menu-item 164.02 KB 164.02 KB 🟰
basic.general-popover 195.01 KB 194.99 KB
basic.general-tag 165.99 KB 165.99 KB 🟰
basic.general-tag-list 168.08 KB 168.08 KB 🟰
basic.general-text 318.31 KB 318.29 KB
basic.get-language 8.6 KB 8.6 KB 🟰
basic.home-redirect 23.28 KB 23.28 KB 🟰
basic.http-proxy-request 8.68 KB 8.68 KB 🟰
basic.http-request 8.6 KB 8.6 KB 🟰
basic.lock-body-scroll 22.97 KB 22.97 KB 🟰
basic.require-modal-stack 8.69 KB 8.69 KB 🟰
basic.set-theme-by-apps 8.62 KB 8.62 KB 🟰
basic.set-timeout 8.62 KB 8.62 KB 🟰
basic.show-dialog 306.09 KB 306.09 KB 🟰
basic.show-notification 288.25 KB 288.23 KB
basic.show-watermark 10.35 KB 10.35 KB 🟰
basic.v3-widget-mate 8.59 KB 8.59 KB 🟰
containers.easy-view 67.03 KB 67.03 KB 🟰
containers.flex-layout 66.76 KB 66.76 KB 🟰
containers.general-card 184.89 KB 184.89 KB 🟰
containers.general-category 67.4 KB 67.4 KB 🟰
containers.general-drawer 178.17 KB 178.14 KB
containers.general-modal 186.96 KB 186.96 KB 🟰
containers.grid-layout 67.85 KB 67.85 KB 🟰
containers.micro-view 87.6 KB 87.6 KB 🟰
containers.search-bar 66.89 KB 66.89 KB 🟰
containers.tab-group 72.1 KB 72.1 KB 🟰
containers.tab-item 179.17 KB 179.17 KB 🟰
containers.tab-list 179.17 KB 179.17 KB 🟰
data-view.app-wall-card-item 70.05 KB 70.05 KB 🟰
data-view.app-wall-relation-line 69.73 KB 69.73 KB 🟰
data-view.app-wall-system-card 155.9 KB 155.9 KB 🟰
data-view.basic-index-group 69.32 KB 69.32 KB 🟰
data-view.battery-chart 70.06 KB 70.06 KB 🟰
data-view.brick-notification 154.99 KB 154.99 KB 🟰
data-view.bubbles-indicator 188.49 KB 188.49 KB 🟰
data-view.cabinet-app-layer 69.73 KB 69.73 KB 🟰
data-view.cabinet-button 69.31 KB 69.31 KB 🟰
data-view.cabinet-container 79.57 KB 79.57 KB 🟰
data-view.cabinet-graph 93.73 KB 93.73 KB 🟰
data-view.cabinet-node 70.13 KB 70.13 KB 🟰
data-view.cabinet-thumbnail 83.42 KB 83.42 KB 🟰
data-view.china-map 167.36 KB 167.45 KB
data-view.china-map-chart 379.09 KB 379.17 KB
data-view.complex-search 167.62 KB 167.62 KB 🟰
data-view.crystal-ball-indicator 182.89 KB 182.89 KB 🟰
data-view.data-display-flipper 69.26 KB 69.26 KB 🟰
data-view.data-display-flipper-fifth 69.13 KB 69.13 KB 🟰
data-view.data-display-flipper-sixth 69 KB 69 KB 🟰
data-view.dropdown-menu 157.09 KB 157.09 KB 🟰
data-view.gauge-chart 70.18 KB 70.18 KB 🟰
data-view.gear-background 115.28 KB 115.28 KB 🟰
data-view.globe-with-gear-indicator 233.76 KB 233.76 KB 🟰
data-view.globe-with-halo-indicator 183.92 KB 183.92 KB 🟰
data-view.globe-with-orbit-indicator 183.75 KB 183.75 KB 🟰
data-view.graph-layout-grid 86.49 KB 86.49 KB 🟰
data-view.graph-node 69.17 KB 69.17 KB 🟰
data-view.graph-text 77.66 KB 77.66 KB 🟰
data-view.grid-background 104.43 KB 104.43 KB 🟰
data-view.hi-tech-button 69.96 KB 69.96 KB 🟰
data-view.indicator-card 69.44 KB 69.44 KB 🟰
data-view.lights-component-title 68.86 KB 68.86 KB 🟰
data-view.loading-panel 73.22 KB 73.22 KB 🟰
data-view.modern-style-component-title 69.94 KB 69.94 KB 🟰
data-view.modern-style-page-title 70.01 KB 70.01 KB 🟰
data-view.modern-style-treemap 80.47 KB 80.47 KB 🟰
data-view.particle-animation 69.86 KB 69.86 KB 🟰
data-view.progress-bar-list 72 KB 72 KB 🟰
data-view.radar-chart 70.91 KB 70.91 KB 🟰
data-view.simple-card-item 69.54 KB 69.54 KB 🟰
data-view.tabs-drawer 156.94 KB 157.03 KB
data-view.tabs-page-title 72.08 KB 72.08 KB 🟰
data-view.tech-mesh-base-view 68.43 KB 68.43 KB 🟰
data-view.title-text 69.63 KB 69.63 KB 🟰
data-view.top-title-bar 81.02 KB 81.02 KB 🟰
diagram.editable-label 67.63 KB 67.63 KB 🟰
diagram.experimental-node 67.09 KB 67.09 KB 🟰
eo-actions 298.54 KB 298.54 KB 🟰
eo-alert 159.5 KB 159.49 KB
eo-antd-icon 143.32 KB 143.32 KB 🟰
eo-app-bar-wrapper 68.04 KB 68.04 KB 🟰
eo-auto-complete 222.33 KB 168.08 KB 🟢 -54.25 KB
eo-avatar 279.14 KB 279.18 KB
eo-avatar-group 278.04 KB 278 KB
eo-banner 95.59 KB 95.59 KB 🟰
eo-batch-agent 22.94 KB 22.94 KB 🟰
eo-breadcrumb 290.35 KB 290.35 KB 🟰
eo-breadcrumb-item 289.93 KB 289.91 KB
eo-broadcast-channel 78.41 KB 78.41 KB 🟰
eo-button 173.18 KB 173.18 KB 🟰
eo-card 184.89 KB 184.89 KB 🟰
eo-card-item 319.95 KB 319.97 KB
eo-carousel-text 75.56 KB 75.56 KB 🟰
eo-cascader 289.19 KB 289.22 KB
eo-category 67.4 KB 67.4 KB 🟰
eo-checkbox 177.61 KB 177.61 KB 🟰
eo-cmdb-instance-select 204.12 KB 204.14 KB
eo-code-block 242.5 KB 242.5 KB 🟰
eo-code-display 373.08 KB 373.08 KB 🟰
eo-color-picker 240.41 KB 240.42 KB
eo-content-layout 66.32 KB 66.32 KB 🟰
eo-context-menu 301.59 KB 301.57 KB
eo-counter-badge 164.7 KB 164.7 KB 🟰
eo-current-time 158.17 KB 158.17 KB 🟰
eo-date-picker 304.23 KB 358.49 KB 🔺 +54.26 KB
eo-descriptions 206.58 KB 206.58 KB 🟰
eo-diagram 122.43 KB 122.43 KB 🟰
eo-directory 299.61 KB 299.57 KB
eo-directory-tree 188.76 KB 188.76 KB 🟰
eo-directory-tree-internal-node 154.56 KB 154.56 KB 🟰
eo-directory-tree-leaf 153.85 KB 153.85 KB 🟰
eo-display-canvas 224.21 KB 224.22 KB
eo-divider 73.39 KB 73.39 KB 🟰
eo-draw-canvas 243.78 KB 243.79 KB
eo-drawer 178.17 KB 178.14 KB
eo-dropdown-actions 300.2 KB 300.2 KB 🟰
eo-dropdown-button 301.72 KB 301.72 KB 🟰
eo-dropdown-select 286.95 KB 286.95 KB 🟰
eo-dynamic-form-item 211.23 KB 211.23 KB 🟰
eo-easy-view 67.03 KB 67.03 KB 🟰
eo-easyops-avatar 281.13 KB 281.1 KB
eo-easyops-icon 143.32 KB 143.32 KB 🟰
eo-event-agent 22.87 KB 22.87 KB 🟰
eo-fa-icon 143.32 KB 143.32 KB 🟰
eo-flex-layout 66.76 KB 66.76 KB 🟰
eo-form 70.02 KB 70.02 KB 🟰
eo-form-item 76.27 KB 76.27 KB 🟰
eo-formatter-number 78.48 KB 78.48 KB 🟰
eo-frame-breadcrumb 302.26 KB 302.3 KB
eo-grid-layout 67.85 KB 67.85 KB 🟰
eo-humanize-time 304.75 KB 304.77 KB
eo-icon 143.32 KB 143.32 KB 🟰
eo-icon-select 232.73 KB 232.73 KB 🟰
eo-iframe 78.47 KB 78.47 KB 🟰
eo-illustration-message 159.08 KB 159.08 KB 🟰
eo-image 167.66 KB 167.66 KB 🟰
eo-img-icon 143.32 KB 143.32 KB 🟰
eo-info-card-item 304.94 KB 304.93 KB
eo-input 216.23 KB 216.23 KB 🟰
eo-launchpad-button 326.35 KB 326.33 KB
eo-launchpad-button-v2 342.74 KB 342.74 KB 🟰
eo-launchpad-quick-access 330.55 KB 330.57 KB
eo-launchpad-recent-visits 329.31 KB 329.31 KB 🟰
eo-link 288.23 KB 288.24 KB
eo-list 290.68 KB 290.68 KB 🟰
eo-loading-container 164.18 KB 164.18 KB 🟰
eo-loading-step 185.1 KB 185.09 KB
eo-lucide-icon 143.32 KB 143.32 KB 🟰
eo-main-view 95.59 KB 95.59 KB 🟰
eo-markdown-display 301.24 KB 301.25 KB
eo-markdown-editor 377.15 KB 377.14 KB
eo-menu 78.02 KB 78.02 KB 🟰
eo-menu-group 77.96 KB 77.96 KB 🟰
eo-menu-item 164.02 KB 164.02 KB 🟰
eo-menu-item-sub-menu 164.46 KB 164.46 KB 🟰
eo-message-listener 78.19 KB 78.19 KB 🟰
eo-micro-view 87.6 KB 87.6 KB 🟰
eo-mini-actions 300.76 KB 300.74 KB
eo-mini-line-chart 81.69 KB 81.69 KB 🟰
eo-modal 186.96 KB 186.96 KB 🟰
eo-narrow-view 75.05 KB 75.05 KB 🟰
eo-nav-menu 346.27 KB 346.27 KB 🟰
eo-next-table 543.7 KB 543.76 KB
eo-page-title 78.16 KB 78.16 KB 🟰
eo-page-view 75.05 KB 75.05 KB 🟰
eo-pagination 327.01 KB 326.99 KB
eo-popover 194.99 KB 194.99 KB 🟰
eo-popup 167.58 KB 167.6 KB
eo-radio 224.88 KB 224.88 KB 🟰
eo-resizable-box 68.74 KB 68.74 KB 🟰
eo-search 166.09 KB 166.09 KB 🟰
eo-search-bar 66.89 KB 66.89 KB 🟰
eo-search-launchpad 333.41 KB 333.41 KB 🟰
eo-select 365.45 KB 365.48 KB
eo-sidebar 330.49 KB 330.49 KB 🟰
eo-sidebar-menu 313.96 KB 313.96 KB 🟰
eo-sidebar-menu-group 313.96 KB 313.96 KB 🟰
eo-sidebar-menu-item 298.85 KB 298.83 KB
eo-sidebar-menu-submenu 313.96 KB 313.96 KB 🟰
eo-sidebar-sub-menu 304.8 KB 304.81 KB
eo-spin 67.21 KB 67.21 KB 🟰
eo-statistics-card 159.37 KB 159.37 KB 🟰
eo-submit-buttons 195.59 KB 195.58 KB
eo-svg-icon 143.32 KB 143.32 KB 🟰
eo-switch 167.52 KB 167.52 KB 🟰
eo-tab-group 72.1 KB 72.1 KB 🟰
eo-tab-item 179.17 KB 179.17 KB 🟰
eo-tab-list 179.17 KB 179.17 KB 🟰
eo-table 400.95 KB 400.98 KB
eo-tag 165.99 KB 165.99 KB 🟰
eo-tag-list 168.08 KB 168.08 KB 🟰
eo-text 318.28 KB 318.27 KB
eo-text-tooltip 139.37 KB 139.39 KB
eo-textarea 86.18 KB 86.18 KB 🟰
eo-time-picker 214.63 KB 214.65 KB
eo-time-range-picker 357.64 KB 357.7 KB
eo-toggle-link 289.49 KB 289.47 KB
eo-tooltip 288.27 KB 288.23 KB
eo-tree 138.44 KB 138.46 KB
eo-tree-select 302.09 KB 302.11 KB
eo-upload-file 322.78 KB 322.78 KB 🟰
eo-upload-image 212.56 KB 212.56 KB 🟰
eo-user-or-user-group-select 333.35 KB 333.34 KB
eo-viewport 78.34 KB 78.34 KB 🟰
eo-workbench-layout 370.92 KB 370.92 KB 🟰
eo-workbench-layout-v2 376.92 KB 376.92 KB 🟰
form.dynamic-form-item 211.23 KB 211.23 KB 🟰
form.general-checkbox 177.61 KB 177.61 KB 🟰
form.general-form 70.02 KB 70.02 KB 🟰
form.general-form-item 76.27 KB 76.27 KB 🟰
form.general-input 161.99 KB 216.23 KB 🔺 +54.24 KB
form.general-radio 224.88 KB 224.88 KB 🟰
form.general-search 166.09 KB 220.33 KB 🔺 +54.24 KB
form.general-select 365.45 KB 365.48 KB
form.general-switch 221.76 KB 167.52 KB 🟢 -54.24 KB
form.general-textarea 86.18 KB 86.18 KB 🟰
form.icon-select 232.73 KB 232.73 KB 🟰
form.submit-buttons 195.59 KB 195.58 KB
form.upload-image 212.56 KB 212.56 KB 🟰
icons.antd-icon 143.32 KB 143.32 KB 🟰
icons.easyops-icon 143.32 KB 143.32 KB 🟰
icons.fa-icon 143.32 KB 143.32 KB 🟰
icons.general-icon 143.32 KB 143.32 KB 🟰
icons.get-antd-icons 143.32 KB 143.32 KB 🟰
icons.get-easyops-icons 143.32 KB 143.32 KB 🟰
icons.get-fa-icons 143.32 KB 143.32 KB 🟰
icons.get-libs 143.32 KB 143.32 KB 🟰
icons.get-lucide-icons 143.32 KB 143.32 KB 🟰
icons.search-icons 143.32 KB 143.32 KB 🟰
illustrations.error-message 159.08 KB 159.08 KB 🟰
illustrations.get-illustration 9.24 KB 9.24 KB 🟰
illustrations.get-illustrations-by-category 6.02 KB 6.02 KB 🟰
illustrations.loading-transition 66.55 KB 66.55 KB 🟰
illustrations.translate-illustration-config 9.24 KB 9.24 KB 🟰
inject.visual-builder-preview-agent 56.25 KB 56.25 KB 🟰
markdown.markdown-editor 377.16 KB 377.17 KB
nav.app-bar-wrapper 68.04 KB 68.04 KB 🟰
nav.easyops-navbar-alerts 298.79 KB 298.79 KB 🟰
nav.get-menu-config-options 7.9 KB 7.9 KB 🟰
nav.get-menu-config-tree 8.39 KB 8.39 KB 🟰
nav.launchpad-config 331.26 KB 331.3 KB
nav.nav-logo 297.84 KB 297.84 KB 🟰
nav.poll-announce 308.45 KB 308.45 KB 🟰
nav.query-search 418.2 KB 418.25 KB
presentational.code-block 242.5 KB 242.5 KB 🟰
presentational.code-display 373.08 KB 373.12 KB
presentational.code-wrapper 189.72 KB 189.71 KB
presentational.general-alert 159.6 KB 159.49 KB ↓ -0.11 KB
presentational.general-descriptions 206.58 KB 206.58 KB 🟰
presentational.humanize-time 304.75 KB 304.75 KB 🟰
recent-history.clear-history 28.97 KB 28.97 KB 🟰
recent-history.get-all-history 28.97 KB 28.97 KB 🟰
recent-history.push-history 28.97 KB 28.97 KB 🟰
recent-history.recent-visit 331.55 KB 331.55 KB 🟰
sl-alert 115.05 KB 115.05 KB 🟰
sl-animated-image 114.05 KB 114.05 KB 🟰
sl-animation 117.41 KB 117.41 KB 🟰
sl-avatar 114.05 KB 114.05 KB 🟰
sl-badge 114.05 KB 114.05 KB 🟰
sl-breadcrumb 114.85 KB 114.85 KB 🟰
sl-breadcrumb-item 114.85 KB 114.85 KB 🟰
sl-button 114.84 KB 114.84 KB 🟰
sl-button-group 114.05 KB 114.05 KB 🟰
sl-card 114.05 KB 114.05 KB 🟰
sl-carousel 114.84 KB 114.84 KB 🟰
sl-carousel-item 114.84 KB 114.84 KB 🟰
sl-checkbox 114.05 KB 114.05 KB 🟰
sl-color-picker 120.1 KB 120.1 KB 🟰
sl-details 114.83 KB 114.83 KB 🟰
sl-dialog 115.05 KB 115.05 KB 🟰
sl-divider 114.05 KB 114.05 KB 🟰
sl-drawer 114.84 KB 114.84 KB 🟰
sl-dropdown 115.04 KB 115.04 KB 🟰
sl-format-bytes 114.84 KB 114.84 KB 🟰
sl-format-date 114.83 KB 114.83 KB 🟰
sl-format-number 114.83 KB 114.83 KB 🟰
sl-icon 114.05 KB 114.05 KB 🟰
sl-icon-button 114.05 KB 114.05 KB 🟰
sl-image-comparer 114.84 KB 114.84 KB 🟰
sl-input 114.83 KB 114.83 KB 🟰
sl-menu 115.05 KB 115.05 KB 🟰
sl-menu-item 115.05 KB 115.05 KB 🟰
sl-menu-label 114.05 KB 114.05 KB 🟰
sl-mutation-observer 114.06 KB 114.06 KB 🟰
sl-option 114.84 KB 114.84 KB 🟰
sl-popup 115.04 KB 115.04 KB 🟰
sl-progress-bar 114.84 KB 114.84 KB 🟰
sl-progress-ring 114.84 KB 114.84 KB 🟰
sl-qr-code 118.74 KB 118.74 KB 🟰
sl-radio 114.05 KB 114.05 KB 🟰
sl-radio-button 114.05 KB 114.05 KB 🟰
sl-radio-group 114.05 KB 114.05 KB 🟰
sl-range 114.84 KB 114.84 KB 🟰
sl-rating 114.84 KB 114.84 KB 🟰
sl-relative-time 114.84 KB 114.84 KB 🟰
sl-resize-observer 114.06 KB 114.06 KB 🟰
sl-select 115.04 KB 115.04 KB 🟰
sl-skeleton 114.05 KB 114.05 KB 🟰
sl-spinner 114.83 KB 114.83 KB 🟰
sl-split-panel 114.84 KB 114.84 KB 🟰
sl-switch 114.05 KB 114.05 KB 🟰
sl-tab 114.84 KB 114.84 KB 🟰
sl-tab-group 114.84 KB 114.84 KB 🟰
sl-tab-panel 114.84 KB 114.84 KB 🟰
sl-tag 114.83 KB 114.83 KB 🟰
sl-textarea 114.05 KB 114.05 KB 🟰
sl-tooltip 115.05 KB 115.05 KB 🟰
sl-tree 114.84 KB 114.84 KB 🟰
sl-tree-item 114.84 KB 114.84 KB 🟰
sl-visually-hidden 114.06 KB 114.06 KB 🟰
visual-builder.batch-update-raw-data-generated-view 8.3 KB 8.3 KB 🟰
visual-builder.chat-conversation 378.79 KB 378.79 KB 🟰
visual-builder.chat-preview 70.37 KB 70.37 KB 🟰
visual-builder.check-editor-by-name 7.91 KB 7.91 KB 🟰
visual-builder.contract-select 189.13 KB 190.93 KB 🔺 +1.8 KB
visual-builder.generate-snippets-context-menu 311.47 KB 311.47 KB 🟰
visual-builder.get-config-by-data-for-ai 9.68 KB 9.68 KB 🟰
visual-builder.get-data-deps 7.92 KB 7.92 KB 🟰
visual-builder.get-dependency-tree 8.29 KB 8.29 KB 🟰
visual-builder.get-raw-data-system-prompts 12.57 KB 12.57 KB 🟰
visual-builder.get-usage-member-statistics 8.17 KB 8.17 KB 🟰
visual-builder.inject-chat-preview-agent 8.86 KB 8.86 KB 🟰
visual-builder.page-arch-node 301.81 KB 301.81 KB 🟰
visual-builder.parse-path 9.54 KB 9.54 KB 🟰
visual-builder.pre-generated-config 80.61 KB 80.61 KB 🟰
visual-builder.pre-generated-config-preview 76 KB 76 KB 🟰
visual-builder.pre-generated-container 70.29 KB 70.29 KB 🟰
visual-builder.pre-generated-preview 70.34 KB 70.34 KB 🟰
visual-builder.pre-generated-table-view 67.92 KB 67.92 KB 🟰
visual-builder.property-editor 1,565.73 KB 1,565.88 KB 🔼 +0.15 KB
visual-builder.raw-data-preview 79.3 KB 79.3 KB 🟰
visual-builder.raw-metric-preview 72.26 KB 72.26 KB 🟰
visual-builder.workbench-action 300.6 KB 300.6 KB 🟰
visual-builder.workbench-action-list 306.05 KB 306.09 KB
visual-builder.workbench-history-action 321.14 KB 321.14 KB 🟰
visual-builder.workbench-pane 155.61 KB 155.61 KB 🟰
visual-builder.workbench-sidebar 68.8 KB 68.8 KB 🟰
visual-builder.workbench-tree 306.05 KB 306.05 KB 🟰
vs.code-editor 1,270.46 KB 1,270.35 KB ↓ -0.11 KB
Critical details for brick eo-auto-complete
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB New
form/dist/chunks/8548.3d64fb28.js 0.83 KB New
form/dist/index.90f748b4.js 6.1 KB Del
form/dist/index.fe867986.js 6.1 KB New
icons/dist/chunks/1045.df225625.js 2.52 KB Del
icons/dist/chunks/114.cf665933.js 1.59 KB Del
icons/dist/chunks/3144.34328f00.js 49.95 KB Del
icons/dist/chunks/4041.975d9db4.js 3.54 KB Del
Critical details for brick eo-date-picker
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB Del
form/dist/chunks/845.2f598dd9.js 83.19 KB Del
form/dist/chunks/845.66ebad07.js 83.21 KB New
form/dist/chunks/8548.3d64fb28.js 0.83 KB Del
form/dist/index.90f748b4.js 6.1 KB Del
form/dist/index.fe867986.js 6.1 KB New
icons/dist/chunks/1045.df225625.js 2.52 KB New
icons/dist/chunks/114.cf665933.js 1.59 KB New
icons/dist/chunks/3144.34328f00.js 49.95 KB New
icons/dist/chunks/4041.975d9db4.js 3.54 KB New
Critical details for brick form.general-input
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB Del
form/dist/chunks/8548.3d64fb28.js 0.83 KB Del
form/dist/index.90f748b4.js 6.1 KB Del
form/dist/index.fe867986.js 6.1 KB New
icons/dist/chunks/1045.df225625.js 2.52 KB New
icons/dist/chunks/114.cf665933.js 1.59 KB New
icons/dist/chunks/3144.34328f00.js 49.95 KB New
icons/dist/chunks/4041.975d9db4.js 3.54 KB New
Critical details for brick form.general-search
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB Del
form/dist/chunks/8548.3d64fb28.js 0.83 KB Del
form/dist/index.90f748b4.js 6.1 KB Del
form/dist/index.fe867986.js 6.1 KB New
icons/dist/chunks/1045.df225625.js 2.52 KB New
icons/dist/chunks/114.cf665933.js 1.59 KB New
icons/dist/chunks/3144.34328f00.js 49.95 KB New
icons/dist/chunks/4041.975d9db4.js 3.54 KB New
Critical details for brick form.general-switch
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB New
form/dist/chunks/8548.3d64fb28.js 0.83 KB New
form/dist/index.90f748b4.js 6.1 KB Del
form/dist/index.fe867986.js 6.1 KB New
icons/dist/chunks/1045.df225625.js 2.52 KB Del
icons/dist/chunks/114.cf665933.js 1.59 KB Del
icons/dist/chunks/3144.34328f00.js 49.95 KB Del
icons/dist/chunks/4041.975d9db4.js 3.54 KB Del
Critical details for brick visual-builder.contract-select
Name Prev Now Diff
form/dist/chunks/1045.7ad43dc1.js 2.52 KB Del
form/dist/chunks/8548.3d64fb28.js 0.83 KB Del
form/dist/chunks/react.2bcc835d.js 55.05 KB Del
form/dist/index.90f748b4.js 6.1 KB Del
form/dist/index.fe867986.js 6.1 KB New
visual-builder/dist/chunks/1045.f6079c60.js 2.53 KB New
visual-builder/dist/chunks/114.be7c654a.js 1.62 KB New
visual-builder/dist/chunks/3144.e5fd4b44.js 50.01 KB New
visual-builder/dist/chunks/4041.3d9fe4ae.js 3.54 KB New
visual-builder/dist/chunks/4837.0ceea0f6.js 2.51 KB New
visual-builder/dist/index.93f39de8.js 7.28 KB Del
visual-builder/dist/index.b3b75925.js 7.28 KB New

@renovate renovate bot force-pushed the renovate/prettier-3.x branch from e7cfa2a to 9c47c35 Compare June 25, 2025 06:47
@renovate renovate bot changed the title chore(deps): Update dependency prettier to ^3.6.0 chore(deps): Update dependency prettier to ^3.6.1 Jun 25, 2025
@github-actions github-actions bot temporarily deployed to pull request June 25, 2025 07:01 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 9c47c35 to d3659e9 Compare June 27, 2025 06:06
@renovate renovate bot changed the title chore(deps): Update dependency prettier to ^3.6.1 chore(deps): Update dependency prettier to ^3.6.2 Jun 27, 2025
@github-actions github-actions bot temporarily deployed to pull request June 27, 2025 06:20 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from d3659e9 to 1c4cbcd Compare July 7, 2025 09:39
@github-actions github-actions bot temporarily deployed to pull request July 7, 2025 09:53 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 1c4cbcd to f24d705 Compare August 10, 2025 14:27
@github-actions github-actions bot temporarily deployed to pull request August 10, 2025 14:41 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from f24d705 to 06cf2f2 Compare August 13, 2025 17:34
@github-actions github-actions bot temporarily deployed to pull request August 13, 2025 17:49 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 06cf2f2 to 11612dc Compare August 19, 2025 11:35
@github-actions github-actions bot temporarily deployed to pull request August 19, 2025 11:43 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 11612dc to dccddc2 Compare August 20, 2025 01:28
@github-actions github-actions bot temporarily deployed to pull request August 20, 2025 01:43 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from dccddc2 to 936d0fb Compare August 25, 2025 05:42
@github-actions github-actions bot temporarily deployed to pull request August 25, 2025 05:56 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 936d0fb to f84d9ad Compare August 27, 2025 01:27
@github-actions github-actions bot temporarily deployed to pull request August 27, 2025 01:42 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from f84d9ad to bd010d4 Compare August 31, 2025 10:57
@github-actions github-actions bot temporarily deployed to pull request August 31, 2025 11:05 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from bd010d4 to 0217f1b Compare September 25, 2025 19:16
@github-actions github-actions bot temporarily deployed to pull request September 25, 2025 19:32 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 0217f1b to a5b9017 Compare September 29, 2025 11:47
@github-actions github-actions bot temporarily deployed to pull request September 29, 2025 12:03 Inactive
@renovate renovate bot changed the title chore(deps): Update dependency prettier to ^3.7.0 chore(deps): Update dependency prettier to ^3.7.1 Nov 27, 2025
@github-actions github-actions bot temporarily deployed to pull request November 27, 2025 12:24 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from f4cefa0 to 8a684be Compare November 28, 2025 22:45
@renovate renovate bot changed the title chore(deps): Update dependency prettier to ^3.7.1 chore(deps): Update dependency prettier to ^3.7.2 Nov 28, 2025
@github-actions github-actions bot temporarily deployed to pull request November 28, 2025 23:01 Inactive
@renovate renovate bot changed the title chore(deps): Update dependency prettier to ^3.7.2 chore(deps): Update dependency prettier to ^3.7.3 Nov 29, 2025
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 8a684be to 220ab8e Compare November 29, 2025 19:44
@github-actions github-actions bot temporarily deployed to pull request November 29, 2025 19:58 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 220ab8e to 44be52f Compare December 3, 2025 06:05
@renovate renovate bot changed the title chore(deps): Update dependency prettier to ^3.7.3 chore(deps): Update dependency prettier to ^3.7.4 Dec 3, 2025
@github-actions github-actions bot temporarily deployed to pull request December 3, 2025 06:20 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 44be52f to aa78675 Compare December 3, 2025 19:49
@github-actions github-actions bot temporarily deployed to pull request December 3, 2025 19:54 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from aa78675 to 8354166 Compare December 31, 2025 16:13
@github-actions github-actions bot temporarily deployed to pull request December 31, 2025 16:28 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 8354166 to 62cd440 Compare January 8, 2026 19:41
@github-actions github-actions bot temporarily deployed to pull request January 8, 2026 19:46 Inactive
@renovate renovate bot changed the title chore(deps): Update dependency prettier to ^3.7.4 chore(deps): Update dependency prettier to ^3.8.0 Jan 15, 2026
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 62cd440 to 7a60e26 Compare January 15, 2026 02:37
@github-actions github-actions bot temporarily deployed to pull request January 15, 2026 02:52 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 7a60e26 to 42e3614 Compare January 21, 2026 22:07
@renovate renovate bot changed the title chore(deps): Update dependency prettier to ^3.8.0 chore(deps): Update dependency prettier to ^3.8.1 Jan 21, 2026
@github-actions github-actions bot temporarily deployed to pull request January 21, 2026 22:23 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 42e3614 to 7874e0c Compare February 2, 2026 19:44
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from 7874e0c to cefdcb6 Compare March 5, 2026 07:52
@github-actions github-actions bot temporarily deployed to pull request March 5, 2026 08:08 Inactive
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from cefdcb6 to be46ede Compare March 5, 2026 19:11
@renovate renovate bot force-pushed the renovate/prettier-3.x branch from be46ede to 2b04441 Compare March 13, 2026 14:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants