Skip to content

chore(deps): Update dependency lint-staged to ^15.5.2 #1498

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 13, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
lint-staged ^15.2.10 -> ^15.5.2 age adoption passing confidence

Release Notes

lint-staged/lint-staged (lint-staged)

v15.5.2

Compare Source

Patch Changes

v15.5.1

Compare Source

Patch Changes
  • #​1533 5d53534 Thanks @​iiroj! - Improve listing of staged files so that lint-staged doesn't crash when encountering an uninitialized submodule. This should result in less errors like:

    ✖ Failed to get staged files!
    

v15.5.0

Compare Source

Minor Changes
  • #​1526 630af5f Thanks @​iiroj! - Lint-staged no longer resets to the original state when preventing an empty git commit. This happens when your configured tasks reset all the staged changes, typically when trying to commit formatting changes which conflict with your linter setup like ESLint or Prettier.
Example with Prettier

By default Prettier prefers double quotes.

Previously
  1. Stage file.js with only double quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails, cancels the commit, and resets back to the original state
  5. Commit was not done, original state is restored and single quotes ' are staged
Now
  1. Stage file.js with only double-quotes " changed to '
  2. Run git commit -am "I don't like double quotes"
  3. Lint-staged runs prettier --write file.js, converting all the ' back to "
  4. Because there are now no changes, lint-staged fails and cancels the commit
  5. Commit was not done, and there are no staged changes

v15.4.3

Compare Source

Patch Changes
  • #​1512 cbfed1d Thanks @​tarik02! - Adjust TypeScript types for the default export so that it can be used as a value without error TS2693.

v15.4.2

Compare Source

Patch Changes
  • #​1509 8827ebf Thanks @​iiroj! - Change lint-staged's dependencies to use caret (^) ranges instead of tilde (~). This makes it easier for package managers to perform dependency management when minor-level updates are also permitted instead of just patch-level.

v15.4.1

Compare Source

Patch Changes

v15.4.0

Compare Source

Minor Changes
  • #​1500 a8ec1dd Thanks @​iiroj! - Lint-staged now provides TypeScript types for the configuration and main Node.js API. You can use the JSDoc syntax in your JS configuration files:

    /**
     * @​filename: lint-staged.config.js
     * @​type {import('lint-staged').Configuration}
     */
    export default {
      '*': 'prettier --write',
    }

    It's also possible to use the .ts file extension for the configuration if your Node.js version supports it. The --experimental-strip-types flag was introduced in Node.js v22.6.0 and unflagged in v23.6.0, enabling Node.js to execute TypeScript files without additional configuration.

    export NODE_OPTIONS="--experimental-strip-types"
    
    npx lint-staged --config lint-staged.config.ts
Patch Changes

v15.3.0

Compare Source

Minor Changes
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.


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 this update again.


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

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

Copy link

coderabbitai bot commented Mar 13, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


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

Support

Need help? Join our Discord community for assistance with any issues or questions.

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 sequence diagram to generate a sequence diagram of the changes in 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 13, 2025

@github-actions github-actions bot temporarily deployed to pull request March 13, 2025 15:15 Inactive
Copy link

github-actions bot commented Mar 13, 2025

📐🤏 Size check result (f3c5d07...ab807b0):

See full diff

Load all bricks together

Name Prev Now Diff
All bricks 4,573.01 KB 4,594.4 KB 🔺 +21.39 KB

Critical changes:

Name Prev Now Diff
ai-portal 126.96 KB 142.9 KB 🔺 +15.94 KB
markdown 249.33 KB 261.85 KB 🔺 +12.52 KB
nav 140.94 KB 121.65 KB 🟢 -19.29 KB
visual-builder 450.75 KB 461.74 KB 🔺 +10.99 KB
See full changes
Name Prev Now Diff
<core> 317 KB 317.05 KB
<react> 8.22 KB 8.22 KB 🟰
advanced 521.98 KB 522.59 KB 🔼 +0.61 KB
ai 288.21 KB 288.73 KB 🔼 +0.52 KB
ai-portal 126.96 KB 142.9 KB 🔺 +15.94 KB
api-market 10.59 KB 10.59 KB 🟰
basic 157.41 KB 157.42 KB
containers 95.59 KB 95.6 KB
data-view 642.92 KB 642.93 KB
diagram 180.27 KB 180.27 KB 🟰
form 325.65 KB 325.65 KB 🟰
form-platform 12.7 KB 12.7 KB 🟰
icons 66.25 KB 66.26 KB
illustrations 17.44 KB 17.45 KB
inject 56.26 KB 56.26 KB 🟰
markdown 249.33 KB 261.85 KB 🔺 +12.52 KB
mini-chart 7.83 KB 7.83 KB 🟰
nav 140.94 KB 121.65 KB 🟢 -19.29 KB
presentational 135.69 KB 135.69 KB 🟰
recent-history 33.18 KB 33.18 KB 🟰
shoelace 196.11 KB 196.07 KB
visual-builder 450.75 KB 461.74 KB 🔺 +10.99 KB
vs 848.71 KB 848.82 KB 🔼 +0.11 KB

Load bricks by each package

Critical changes:

Name Prev Now Diff
advanced 869.2 KB 844.05 KB 🟢 -25.15 KB
ai-portal 400.7 KB 418.64 KB 🔺 +17.94 KB
markdown 446.16 KB 458.67 KB 🔺 +12.51 KB
visual-builder 1,647.11 KB 1,658.09 KB 🔺 +10.98 KB
vs 1,198.41 KB 1,145.87 KB 🟢 -52.54 KB
See full changes
Name Prev Now Diff
advanced 869.2 KB 844.05 KB 🟢 -25.15 KB
ai 598.21 KB 598.74 KB 🔼 +0.53 KB
ai-portal 400.7 KB 418.64 KB 🔺 +17.94 KB
api-market 333.31 KB 333.33 KB
basic 424.32 KB 424.36 KB
containers 252.63 KB 252.66 KB
data-view 800.29 KB 800.36 KB
diagram 263.65 KB 263.65 KB 🟰
form 679.12 KB 679.19 KB
form-platform 368.1 KB 368.13 KB
icons 123.85 KB 123.87 KB
illustrations 143.81 KB 143.83 KB
inject 56.26 KB 56.26 KB 🟰
markdown 446.16 KB 458.67 KB 🔺 +12.51 KB
mini-chart 81.65 KB 81.65 KB 🟰
nav 477.6 KB 477.58 KB
presentational 445.43 KB 445.47 KB
recent-history 312.44 KB 312.42 KB
shoelace 196.08 KB 196.07 KB
visual-builder 1,647.11 KB 1,658.09 KB 🔺 +10.98 KB
vs 1,198.41 KB 1,145.87 KB 🟢 -52.54 KB
widget-editors 0 KB 0 KB 🟰
Critical details for package advanced
Name Prev Now Diff
<self> 522.59 KB 523.12 KB 🔼 +0.53 KB
basic 104.1 KB 104.11 KB
icons 66.25 KB 66.26 KB
nav 25.7 KB Del
Critical details for package ai-portal
Name Prev Now Diff
<self> 129.47 KB 145.44 KB 🔺 +15.97 KB
basic 90.89 KB 90.9 KB
icons 66.25 KB 66.26 KB
shoelace 114.09 KB 116.03 KB 🔺 +1.94 KB
Critical details for package markdown
Name Prev Now Diff
<self> 253.44 KB 265.94 KB 🔺 +12.5 KB
icons 66.25 KB 66.26 KB
Critical details for package visual-builder
Name Prev Now Diff
<self> 461.33 KB 472.28 KB 🔺 +10.95 KB
basic 97.7 KB 97.71 KB
containers 11.33 KB 11.34 KB
icons 66.25 KB 66.26 KB
shoelace 118.01 KB 118 KB
Critical details for package vs
Name Prev Now Diff
<self> 856.7 KB 859.2 KB 🔺 +2.5 KB
basic 87.45 KB 87.46 KB
form 72.97 KB 17.91 KB 🟢 -55.06 KB
icons 66.25 KB 66.26 KB
shoelace 115.04 KB 115.03 KB

Load by each brick

Critical changes:

Name Prev Now Diff
ai-portal.chat-box 166.49 KB 137.92 KB 🟢 -28.57 KB
ai-portal.cruise-canvas 397.58 KB 412.08 KB 🔺 +14.5 KB
ai.chat-view 593.49 KB 646.54 KB 🔺 +53.05 KB
eo-cascader 269.8 KB 322.37 KB 🔺 +52.57 KB
eo-checkbox 212.46 KB 158.23 KB 🟢 -54.23 KB
eo-date-picker 284.6 KB 338.89 KB 🔺 +54.29 KB
eo-markdown-display 140.58 KB 153.41 KB 🔺 +12.83 KB
eo-time-range-picker 338.07 KB 283.85 KB 🟢 -54.22 KB
eo-workbench-layout 405.18 KB 352.65 KB 🟢 -52.53 KB
eo-workbench-layout-v2 380.22 KB 339.93 KB 🟢 -40.29 KB
form.general-input 196.82 KB 142.59 KB 🟢 -54.23 KB
form.general-radio 151.12 KB 205.38 KB 🔺 +54.26 KB
form.general-search 146.62 KB 200.88 KB 🔺 +54.26 KB
visual-builder.chat-conversation 337.66 KB 348.63 KB 🔺 +10.97 KB
See full changes
Name Prev Now Diff
advanced.capture-snapshot 52.38 KB 52.37 KB
advanced.general-cascader 269.8 KB 269.81 KB
advanced.general-table 381.36 KB 381.38 KB
advanced.pdf-viewer 201.01 KB 201.03 KB
ai-portal.chat-box 166.49 KB 137.92 KB 🟢 -28.57 KB
ai-portal.cruise-canvas 397.58 KB 412.08 KB 🔺 +14.5 KB
ai-portal.home-container 66.2 KB New
ai.chat-agent 67.7 KB 67.7 KB 🟰
ai.chat-view 593.49 KB 646.54 KB 🔺 +53.05 KB
api-market.apis-directory-tree 333.31 KB 333.37 KB
basic.active-element-blur 8.6 KB 8.6 KB 🟰
basic.change-language 8.59 KB 8.59 KB 🟰
basic.copy-to-clipboard 8.75 KB 8.76 KB
basic.dropdown-button 280.83 KB 280.86 KB
basic.general-button 152.97 KB 152.99 KB
basic.general-image 148.52 KB 148.55 KB
basic.general-link 268 KB 268.07 KB
basic.general-menu 78.36 KB 78.37 KB
basic.general-menu-item 144.89 KB 144.91 KB
basic.general-popover 195.25 KB 195.25 KB 🟰
basic.general-tag 146.83 KB 146.86 KB
basic.general-tag-list 148.92 KB 148.95 KB
basic.general-text 352.9 KB 352.94 KB
basic.get-language 8.58 KB 8.59 KB
basic.home-redirect 23.62 KB 23.63 KB
basic.http-proxy-request 8.66 KB 8.67 KB
basic.http-request 8.58 KB 8.59 KB
basic.lock-body-scroll 23.3 KB 23.31 KB
basic.set-theme-by-apps 8.59 KB 8.6 KB
basic.set-timeout 8.59 KB 8.6 KB
basic.show-dialog 340.97 KB 341 KB
basic.show-notification 268 KB 268.03 KB
basic.show-watermark 10.33 KB 10.34 KB
basic.v3-widget-mate 8.57 KB 8.58 KB
containers.easy-view 67.04 KB 67.04 KB 🟰
containers.flex-layout 66.77 KB 66.78 KB
containers.general-card 164.63 KB 164.67 KB
containers.general-category 67.4 KB 67.4 KB 🟰
containers.general-drawer 158.45 KB 158.51 KB
containers.general-modal 165.29 KB 165.32 KB
containers.grid-layout 67.87 KB 67.88 KB
containers.micro-view 87.96 KB 87.97 KB
containers.search-bar 66.89 KB 66.9 KB
containers.tab-group 72.1 KB 72.1 KB 🟰
containers.tab-item 160.04 KB 160.07 KB
containers.tab-list 160.04 KB 160.07 KB
data-view.app-wall-card-item 70.05 KB 70.05 KB 🟰
data-view.app-wall-relation-line 69.72 KB 69.73 KB
data-view.app-wall-system-card 136.32 KB 136.35 KB
data-view.basic-index-group 69.34 KB 69.34 KB 🟰
data-view.battery-chart 70.06 KB 70.06 KB 🟰
data-view.brick-notification 135.61 KB 135.54 KB
data-view.bubbles-indicator 169.34 KB 169.37 KB
data-view.cabinet-app-layer 69.72 KB 69.72 KB 🟰
data-view.cabinet-button 69.31 KB 69.32 KB
data-view.cabinet-container 79.56 KB 79.56 KB 🟰
data-view.cabinet-graph 93.69 KB 93.69 KB 🟰
data-view.cabinet-node 70.13 KB 70.13 KB 🟰
data-view.cabinet-thumbnail 83.41 KB 83.41 KB 🟰
data-view.china-map 147.76 KB 147.78 KB
data-view.china-map-chart 379.01 KB 379.03 KB
data-view.complex-search 148.11 KB 148.04 KB
data-view.crystal-ball-indicator 163.73 KB 163.76 KB
data-view.data-display-flipper 69.24 KB 69.25 KB
data-view.data-display-flipper-fifth 69.13 KB 69.14 KB
data-view.data-display-flipper-sixth 68.99 KB 68.99 KB 🟰
data-view.dropdown-menu 137.71 KB 137.73 KB
data-view.gauge-chart 70.17 KB 70.17 KB 🟰
data-view.gear-background 115.42 KB 115.43 KB
data-view.globe-with-gear-indicator 214.74 KB 214.77 KB
data-view.globe-with-halo-indicator 164.74 KB 164.77 KB
data-view.globe-with-orbit-indicator 164.6 KB 164.63 KB
data-view.graph-layout-grid 86.5 KB 86.5 KB 🟰
data-view.graph-node 69.17 KB 69.17 KB 🟰
data-view.graph-text 77.67 KB 77.67 KB 🟰
data-view.grid-background 104.5 KB 104.51 KB
data-view.hi-tech-button 69.96 KB 69.97 KB
data-view.indicator-card 69.43 KB 69.44 KB
data-view.lights-component-title 68.86 KB 68.86 KB 🟰
data-view.loading-panel 73.21 KB 73.22 KB
data-view.modern-style-component-title 69.94 KB 69.94 KB 🟰
data-view.modern-style-page-title 70 KB 70 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.55 KB
data-view.tabs-drawer 137.46 KB 137.58 KB 🔼 +0.12 KB
data-view.tabs-page-title 72.07 KB 72.07 KB 🟰
data-view.tech-mesh-base-view 68.42 KB 68.42 KB 🟰
data-view.title-text 69.63 KB 69.63 KB 🟰
data-view.top-title-bar 80.78 KB 80.78 KB 🟰
diagram.editable-label 67.66 KB 67.66 KB 🟰
diagram.experimental-node 67.11 KB 67.11 KB 🟰
eo-actions 277.74 KB 277.77 KB
eo-alert 139.78 KB 139.8 KB
eo-antd-icon 123.85 KB 123.87 KB
eo-app-bar-wrapper 68 KB 68 KB 🟰
eo-auto-complete 202.98 KB 203 KB
eo-avatar 259.98 KB 260 KB
eo-avatar-group 258.91 KB 258.93 KB
eo-banner 95.99 KB 96 KB
eo-breadcrumb 270.12 KB 270.14 KB
eo-breadcrumb-item 269.68 KB 269.74 KB
eo-broadcast-channel 78.75 KB 78.76 KB
eo-button 152.97 KB 152.99 KB
eo-card 164.63 KB 164.67 KB
eo-card-item 300.56 KB 300.59 KB
eo-carousel-text 75.32 KB 75.32 KB 🟰
eo-cascader 269.8 KB 322.37 KB 🔺 +52.57 KB
eo-category 67.4 KB 67.4 KB 🟰
eo-checkbox 212.46 KB 158.23 KB 🟢 -54.23 KB
eo-code-display 352.77 KB 352.84 KB
eo-color-picker 240.3 KB 240.3 KB 🟰
eo-content-layout 66.33 KB 66.34 KB
eo-context-menu 280.77 KB 280.8 KB
eo-counter-badge 145.57 KB 145.6 KB
eo-current-time 138.45 KB 138.47 KB
eo-date-picker 284.6 KB 338.89 KB 🔺 +54.29 KB
eo-descriptions 188.35 KB 188.38 KB
eo-diagram 122.45 KB 122.45 KB 🟰
eo-directory 281.8 KB 281.82 KB
eo-directory-tree 169.24 KB 169.26 KB
eo-directory-tree-internal-node 135.03 KB 135.04 KB
eo-directory-tree-leaf 134.33 KB 134.34 KB
eo-display-canvas 219.09 KB 219.09 KB 🟰
eo-divider 73.13 KB 73.13 KB 🟰
eo-draw-canvas 239.23 KB 239.2 KB
eo-drawer 158.48 KB 158.48 KB 🟰
eo-dropdown-actions 279.31 KB 279.34 KB
eo-dropdown-button 280.83 KB 280.88 KB
eo-dropdown-select 274.81 KB 274.84 KB
eo-dynamic-form-item 246.01 KB 246.03 KB
eo-easy-view 67.04 KB 67.04 KB 🟰
eo-easyops-avatar 261.85 KB 261.87 KB
eo-easyops-icon 123.85 KB 123.87 KB
eo-event-agent 23.21 KB 23.22 KB
eo-fa-icon 123.85 KB 123.87 KB
eo-flex-layout 66.77 KB 66.78 KB
eo-form 69.85 KB 69.85 KB 🟰
eo-form-item 76.33 KB 76.33 KB 🟰
eo-formatter-number 78.82 KB 78.83 KB
eo-frame-breadcrumb 284.42 KB 284.44 KB
eo-grid-layout 67.87 KB 67.88 KB
eo-humanize-time 284.3 KB 284.33 KB
eo-icon 123.85 KB 123.87 KB
eo-icon-select 266.01 KB 266.05 KB
eo-iframe 78.8 KB 78.81 KB
eo-illustration-message 139.61 KB 139.64 KB
eo-image 148.52 KB 148.55 KB
eo-img-icon 123.85 KB 123.87 KB
eo-info-card-item 286.96 KB 286.99 KB
eo-input 142.57 KB 142.59 KB
eo-launchpad-button 306.11 KB 306.13 KB
eo-launchpad-button-v2 316.05 KB 316.09 KB
eo-launchpad-quick-access 304.01 KB 304.02 KB
eo-launchpad-recent-visits 302.81 KB 302.81 KB 🟰
eo-link 268.04 KB 268.03 KB
eo-loading-container 145.05 KB 145.08 KB
eo-loading-step 165.81 KB 165.74 KB
eo-main-view 95.99 KB 96 KB
eo-markdown-display 140.58 KB 153.41 KB 🔺 +12.83 KB
eo-markdown-editor 408.28 KB 408.56 KB 🔼 +0.28 KB
eo-menu 78.36 KB 78.37 KB
eo-menu-group 78.3 KB 78.31 KB
eo-menu-item 144.89 KB 144.91 KB
eo-menu-item-sub-menu 145.33 KB 145.36 KB
eo-message-listener 78.53 KB 78.54 KB
eo-micro-view 87.96 KB 87.97 KB
eo-mini-actions 279.85 KB 279.84 KB
eo-mini-line-chart 81.65 KB 81.65 KB 🟰
eo-modal 165.29 KB 165.32 KB
eo-narrow-view 75.1 KB 75.11 KB
eo-nav-menu 328.64 KB 328.69 KB
eo-next-table 524.26 KB 524.31 KB
eo-page-title 78.51 KB 78.52 KB
eo-page-view 75.1 KB 75.11 KB
eo-pagination 305.86 KB 305.89 KB
eo-popover 195.27 KB 195.28 KB
eo-popup 148.14 KB 148.14 KB 🟰
eo-radio 151.12 KB 151.14 KB
eo-resizable-box 68.75 KB 68.75 KB 🟰
eo-search 200.86 KB 200.88 KB
eo-search-bar 66.89 KB 66.9 KB
eo-search-launchpad 306.65 KB 306.67 KB
eo-select 346.05 KB 346.1 KB
eo-sidebar 312.73 KB 312.75 KB
eo-sidebar-menu 293.74 KB 293.72 KB
eo-sidebar-menu-group 293.7 KB 293.72 KB
eo-sidebar-menu-item 278.56 KB 278.58 KB
eo-sidebar-menu-submenu 293.74 KB 293.76 KB
eo-sidebar-sub-menu 284.55 KB 284.57 KB
eo-spin 67.22 KB 67.22 KB 🟰
eo-statistics-card 139.64 KB 139.66 KB
eo-submit-buttons 230.48 KB 230.51 KB
eo-svg-icon 123.85 KB 123.87 KB
eo-switch 202.32 KB 202.34 KB
eo-tab-group 72.1 KB 72.1 KB 🟰
eo-tab-item 160.04 KB 160.07 KB
eo-tab-list 160.04 KB 160.07 KB
eo-table 381.27 KB 381.28 KB
eo-tag 146.83 KB 146.86 KB
eo-tag-list 148.92 KB 148.95 KB
eo-text 352.9 KB 352.94 KB
eo-text-tooltip 139.32 KB 139.32 KB 🟰
eo-textarea 85.99 KB 85.99 KB 🟰
eo-time-picker 214.51 KB 214.49 KB
eo-time-range-picker 338.07 KB 283.85 KB 🟢 -54.22 KB
eo-tooltip 268 KB 268.04 KB
eo-tree 138.43 KB 138.42 KB
eo-tree-select 282.59 KB 282.7 KB 🔼 +0.11 KB
eo-upload-file 357.56 KB 357.58 KB
eo-upload-image 247.18 KB 247.21 KB
eo-user-or-user-group-select 368.14 KB 368.13 KB
eo-viewport 78.48 KB 78.49 KB
eo-workbench-layout 405.18 KB 352.65 KB 🟢 -52.53 KB
eo-workbench-layout-v2 380.22 KB 339.93 KB 🟢 -40.29 KB
form.dynamic-form-item 246.01 KB 246.03 KB
form.general-checkbox 158.21 KB 158.23 KB
form.general-form 69.85 KB 69.85 KB 🟰
form.general-form-item 76.33 KB 76.33 KB 🟰
form.general-input 196.82 KB 142.59 KB 🟢 -54.23 KB
form.general-radio 151.12 KB 205.38 KB 🔺 +54.26 KB
form.general-search 146.62 KB 200.88 KB 🔺 +54.26 KB
form.general-select 346.05 KB 346.08 KB
form.general-switch 148.08 KB 148.09 KB
form.general-textarea 85.99 KB 85.99 KB 🟰
form.icon-select 266.01 KB 266.05 KB
form.submit-buttons 230.48 KB 230.51 KB
form.upload-image 247.18 KB 247.21 KB
icons.antd-icon 123.85 KB 123.87 KB
icons.easyops-icon 123.85 KB 123.87 KB
icons.fa-icon 123.85 KB 123.87 KB
icons.general-icon 123.85 KB 123.87 KB
icons.get-antd-icons 123.85 KB 123.87 KB
icons.get-easyops-icons 123.85 KB 123.87 KB
icons.get-fa-icons 123.85 KB 123.87 KB
icons.get-libs 123.85 KB 123.87 KB
icons.search-icons 123.85 KB 123.87 KB
illustrations.error-message 139.61 KB 139.64 KB
illustrations.get-illustration 9.24 KB 9.24 KB 🟰
illustrations.get-illustrations-by-category 6.03 KB 6.03 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.26 KB 56.26 KB 🟰
markdown.markdown-editor 408.31 KB 408.61 KB 🔼 +0.3 KB
nav.app-bar-wrapper 68 KB 68 KB 🟰
nav.easyops-navbar-alerts 281.05 KB 281.03 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 312.72 KB 312.74 KB
nav.nav-logo 277.58 KB 277.6 KB
nav.poll-announce 288.13 KB 288.15 KB
presentational.code-display 352.77 KB 352.84 KB
presentational.general-alert 139.78 KB 139.8 KB
presentational.general-descriptions 188.35 KB 188.38 KB
presentational.humanize-time 284.32 KB 284.33 KB
recent-history.clear-history 28.99 KB 28.99 KB 🟰
recent-history.get-all-history 28.99 KB 28.99 KB 🟰
recent-history.push-history 28.99 KB 28.99 KB 🟰
recent-history.recent-visit 311.34 KB 311.33 KB
sl-alert 115.04 KB 115.03 KB
sl-animated-image 114.05 KB 114.05 KB 🟰
sl-animation 117.4 KB 117.4 KB 🟰
sl-avatar 114.04 KB 114.04 KB 🟰
sl-badge 114.05 KB 114.04 KB
sl-breadcrumb 114.85 KB 114.83 KB
sl-breadcrumb-item 114.84 KB 114.83 KB
sl-button 114.83 KB 114.82 KB
sl-button-group 114.05 KB 114.05 KB 🟰
sl-card 114.04 KB 114.04 KB 🟰
sl-carousel 114.83 KB 114.83 KB 🟰
sl-carousel-item 114.83 KB 114.83 KB 🟰
sl-checkbox 114.04 KB 114.04 KB 🟰
sl-color-picker 120.09 KB 120.09 KB 🟰
sl-details 114.83 KB 114.82 KB
sl-dialog 115.04 KB 115.03 KB
sl-divider 114.05 KB 114.04 KB
sl-drawer 114.83 KB 114.83 KB 🟰
sl-dropdown 115.03 KB 115.03 KB 🟰
sl-format-bytes 114.83 KB 114.83 KB 🟰
sl-format-date 114.82 KB 114.82 KB 🟰
sl-format-number 114.83 KB 114.82 KB
sl-icon 114.04 KB 114.04 KB 🟰
sl-icon-button 114.05 KB 114.05 KB 🟰
sl-image-comparer 114.84 KB 114.83 KB
sl-input 114.83 KB 114.82 KB
sl-menu 115.03 KB 115.03 KB 🟰
sl-menu-item 115.03 KB 115.03 KB 🟰
sl-menu-label 114.05 KB 114.05 KB 🟰
sl-mutation-observer 114.05 KB 114.05 KB 🟰
sl-option 114.83 KB 114.83 KB 🟰
sl-popup 115.05 KB 115.03 KB
sl-progress-bar 114.83 KB 114.83 KB 🟰
sl-progress-ring 114.83 KB 114.83 KB 🟰
sl-qr-code 118.72 KB 118.72 KB 🟰
sl-radio 114.05 KB 114.04 KB
sl-radio-button 114.05 KB 114.05 KB 🟰
sl-radio-group 114.05 KB 114.05 KB 🟰
sl-range 114.83 KB 114.83 KB 🟰
sl-rating 114.83 KB 114.83 KB 🟰
sl-relative-time 114.83 KB 114.83 KB 🟰
sl-resize-observer 114.05 KB 114.05 KB 🟰
sl-select 115.03 KB 115.03 KB 🟰
sl-skeleton 114.05 KB 114.05 KB 🟰
sl-spinner 114.83 KB 114.83 KB 🟰
sl-split-panel 114.83 KB 114.83 KB 🟰
sl-switch 114.05 KB 114.04 KB
sl-tab 114.83 KB 114.83 KB 🟰
sl-tab-group 114.83 KB 114.83 KB 🟰
sl-tab-panel 114.83 KB 114.83 KB 🟰
sl-tag 114.82 KB 114.82 KB 🟰
sl-textarea 114.04 KB 114.04 KB 🟰
sl-tooltip 115.04 KB 115.03 KB
sl-tree 114.83 KB 114.83 KB 🟰
sl-tree-item 114.83 KB 114.83 KB 🟰
sl-visually-hidden 114.05 KB 114.05 KB 🟰
visual-builder.batch-update-raw-data-generated-view 7.61 KB 7.61 KB 🟰
visual-builder.chat-conversation 337.66 KB 348.63 KB 🔺 +10.97 KB
visual-builder.chat-preview 69.57 KB 69.57 KB 🟰
visual-builder.check-editor-by-name 7.22 KB 7.21 KB
visual-builder.contract-select 171.03 KB 171.02 KB
visual-builder.generate-snippets-context-menu 290.52 KB 290.58 KB
visual-builder.get-config-by-data-for-ai 8.98 KB 8.98 KB 🟰
visual-builder.get-data-deps 7.23 KB 7.23 KB 🟰
visual-builder.get-dependency-tree 7.6 KB 7.6 KB 🟰
visual-builder.get-raw-data-system-prompts 11.83 KB 11.82 KB
visual-builder.inject-chat-preview-agent 8.17 KB 8.17 KB 🟰
visual-builder.page-arch-node 280.89 KB 280.9 KB
visual-builder.parse-path 8.85 KB 8.85 KB 🟰
visual-builder.pre-generated-config 79.96 KB 79.95 KB
visual-builder.pre-generated-config-preview 75.31 KB 75.31 KB 🟰
visual-builder.pre-generated-container 69.5 KB 69.5 KB 🟰
visual-builder.pre-generated-preview 69.55 KB 69.55 KB 🟰
visual-builder.pre-generated-table-view 67.15 KB 67.14 KB
visual-builder.property-editor 1,437.83 KB 1,438.01 KB 🔼 +0.18 KB
visual-builder.raw-data-preview 78.63 KB 78.63 KB 🟰
visual-builder.raw-metric-preview 71.45 KB 71.44 KB
visual-builder.workbench-action 279.67 KB 279.66 KB
visual-builder.workbench-action-list 285.06 KB 285.08 KB
visual-builder.workbench-history-action 300.38 KB 300.41 KB
visual-builder.workbench-pane 135.44 KB 135.43 KB
visual-builder.workbench-sidebar 68.03 KB 68.03 KB 🟰
visual-builder.workbench-tree 285.11 KB 285.14 KB
vs.code-editor 1,146.12 KB 1,145.9 KB ↓ -0.22 KB
Critical details for brick ai-portal.chat-box
Name Prev Now Diff
ai-portal/dist/chunks/1045.3a82f036.js 2.52 KB New
ai-portal/dist/chunks/114.edeb665e.js 1.59 KB New
ai-portal/dist/chunks/1165.6759a6d3.js 5.1 KB New
ai-portal/dist/chunks/3144.a54c8d65.js 49.96 KB New
ai-portal/dist/chunks/3506.0d6e4b61.js 4.96 KB Del
ai-portal/dist/chunks/4041.6ba6fafa.js 3.53 KB New
ai-portal/dist/chunks/chat-box.13de41ba.js 3.08 KB Del
ai-portal/dist/chunks/chat-box.bb70bdf7.js 3.44 KB New
ai-portal/dist/index.3c536b70.js 5.48 KB Del
ai-portal/dist/index.fdab2ba5.js 5.51 KB New
basic/dist/chunks/2369.d394897d.js 8.91 KB Del
basic/dist/chunks/base-bricks.0d9c78f9.js 0.44 KB Del
basic/dist/chunks/react.bf6efa1b.js 55.06 KB Del
basic/dist/chunks/vendors.5582fe66.js 14.3 KB Del
basic/dist/index.2416528d.js 8.02 KB Del
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
Critical details for brick ai-portal.cruise-canvas
Name Prev Now Diff
ai-portal/dist/chunks/1165.6759a6d3.js 5.1 KB New
ai-portal/dist/chunks/2259.63e2454f.js 96.45 KB Del
ai-portal/dist/chunks/2569.ba4c489c.js 15.38 KB New
ai-portal/dist/chunks/2569.e4658458.js 14.27 KB Del
ai-portal/dist/chunks/3506.0d6e4b61.js 4.96 KB Del
ai-portal/dist/chunks/792.8349aa42.js 107.44 KB New
ai-portal/dist/chunks/cruise-canvas.65f61916.js 2.96 KB New
ai-portal/dist/chunks/cruise-canvas.9b109fa0.js 2.72 KB Del
ai-portal/dist/index.3c536b70.js 5.48 KB Del
ai-portal/dist/index.fdab2ba5.js 5.51 KB New
basic/dist/index.2416528d.js 8.02 KB Del
basic/dist/index.cfd06155.js 8.03 KB New
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
shoelace/dist/chunks/sl-alert.20d91252.js 1.98 KB New
shoelace/dist/index.3ee752bd.js 3.69 KB New
shoelace/dist/index.7d4c1e25.js 3.69 KB Del
Critical details for brick ai.chat-view
Name Prev Now Diff
ai/dist/chunks/1599.59abead2.js 253.99 KB Del
ai/dist/chunks/3497.7afa0866.js 21.58 KB Del
ai/dist/chunks/3497.aee8c59b.js 21.58 KB New
ai/dist/chunks/4837.c66a6464.js 2.5 KB Del
ai/dist/chunks/8977.d7d42a2a.js 254.47 KB New
ai/dist/index.976e7bfc.js 5.33 KB New
ai/dist/index.b563beeb.js 5.33 KB Del
basic/dist/index.2416528d.js 8.02 KB Del
basic/dist/index.cfd06155.js 8.03 KB New
containers/dist/index.a20dbffa.js 5.84 KB New
containers/dist/index.ba2d0d62.js 5.83 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.639c1295.js 6.12 KB New
form/dist/index.e7b35473.js 6.12 KB Del
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
shoelace/dist/chunks/vendors.b87b1ad4.js 109.39 KB 109.36 KB
shoelace/dist/index.3ee752bd.js 3.69 KB New
shoelace/dist/index.7d4c1e25.js 3.69 KB Del
Critical details for brick eo-cascader
Name Prev Now Diff
advanced/dist/chunks/4837.a78e6eb3.js 2.5 KB Del
advanced/dist/index.66743f46.js 6.36 KB New
advanced/dist/index.c9b0d80c.js 6.37 KB Del
form/dist/chunks/react.b86c57e9.js 55.06 KB New
form/dist/index.639c1295.js 6.12 KB New
form/dist/index.e7b35473.js 6.12 KB Del
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
Critical details for brick eo-checkbox
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.639c1295.js 6.12 KB New
form/dist/index.e7b35473.js 6.12 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB Del
icons/dist/chunks/144.ed687799.js 49.96 KB Del
icons/dist/chunks/41.48c2e71e.js 3.53 KB Del
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB Del
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 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.f6378665.js 82.97 KB 83 KB
form/dist/chunks/8548.3d64fb28.js 0.83 KB Del
form/dist/index.639c1295.js 6.12 KB New
form/dist/index.e7b35473.js 6.12 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB New
icons/dist/chunks/144.ed687799.js 49.96 KB New
icons/dist/chunks/41.48c2e71e.js 3.53 KB New
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB New
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
Critical details for brick eo-markdown-display
Name Prev Now Diff
markdown/dist/chunks/489.36fea43a.js 41.44 KB New
markdown/dist/chunks/548.a49ae278.js 36.05 KB Del
markdown/dist/chunks/661.7ecf9d15.js 40.86 KB Del
markdown/dist/chunks/818.607a13b2.js 48.3 KB New
markdown/dist/chunks/eo-markdown-display.8d524e11.js 1.82 KB New
markdown/dist/chunks/eo-markdown-display.c41b2a9e.js 1.82 KB Del
markdown/dist/index.519e3954.js 4.24 KB Del
markdown/dist/index.da06c41f.js 4.24 KB New
Critical details for brick eo-time-range-picker
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.639c1295.js 6.12 KB New
form/dist/index.e7b35473.js 6.12 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB Del
icons/dist/chunks/144.ed687799.js 49.96 KB Del
icons/dist/chunks/41.48c2e71e.js 3.53 KB Del
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB Del
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
Critical details for brick eo-workbench-layout
Name Prev Now Diff
advanced/dist/chunks/4837.a78e6eb3.js 2.5 KB New
advanced/dist/index.66743f46.js 6.36 KB New
advanced/dist/index.c9b0d80c.js 6.37 KB Del
basic/dist/index.2416528d.js 8.02 KB Del
basic/dist/index.cfd06155.js 8.03 KB New
form/dist/chunks/react.b86c57e9.js 55.06 KB Del
form/dist/index.639c1295.js 6.12 KB New
form/dist/index.e7b35473.js 6.12 KB Del
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
shoelace/dist/index.3ee752bd.js 3.69 KB New
shoelace/dist/index.7d4c1e25.js 3.69 KB Del
Critical details for brick eo-workbench-layout-v2
Name Prev Now Diff
advanced/dist/chunks/4837.a78e6eb3.js 2.5 KB New
advanced/dist/chunks/9655.d135a41f.js 15.16 KB Del
advanced/dist/chunks/eo-workbench-layout-v2.1b2ea988.js 7.32 KB Del
advanced/dist/chunks/eo-workbench-layout-v2.2710e9e9.js 7.91 KB New
advanced/dist/index.66743f46.js 6.36 KB New
advanced/dist/index.c9b0d80c.js 6.37 KB Del
basic/dist/index.2416528d.js 8.02 KB Del
basic/dist/index.cfd06155.js 8.03 KB New
form/dist/index.639c1295.js 6.12 KB New
form/dist/index.e7b35473.js 6.12 KB Del
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
nav/dist/chunks/4837.4464bee6.js 2.5 KB Del
nav/dist/chunks/eo-sidebar-menu-group.8864f4d9.js 5.43 KB Del
nav/dist/chunks/eo-sidebar-menu-item.5d9037c9.js 4.14 KB Del
nav/dist/chunks/eo-sidebar-menu-submenu.a1ab5f7a.js 5.48 KB Del
nav/dist/chunks/eo-sidebar-menu.6a44ad80.js 4.24 KB Del
nav/dist/index.ff18c6ff.js 6.42 KB Del
shoelace/dist/chunks/vendors.b87b1ad4.js 109.4 KB 109.36 KB
shoelace/dist/index.3ee752bd.js 3.69 KB New
shoelace/dist/index.7d4c1e25.js 3.69 KB Del
Critical details for brick form.general-input
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.639c1295.js 6.12 KB New
form/dist/index.e7b35473.js 6.12 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB Del
icons/dist/chunks/144.ed687799.js 49.96 KB Del
icons/dist/chunks/41.48c2e71e.js 3.53 KB Del
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB Del
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
Critical details for brick form.general-radio
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.639c1295.js 6.12 KB New
form/dist/index.e7b35473.js 6.12 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB New
icons/dist/chunks/144.ed687799.js 49.96 KB New
icons/dist/chunks/41.48c2e71e.js 3.53 KB New
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB New
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
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.639c1295.js 6.12 KB New
form/dist/index.e7b35473.js 6.12 KB Del
icons/dist/chunks/114.6546c4b7.js 1.59 KB New
icons/dist/chunks/144.ed687799.js 49.96 KB New
icons/dist/chunks/41.48c2e71e.js 3.53 KB New
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/chunks/45.e9943c86.js 2.52 KB New
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
Critical details for brick visual-builder.chat-conversation
Name Prev Now Diff
basic/dist/index.2416528d.js 8.02 KB Del
basic/dist/index.cfd06155.js 8.03 KB New
icons/dist/chunks/423.b2e3cb94.js 60.6 KB Del
icons/dist/chunks/423.f41576f1.js 60.62 KB New
icons/dist/index.9a2d2a27.js 5.19 KB New
icons/dist/index.dd4a283c.js 5.19 KB Del
shoelace/dist/index.3ee752bd.js 3.69 KB New
shoelace/dist/index.7d4c1e25.js 3.69 KB Del
visual-builder/dist/chunks/5659.db2c4d38.js 64.92 KB Del
visual-builder/dist/chunks/5933.80708a00.js 75.86 KB New
visual-builder/dist/chunks/chat-conversation.5660eb6c.js 6.19 KB Del
visual-builder/dist/chunks/chat-conversation.a3e800e3.js 6.2 KB New
visual-builder/dist/index.48a4cac7.js 6.59 KB New
visual-builder/dist/index.ce3debce.js 6.6 KB Del

@renovate renovate bot force-pushed the renovate/lint-staged-15.x branch from 9a37a48 to 775b65d Compare April 11, 2025 21:51
@renovate renovate bot changed the title chore(deps): Update dependency lint-staged to ^15.5.0 chore(deps): Update dependency lint-staged to ^15.5.1 Apr 11, 2025
@github-actions github-actions bot temporarily deployed to pull request April 11, 2025 21:55 Inactive
@renovate renovate bot force-pushed the renovate/lint-staged-15.x branch from 775b65d to e924dad Compare May 6, 2025 11:26
@renovate renovate bot changed the title chore(deps): Update dependency lint-staged to ^15.5.1 chore(deps): Update dependency lint-staged to ^15.5.2 May 6, 2025
@github-actions github-actions bot temporarily deployed to pull request May 6, 2025 11:31 Inactive
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