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(deps): update material-ui monorepo #189

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 6, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/icons-material (source) 5.2.5 -> 5.11.11 age adoption passing confidence
@mui/lab (source) 5.0.0-alpha.62 -> 5.0.0-alpha.124 age adoption passing confidence
@mui/material (source) 5.2.6 -> 5.11.15 age adoption passing confidence
@mui/styles (source) 5.2.3 -> 5.11.13 age adoption passing confidence
@mui/system (source) 5.10.5 -> 5.11.15 age adoption passing confidence

⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information.


Release Notes

mui/material-ui

v5.11.11

Compare Source

Feb 27, 2023

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

  • 📚 added API documentation for the slots in MUI Base and Joy UI by @​hbjORbj, for e.g. SliderUnstyled API
  • other 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.11.11
@mui/base@5.0.0-alpha.119
Breaking changes
  • ​[base] Remove classes prop from the Base components that have it (#​36157) @​hbjORbj
    These are the components affected by this change: ModalUnstyled, SliderUnstyled, TablePaginationUnstyled and TablePaginationActionsUnstyled.
    You can replace the classes prop by providing the class name prop directly to the prop via slotProps. Below is an example of how the migration should look like:

     <TablePaginationUnstyled
    -   classes={{ toolbar: 'toolbar-classname', menuItem: 'menuItem-classname' }}
    +   slotProps={{ toolbar: { className: 'toolbar-classname' }, menuItem: { className: 'menuItem-classname'}}}
     />
  • ​[base] Move hooks to their own directories (#​36235) @​hbjORbj
    Base hooks (e.g., useSelect) are no longer exported from {Component}Unstyled directories and instead they have their own directories.
    Below is an example of how the migration should look like:

    -import { useBadge } from '@&#8203;mui/base/BadgeUnstyled';
    +import useBadge from '@&#8203;mui/base/useBadge';

    You can use this codemod to help with the migration.

Changes
@mui/codemod@5.11.11
@mui/joy@5.0.0-alpha.69
Docs
Core

All contributors of this release in alphabetical order: @​hbjORbj, @​HeVictor, @​ivp-dev, @​jrparish, @​Juneezee, @​LukasTy, @​MBilalShafi, @​michaldudak, @​mnajdova, @​oliviertassinari, @​ossan-engineer, @​sai6855, @​siriwatknp, @​Vivek-Prajapatii, @​ZeeshanTamboli

v5.11.9

Compare Source

Feb 14, 2023

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

@mui/material@5.11.9
@mui/styled-engine@5.11.9
@mui/joy@5.0.0-alpha.67
@mui/base@5.0.0-alpha.118
@mui/material-next@6.0.0-alpha.75
Docs
Examples
Core

All contributors of this release in alphabetical order: @​danilo-leal, @​donaldnevermore, @​flaviendelangle, @​hbjORbj, @​LadyBluenotes, @​LukasTy, @​m4theushw, @​michaldudak, @​mj12albert, @​mnajdova, @​oliv37, @​oliviertassinari, @​petyosi, @​rangoo94, @​sai6855, @​Shorifpatwary, @​siriwatknp

v5.11.0

Compare Source

Dec 13, 2022

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

  • 🔥 @​mnajdova enabled configuration of the sx prop in the theme (#​35150)
  • Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.
@mui/material@5.11.0
@mui/icons-material@5.11.0
@mui/system@5.11.0
BREAKING CHANGES
  • [system] Enable configuring the sx prop in the theme (#​35150) @​mnajdova

    The breaking change is regarding an experimental API:

    -import { styled, experimental_sx } from '@&#8203;mui/material/styles';
    +import { styled } from '@&#8203;mui/material/styles';
    
    -const Component = styled('div)(experimental_sx({ p: 1 }});
    +const Component = styled('div)(({ theme }) => theme.unstable_sx({ p: 1 }});
@mui/joy@5.0.0-alpha.58
@mui/base@5.0.0-alpha.110
@mui/material-next@6.0.0-alpha.66
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​Armanio, @​danilo-leal, @​EduardoSCosta, @​flaviendelangle, @​jesrodri, @​joserodolfofreitas, @​kraftware, @​michaldudak, @​mnajdova, @​oliviertassinari, @​PratikDev, @​samuelsycamore, @​siriwatknp, @​Spanishiwa, @​timbset, @​tsollbach, @​vitorfrs-dev, @​ZeeshanTamboli

v5.10.16

Compare Source

Nov 28, 2022

A big thanks to the 13 contributors who made this release possible. This release contains various 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.

@mui/material@5.10.16
@mui/system@5.10.16
@mui/base@5.0.0-alpha.108
Docs
Core

All contributors of this release in alphabetical order: @​58bits, @​alexfauquette, @​fenghan34, @​flaviendelangle, @​iamxukai, @​leventdeniz, @​m4theushw, @​michaldudak, @​oliviertassinari, @​sai6855, @​siriwatknp, @​ZeeshanTamboli, @​Zetta56

v5.10.15

Compare Source

Nov 21, 2022

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

  • 🚀 @​mnajdova added the button as the first component that implements Material You design (MD3)
  • 🌐 @​MBilalShafi added Urdu (Pakistan) localization
  • Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
@mui/material@5.10.15
@mui/icons-material@5.10.15
@mui/material-next@6.0.0-alpha.63
@mui/base@5.0.0-alpha.107
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​danilo-leal, @​iamxukai, @​Janpot, @​MBilalShafi, @​michaldudak, @​oliviertassinari, @​samuelsycamore, @​siriwatknp

v5.10.14

Compare Source

Nov 14, 2022

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

  • 🚀 @​siriwatknp added the Autocomplete component to the Joy UI (#​34315)
  • @​sfavello improved the accessibility of the Material UI's Autocomplete by adding support for the Delete key (#​33822)
  • Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.
@mui/material@5.10.14
@mui/system@5.10.14
@mui/joy@5.0.0-alpha.54
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​bharatkashyap, @​cherniavskii, @​danilo-leal, @​hbjORbj, @​Janpot, @​kennethbigler, @​kushagra010, @​michaldudak, @​mnajdova, @​ofir5300, @​oliviertassinari, @​sai6855, @​sfavello, @​sidtohan, @​siriwatknp, @​Studio384

v5.10.9

Compare Source

Oct 10, 2022

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

  • 🚀 [Joy] Button loading functionality has been added by @​kushagra010 (#​34658)
  • And more 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.10.9
@mui/system@5.10.9
BREAKING CHANGE
  • ​[system] Fix color-scheme implementation (#​34639) @​siriwatknp

    The enableColorScheme prop has been removed from CssVarsProvider and getInitColorScheme (both Material UI and Joy UI).

    Migration:

    • Material UI: you can enable the CSS color scheme via <CssBaseline enableColorScheme />.
    • Joy UI: it is enabled automatically if you use <CssBaseline />, see the docs.
Changes
@mui/base@5.0.0-alpha.101
@mui/joy@5.0.0-alpha.49
Docs
Core

All contributors of this release in alphabetical order: @​HexM7, @​joserodolfofreitas, @​kushagra010, @​michaldudak, @​mnajdova, @​oliviertassinari, @​vanyaxk

v5.10.6

Compare Source

Sep 19, 2022

A big thanks to the 11 contributors who made this release possible.
This release was mostly about 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.10.6
@mui/joy@5.0.0-alpha.46
Breaking changes
  • [button][joy] Replace start/endIcon prop with start/endDecorator (#​34288) @​hbjORbj

    BREAKING CHANGE: replace start/endIcon with start/endDecorator.

    // before
    <Button startIcon={...} endIcon={...} />
    
    // after
    <Button startDecorator={...} endDecorator={...} />
Changes
@mui/base@5.0.0-alpha.98
Breaking changes
  • [Select][base] Add event parameter to the onChange callback (#​34158) @​michaldudak

    The SelectUnstyled and MultiSelectUnstyled onChange callbacks did not have event as the first parameter, leading to inconsistency with other components and native HTML elements.
    This PR adds the event parameter as the first one and moves the newly selected value to the second position. Because of this, it's a breaking change.
    This also affects Select from Joy UI.

    // before
    <SelectUnstyled onChange={(newValue) => { /* ... */ }} />
    
    // after
    <SelectUnstyled onChange={(event, newValue) => { /* ... */ }} />
Docs
Core

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 6 times, most recently from 4abbccb to 2f6fb4a Compare September 13, 2022 10:39
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 2f6fb4a to 5517560 Compare September 19, 2022 14:57
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 4a1eaee to 49eb461 Compare October 3, 2022 16:29
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 366b7fc to 9fab99d Compare October 18, 2022 09:02
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 890ea58 to 0b9224b Compare October 31, 2022 17:06
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from fa1aa49 to c41ea40 Compare November 8, 2022 10:48
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from f8bfe42 to 6926641 Compare November 8, 2022 18:42
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 6926641 to 4722d7b Compare November 15, 2022 11:54
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 1e308fd to b811dc3 Compare November 28, 2022 17:34
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from b811dc3 to a0046da Compare December 6, 2022 11:19
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from a0046da to cd48843 Compare December 13, 2022 13:43
@renovate renovate bot changed the title fix(deps): update material-ui monorepo Update material-ui monorepo Dec 17, 2022
@renovate renovate bot changed the title Update material-ui monorepo fix(deps): update material-ui monorepo Dec 17, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from b2b9bbc to a385c75 Compare December 26, 2022 15:55
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from f62a610 to 47c3655 Compare January 9, 2023 18:12
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 47c3655 to 8c76ae5 Compare January 18, 2023 06:37
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from c6a333f to 1168c9d Compare January 23, 2023 22:54
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 1168c9d to 1ab8685 Compare January 31, 2023 11:25
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 1ab8685 to 737249c Compare February 7, 2023 11:27
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from ded02c7 to 645ddb0 Compare February 20, 2023 16:20
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from 0f3b74f to 2e31e12 Compare March 6, 2023 23:28
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 2e31e12 to 90d2497 Compare March 14, 2023 10:22
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch 2 times, most recently from f11fa2f to fa7f1d7 Compare March 28, 2023 15:57
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from fa7f1d7 to 8952e1c Compare April 4, 2023 17:01
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 8952e1c to ef5d851 Compare April 11, 2023 15:43
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.

None yet

0 participants