fix(deps): update dependency @mui/icons-material to v5.15.5 #147

Merged
renovate[bot] merged 1 commit from renovate/material-ui-monorepo into main 2024-01-17 23:16:03 +00:00
renovate[bot] commented 2024-01-17 19:08:41 +00:00 (Migrated from github.com)

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/icons-material (source) 5.15.4 -> 5.15.5 age adoption passing confidence

Release Notes

mui/material-ui (@​mui/icons-material)

v5.15.5

Compare Source

Jan 17, 2024

A big thanks to the 18 contributors who made this release possible. Here are some highlights :

  • Base UI's CSS class prefix is now base- (#​40205) @​michaldudak
  • Bug fixes, and a lot of improvements to code and docs infra
@mui/material@5.15.5
@mui/material-next@6.0.0-alpha.118
@mui/base@5.0.0-beta.32
Breaking changes

The class prefix of Base UI components have been changed from Mui- to base-. This only affects codebases that uses class names verbatim, i.e. not exposed by JS objects such as buttonClasses, but as plain strings or in CSS stylesheets (.MuiButton.root)

To adapt your code to the new pattern:

  • replace all occurrences of the regex .Mui([A-Z][A-Za-z]*)- with .base-$1- (so MuiButton-root becomes base-Button-root, etc.),
  • replace all occurrences of the regex .Mui-([a-z]*) with .base--$1 (so Mui-disabled becomes base--disabled, etc.).
Changes
@mui/joy@5.0.0-beta.23
@mui/codemod@5.15.5
@mui/lab@5.0.0-alpha.161
@mui/material-nextjs@5.15.5
@mui/system@5.15.5
Docs
Core

All contributors of this release in alphabetical order: @​2metres, @​aacevski, @​brijeshb42, @​danilo-leal, @​DiegoAndai, @​josh-feldman, @​Kamino0, @​lhilgert9, @​maakcode, @​michaldudak, @​oliviertassinari, @​petrovmiroslav, @​sai6855, @​samuelsycamore, @​siriwatknp, @​zanivan, @​ZeeshanTamboli, @​zinoroman


Configuration

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

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mui/icons-material](https://mui.com/material-ui/material-icons/) ([source](https://togithub.com/mui/material-ui/tree/HEAD/packages/mui-icons-material)) | [`5.15.4` -> `5.15.5`](https://renovatebot.com/diffs/npm/@mui%2ficons-material/5.15.4/5.15.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mui%2ficons-material/5.15.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mui%2ficons-material/5.15.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mui%2ficons-material/5.15.4/5.15.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mui%2ficons-material/5.15.4/5.15.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>mui/material-ui (@&#8203;mui/icons-material)</summary> ### [`v5.15.5`](https://togithub.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v5155) [Compare Source](https://togithub.com/mui/material-ui/compare/v5.15.4...v5.15.5) <!-- generated comparing v5.15.4..master --> *Jan 17, 2024* A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨: - Base UI's CSS class prefix is now `base-` ([#&#8203;40205](https://togithub.com/mui/material-ui/issues/40205)) [@&#8203;michaldudak](https://togithub.com/michaldudak) - Bug fixes, and a lot of improvements to code and docs infra ##### `@mui/material@5.15.5` - ​<!-- 42 -->\[Accordion] Deprecate \*Props props and classes for v6 ([#&#8203;40418](https://togithub.com/mui/material-ui/issues/40418)) [@&#8203;DiegoAndai](https://togithub.com/DiegoAndai) - ​<!-- 41 -->\[Alert] Update TypeScript types to allow color override types to be added to `iconMapping` and `severity` props ([#&#8203;40551](https://togithub.com/mui/material-ui/issues/40551)) [@&#8203;2metres](https://togithub.com/2metres) - ​<!-- 27 -->\[Dialog] Remove deprecated onBackdropClick from Dialog tests ([#&#8203;40505](https://togithub.com/mui/material-ui/issues/40505)) [@&#8203;sai6855](https://togithub.com/sai6855) - ​<!-- 26 -->\[Divider] Deprecate props and classes for v6 ([#&#8203;40563](https://togithub.com/mui/material-ui/issues/40563)) [@&#8203;sai6855](https://togithub.com/sai6855) ##### `@mui/material-next@6.0.0-alpha.118` - ​<!-- 36 -->\[ButtonGroup] Apply MD3 style to `ButtonGroup` ([#&#8203;40124](https://togithub.com/mui/material-ui/issues/40124)) [@&#8203;lhilgert9](https://togithub.com/lhilgert9) ##### `@mui/base@5.0.0-beta.32` ##### Breaking changes - ​<!-- 40 -->Change the CSS class prefix to `base-` ([#&#8203;40205](https://togithub.com/mui/material-ui/issues/40205)) [@&#8203;michaldudak](https://togithub.com/michaldudak) The class prefix of Base UI components have been changed from `Mui-` to `base-`. This only affects codebases that uses class names verbatim, i.e. not exposed by JS objects such as `buttonClasses`, but as plain strings or in CSS stylesheets (`.MuiButton.root`) To adapt your code to the new pattern: - replace all occurrences of the regex `.Mui([A-Z][A-Za-z]*)-` with `.base-$1-` (so `MuiButton-root` becomes `base-Button-root`, etc.), - replace all occurrences of the regex `.Mui-([a-z]*)` with `.base--$1` (so `Mui-disabled` becomes `base--disabled`, etc.). ##### Changes - ​<!-- 39 -->\[Select] Fix screen-reader CSS to avoid body scrollbar ([#&#8203;40599](https://togithub.com/mui/material-ui/issues/40599)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42) - ​<!-- 38 -->\[Switch] Add border-box to demos ([#&#8203;40638](https://togithub.com/mui/material-ui/issues/40638)) [@&#8203;zanivan](https://togithub.com/zanivan) ##### `@mui/joy@5.0.0-beta.23` - ​<!-- 11 -->\[ModalDialog] Fix ModalDialog layout prop override ([#&#8203;40512](https://togithub.com/mui/material-ui/issues/40512)) [@&#8203;maakcode](https://togithub.com/maakcode) - ​<!-- 10 -->\[RadioGroup] Allow zero number as a value ([#&#8203;40344](https://togithub.com/mui/material-ui/issues/40344)) [@&#8203;aacevski](https://togithub.com/aacevski) ##### `@mui/codemod@5.15.5` - ​<!-- 31 -->Allow `json` files to be transformed ([#&#8203;40536](https://togithub.com/mui/material-ui/issues/40536)) [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) ##### `@mui/lab@5.0.0-alpha.161` - ​<!-- 09 -->Update `@mui/material` peer dependency version ([#&#8203;40528](https://togithub.com/mui/material-ui/issues/40528)) [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) ##### `@mui/material-nextjs@5.15.5` - ​<!-- 08 -->Fix release script ([#&#8203;40519](https://togithub.com/mui/material-ui/issues/40519)) [@&#8203;petrovmiroslav](https://togithub.com/petrovmiroslav) - ​<!-- 07 -->Support Nonces in the App Router Provider ([#&#8203;40269](https://togithub.com/mui/material-ui/issues/40269)) [@&#8203;josh-feldman](https://togithub.com/josh-feldman) - ​<!-- 06 -->Polish [@&#8203;mui/material-nextjs](https://togithub.com/mui/material-nextjs) ([#&#8203;40473](https://togithub.com/mui/material-ui/issues/40473)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) ##### `@mui/system@5.15.5` - ​<!-- 05 -->Fix import path for [@&#8203;mui/system](https://togithub.com/mui/system) in vite apps ([#&#8203;40490](https://togithub.com/mui/material-ui/issues/40490)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42) - ​<!-- 02 -->Fix css vars generation and simplify the code ([#&#8203;40530](https://togithub.com/mui/material-ui/issues/40530)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) - ​<!-- 01 -->Identify zero runtime styled path ([#&#8203;40555](https://togithub.com/mui/material-ui/issues/40555)) [@&#8203;brijeshb42](https://togithub.com/brijeshb42) ##### Docs - ​<!-- 35 -->\[joy-ui]\[Card] Fix text alignment in horizontal aligned card demo ([#&#8203;40562](https://togithub.com/mui/material-ui/issues/40562)) [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli) - ​<!-- 25 -->Improve instructions about peer dependencies ([#&#8203;40621](https://togithub.com/mui/material-ui/issues/40621)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal) - ​<!-- 24 -->Solve page description length [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 23 -->Fix MUI Treasury links ([#&#8203;40561](https://togithub.com/mui/material-ui/issues/40561)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) - ​<!-- 17 -->\[material-ui] Update <ListItem button/> to ListItemButton in demos ([#&#8203;40564](https://togithub.com/mui/material-ui/issues/40564)) [@&#8203;sai6855](https://togithub.com/sai6855) - ​<!-- 16 -->\[material-ui] Revise the Snackbar page ([#&#8203;39298](https://togithub.com/mui/material-ui/issues/39298)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal) - ​<!-- 15 -->\[material-ui] Sharpen Material 3 copy on demo pages ([#&#8203;40546](https://togithub.com/mui/material-ui/issues/40546)) [@&#8203;samuelsycamore](https://togithub.com/samuelsycamore) - ​<!-- 14 -->\[material-ui] Fix typo on Next.js integration guide ([#&#8203;40538](https://togithub.com/mui/material-ui/issues/40538)) [@&#8203;zanivan](https://togithub.com/zanivan) - ​<!-- 13 -->\[material-ui]\[Snackbar] Remove unused `State` interface from Consecutive Snackbars demo ([#&#8203;40410](https://togithub.com/mui/material-ui/issues/40410)) [@&#8203;zinoroman](https://togithub.com/zinoroman) - ​<!-- 12 -->\[website] Resolve broken links reported by `docs:link-check` ([#&#8203;40547](https://togithub.com/mui/material-ui/issues/40547)) [@&#8203;samuelsycamore](https://togithub.com/samuelsycamore) ##### Core - ​<!-- 37 -->\[blog] Fix 404 link to MUI Treasury [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 34 -->\[code-infra] Add `run` command to deploy docs ([#&#8203;40513](https://togithub.com/mui/material-ui/issues/40513)) [@&#8203;siriwatknp](https://togithub.com/siriwatknp) - ​<!-- 32 -->\[core] Update the lockfile ([#&#8203;40628](https://togithub.com/mui/material-ui/issues/40628)) [@&#8203;michaldudak](https://togithub.com/michaldudak) - ​<!-- 31 -->\[core] Remove dead code and follow standard [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 30 -->\[core] Simplify server detection ([#&#8203;40471](https://togithub.com/mui/material-ui/issues/40471)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 29 -->\[core] Sync playwright cache between MUI X and Material UI ([#&#8203;40475](https://togithub.com/mui/material-ui/issues/40475)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 28 -->\[dependencies] Bump tough-cookie ([#&#8203;40437](https://togithub.com/mui/material-ui/issues/40437)) [@&#8203;michaldudak](https://togithub.com/michaldudak) - ​<!-- 22 -->\[docs-infra] Enforce brand name rules ([#&#8203;40525](https://togithub.com/mui/material-ui/issues/40525)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 21 -->\[docs-infra] Minimize ad layout shift on mobile ([#&#8203;40582](https://togithub.com/mui/material-ui/issues/40582)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 20 -->\[docs-infra] Improve API page deprecation info ([#&#8203;40440](https://togithub.com/mui/material-ui/issues/40440)) [@&#8203;DiegoAndai](https://togithub.com/DiegoAndai) - ​<!-- 19 -->\[docs-infra] Remove old tocs banners ([#&#8203;40537](https://togithub.com/mui/material-ui/issues/40537)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 18 -->\[docs-infra] Remove dead code aria-label sponsors ([#&#8203;40526](https://togithub.com/mui/material-ui/issues/40526)) [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari) - ​<!-- 04 -->\[utils] Centralize clamp implementation in utils ([#&#8203;40267](https://togithub.com/mui/material-ui/issues/40267)) [@&#8203;Kamino0](https://togithub.com/Kamino0) - ​<!-- 03 -->\[website] Polish the Base UI page demos ([#&#8203;40504](https://togithub.com/mui/material-ui/issues/40504)) [@&#8203;danilo-leal](https://togithub.com/danilo-leal) All contributors of this release in alphabetical order: [@&#8203;2metres](https://togithub.com/2metres), [@&#8203;aacevski](https://togithub.com/aacevski), [@&#8203;brijeshb42](https://togithub.com/brijeshb42), [@&#8203;danilo-leal](https://togithub.com/danilo-leal), [@&#8203;DiegoAndai](https://togithub.com/DiegoAndai), [@&#8203;josh-feldman](https://togithub.com/josh-feldman), [@&#8203;Kamino0](https://togithub.com/Kamino0), [@&#8203;lhilgert9](https://togithub.com/lhilgert9), [@&#8203;maakcode](https://togithub.com/maakcode), [@&#8203;michaldudak](https://togithub.com/michaldudak), [@&#8203;oliviertassinari](https://togithub.com/oliviertassinari), [@&#8203;petrovmiroslav](https://togithub.com/petrovmiroslav), [@&#8203;sai6855](https://togithub.com/sai6855), [@&#8203;samuelsycamore](https://togithub.com/samuelsycamore), [@&#8203;siriwatknp](https://togithub.com/siriwatknp), [@&#8203;zanivan](https://togithub.com/zanivan), [@&#8203;ZeeshanTamboli](https://togithub.com/ZeeshanTamboli), [@&#8203;zinoroman](https://togithub.com/zinoroman) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/mcataford/rotini). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
This repo is archived. You cannot comment on pull requests.
No description provided.