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

chore(deps): update dependency @mui/material to v5.11.13 #40

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 9, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/material (source) 5.10.3 -> 5.11.13 age adoption passing confidence

Release Notes

mui/material-ui

v5.11.13

Compare Source

Mar 14, 2023

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

@mui/material@5.11.13
@mui/base@5.0.0-alpha.121
Docs

All contributors of this release in alphabetical order: @​erikian, @​hbjORbj, @​HeVictor, @​hrutik7, @​joserodolfofreitas, @​m4theushw, @​michaldudak, @​oliviertassinari, @​oyar99, @​rayrw, @​sai6855, @​siriwatknp, @​skevprog

v5.11.12

Compare Source

Mar 6, 2023

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

  • @​michaldudak added the multiselect functionality to SelectUnstyled (#​36274)
  • @​mnajdova updated extendTheme so that it can generate CSS variables with default values. This means that the CssVarsProvider is no longer required for Joy UI when using the default theme (#​35739)
  • other 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.11.12
@mui/lab@5.0.0-alpha.122
@mui/system@5.11.12
Breaking changes
  • ​[core] Generate vars in extendTheme (#​35739) @​mnajdova

    The shouldSkipGeneratingVar prop was moved from the createCssVarsProvider's option to the theme. If the default theme does not use extendTheme from Material UI or Joy UI, it needs to be wrapped inside unstable_createCssVarsTheme - a util exported from the MUI System. Below is an example of how the migration should look like:

     import {
        unstable_createCssVarsProvider as createCssVarsProvider,
    +   unstable_createCssVarsTheme as createCssVarsTheme,
     } from '@​mui/system';
    
     const { CssVarsProvider } = createCssVarsProvider({
    -  theme: {
    +  theme: createCssVarsTheme({
         colorSchemes: {
           light: {
             typography: {
               htmlFontSize: '16px',
               h1: {
                 fontSize: '1rem',
                 fontWeight: 500,
               },
             },
           },
         },
    +    shouldSkipGeneratingVar: (keys) => keys[0] === 'typography' && keys[1] === 'h1',
    -  },
    +  }),
       defaultColorScheme: 'light',
    -  shouldSkipGeneratingVar: (keys) => keys[0] === 'typography' && keys[1] === 'h1',
     });

    Or you can define it directly in the theme prop:

     <CssVarsProvider
    +   theme={createCssVarsProvider({
    +    // other theme keys
    +    shouldSkipGeneratingVar: (keys) => keys[0] === 'typography' && keys[1] === 'h1'
    +   })} />

    This breaking change only affects experimental APIs

@mui/base@5.0.0-alpha.120
Breaking changes
  • ​[Select][base] Add the multiselect functionality to SelectUnstyled (#​36274) @​michaldudak

    The MultiSelectUnstyled was removed. The SelectUnstyled component with the multiple prop should be used instead. Additionally, the SelectUnstyledProps received a second generic parameter: Multiple extends boolean. If you deal with strictly single- or multi-select components, you can hard-code this parameter to false or true, respectively. Below is an example of how the migration should look like:

    -import MultiSelectUnstyled from '@&#8203;mui/base/MultiSelectUnstyled';
    +import SelectUnstyled from '@&#8203;mui/base/SelectUnstyled';
    
     export default App() {
    -return <MultiSelectUnstyled />
    +return <SelectUnstyled multiple />
     }
Changes
@mui/joy@5.0.0-alpha.70
Breaking changes
  • ​[Joy] Change CSS variables naming for components (#​36282) @​hbjORbj

    Joy UI has new naming standards of the CSS variables for its components. Below is an example of how the migration should look like:

    -<List sx={{ py: 'var(--List-divider-gap)' }}>
    +<List sx={{ py: 'var(--ListDivider-gap)' }}>
    -<Switch sx={{ '--Switch-track-width': '40px' }}>
    +<Switch sx={{ '--Switch-trackWidth': '40px' }}>
Changes
Docs
Core

All contributors of this release in alphabetical order: @​cherniavskii, @​hbjORbj, @​joserodolfofreitas, @​Kuba429, @​Kundan28, @​LukasTy, @​MBilalShafi, @​michaldudak, @​mnajdova, @​NoFr1ends, @​oliviertassinari, @​Osman-Sodefa, @​Paatus, @​sai6855, @​SaidMarar, @​varunmulay22, @​ZeeshanTamboli

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

Compare Source

Feb 20, 2023

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.11.10
@mui/joy@5.0.0-alpha.68
Docs
Core

All contributors of this release in alphabetical order: @​Aleff13, @​dani-mp, @​danilo-leal, @​hbjORbj, @​mj12albert, @​oliviertassinari, @​PunitSoniME, @​sai6855, @​samuelsycamore, @​siriwatknp, @​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.8

Compare Source

Feb 7, 2023

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

@mui/material@5.11.8
@mui/joy@5.0.0-alpha.66
@mui/system@5.11.8
@mui/styled-engine@5.11.8
Docs
Core

All contributors of this release in alphabetical order: @​alexownejazayeri, @​ArthurPedroti, @​badalsaibo, @​chuanyu0201, @​joserodolfofreitas, @​m4theushw, @​michaldudak, @​mj12albert, @​mnajdova, @​oliviertassinari, @​sai6855, @​siriwatknp, @​yoskeoka, @​ZeeshanTamboli

v5.11.7

Compare Source

Jan 31, 2023

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

  • @​siriwatknp added Table component to Joy UI (#​35872)
  • many other 🐛 bug fixes and 📚 documentation improvements
@mui/material@5.11.7
@mui/base@5.0.0-alpha.116
@mui/joy@5.0.0-alpha.65
Breaking changes
  • ​[Joy] Replace Joy[Component] classname with Mui[Component] classname for all slots of components (#​35718) @​hbjORbj

    • Renames the classname prefix of all Joy UI components from 'Joy' to 'Mui'.
     <Button
    -sx={{ '& .JoyButton-root': { '& .JoyButton-button': {} } }}
    +sx={{ '& .MuiButton-root': { '& .MuiButton-button': {} } }}
     />

    You can use this codemod to help with the migration.

  • ​[Joy] Replace row prop with orientation prop in all Joy UI components (#​35721) @​hbjORbj

    • Transforms row prop to orientation prop across Card, List and RadioGroup components in Joy UI.
     <Card
    -row
    +orientation={"horizontal"}
     />

    You can use this codemod to help with the migration.

Changes
Docs
Core

All contributors of this release in alphabetical order: @​ArthurPedroti, @​badalsaibo, @​gorjiali, @​hbjORbj, @​HeVictor, @​idebeijer, @​joserodolfofreitas, @​marktoman, @​oliviertassinari, @​sai6855, @​SaidMarar, @​samuelsycamore, @​siriwatknp, @​Vivek-Prajapatii, @​ZeeshanTamboli

v5.11.6

Compare Source

Jan 23, 2023

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

  • @​ZeeshanTamboli improved the logic for handling the value label in the SliderUnstyled (#​35805)
  • many other 🐛 bug fixes and 📚 documentation improvements
@mui/material@5.11.6
@mui/base@5.0.0-alpha.115
Breaking changes
  • ​[SliderUnstyled] Improved logic for displaying the value label (#​35805) @​ZeeshanTamboli

    • The valueLabelDisplay prop is removed from SliderUnstyled. The prop was not working as intended in SliderUnstyled (See #​35398). You can instead provide a valueLabel slot with the slots prop API to show the value label:
    - <SliderUnstyled valueLabelDisplay="on" />
    + <SliderUnstyled slots={{ valueLabel: SliderValueLabel }} />

    The following demo shows how to show a value label when it is hovered over with the thumb: https://mui.com/base/react-slider/#value-label

    • The following classes are removed from sliderUnstyledClasses since they are not needed for the value label:
    - valueLabel
    - valueLabelOpen
    - valueLabelCircle
    - valueLabelLabel

    In the custom value label component, you can define your own classNames and target them with CSS.

    • The SliderValueLabelUnstyled component is removed from SliderUnstyled. You should provide your own custom component for the value label.

    • To avoid using React.cloneElement API in value label, the component hierarchy structure of the value label is changed. The value label is now inside the Thumb slot - Thumb -> Input, ValueLabel.

Changes
@mui/joy@5.0.0-alpha.64
  • ​[Avatar][joy] Remove imgProps prop and add Codemod script for migration (#​35859) @​hbjORbj
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.

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

@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from a13483f to 6fd7318 Compare September 12, 2022 15:29
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.4 chore(deps): update dependency @mui/material to v5.10.5 Sep 12, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 6fd7318 to ec0d606 Compare September 19, 2022 16:52
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.5 chore(deps): update dependency @mui/material to v5.10.6 Sep 19, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from ec0d606 to 0479b29 Compare September 27, 2022 04:45
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.6 chore(deps): update dependency @mui/material to v5.10.7 Sep 27, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 0479b29 to 80de50d Compare October 3, 2022 19:10
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.7 chore(deps): update dependency @mui/material to v5.10.8 Oct 3, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 80de50d to 243025f Compare October 11, 2022 14:19
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.8 chore(deps): update dependency @mui/material to v5.10.9 Oct 11, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 243025f to ed2cab0 Compare October 18, 2022 10:52
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.9 chore(deps): update dependency @mui/material to v5.10.10 Oct 18, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from ed2cab0 to a1f5e00 Compare October 25, 2022 10:33
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.10 chore(deps): update dependency @mui/material to v5.10.11 Oct 25, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from a1f5e00 to e9399a2 Compare October 26, 2022 12:55
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.11 chore(deps): update dependency @mui/material to v5.10.10 Oct 26, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from e9399a2 to 53272da Compare October 28, 2022 10:07
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.10 chore(deps): update dependency @mui/material to v5.10.11 Oct 28, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 53272da to a81107d Compare November 3, 2022 18:03
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from a81107d to 68ac7e4 Compare November 20, 2022 20:58
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.11 chore(deps): update dependency @mui/material to v5.10.14 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from 68ac7e4 to fa89132 Compare March 16, 2023 21:33
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.10.14 chore(deps): update dependency @mui/material to v5.11.12 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/material-ui-monorepo branch from fa89132 to ac90646 Compare March 18, 2023 23:57
@renovate renovate bot changed the title chore(deps): update dependency @mui/material to v5.11.12 chore(deps): update dependency @mui/material to v5.11.13 Mar 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants