Update material-ui monorepo #7

Merged
kjuulh merged 1 commits from renovate/material-ui-monorepo into main 2022-10-26 20:12:52 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
@mui/lab (source) dependencies patch 5.0.0-alpha.50 -> 5.0.0-alpha.105
@mui/material (source) dependencies minor 5.0.3 -> 5.10.11

Release Notes

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

v5.0.0-alpha.105

Compare Source

v5.0.0-alpha.104

Compare Source

v5.0.0-alpha.103

Compare Source

BREAKING CHANGE
  • base] `components` -> `slots` API rename ([#​34693](https://github.com/mui/material-ui/issues/34693)) [@​michaldudak](https://github.com/michaldudak)
    
    -   Change all occurrences of components and componentsProps props in Base components to slots and slotProps, respectively.
    -   Change casing of slots' fields to camelCase
    
    ```diff
    -<SwitchUnstyled components={{Root: CustomRoot}} componentsProps={{rail: { className: 'custom-rail' }}} />
    +<SwitchUnstyled slots={{root: CustomRoot}} slotProps={{rail: { className: 'custom-rail' }}} />
    ```
    
    
  • base] Make CSS class prefixes consistent ([#&#8203;33411](https://github.com/mui/material-ui/issues/33411)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    **This is a breaking change for anyone who depends on the class names applied to Base components.**
    If you use the `<component>UnstyledClasses` objects, you won't notice a difference. Only if you depend on the resulting class names (e.g. in CSS stylesheets), you'll have to adjust your code.
    
    ```diff
    -.ButtonUnstyled-root { ... };
    +.MuiButton-root { ... };
    ```
    
    
Changes
  • test] Test all Base components with describeConformanceUnstyled ([#&#8203;34825](https://github.com/mui/material-ui/issues/34825)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

v5.0.0-alpha.102

Compare Source

  • MultiSelect]\[base] Prevent the renderValue prop from being propagated to the DOM ([#&#8203;34698](https://github.com/mui/material-ui/issues/34698)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • NoSsr] Convert code to TypeScript ([#&#8203;34735](https://github.com/mui/material-ui/issues/34735)) [@&#8203;mbayucot](https://github.com/mbayucot)
    
    

v5.0.0-alpha.101

Compare Source

v5.0.0-alpha.100

Compare Source

v5.0.0-alpha.99

Compare Source

Breaking changes
  • TrapFocus] Rename TrapFocus to FocusTrap ([#&#8203;34216](https://github.com/mui/material-ui/issues/34216)) [@&#8203;kabernardes](https://github.com/kabernardes)
    
    ```diff
    -import TrapFocus from '@&#8203;mui/base/TrapFocus';
    +import FocusTrap from '@&#8203;mui/base/FocusTrap';
    ```
    
    
Changes
  • MultiSelect] Require a single tap to select an item on mobile Chrome ([#&#8203;33932](https://github.com/mui/material-ui/issues/33932)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

v5.0.0-alpha.98

Compare Source

Breaking changes
  • Select]\[base] Add event parameter to the onChange callback ([#&#8203;34158](https://github.com/mui/material-ui/issues/34158)) [@&#8203;michaldudak](https://github.com/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.
    
    ```jsx
    // before
    <SelectUnstyled onChange={(newValue) => { /* ... */ }} />
    
    // after
    <SelectUnstyled onChange={(event, newValue) => { /* ... */ }} />
    ```
    
    

v5.0.0-alpha.97

Compare Source

v5.0.0-alpha.96

Compare Source

v5.0.0-alpha.95

Compare Source

  • Button]\[base] Prevent too many ref updates ([#&#8203;33882](https://github.com/mui/material-ui/issues/33882)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • Select]\[base] Fix typo in listbox blur event handler ([#&#8203;34120](https://github.com/mui/material-ui/issues/34120)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • TrapFocus] Improve tab test and simplify demo ([#&#8203;34008](https://github.com/mui/material-ui/issues/34008)) [@&#8203;EthanStandel](https://github.com/EthanStandel)
    
    

v5.0.0-alpha.94

Compare Source

v5.0.0-alpha.93

v5.0.0-alpha.91

v5.0.0-alpha.90

v5.0.0-alpha.89

  • Base] Change the order of class names merged in useSlotProps ([#&#8203;33383](https://github.com/mui/material-ui/issues/33383)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • ModalUnstyled] Accept callbacks in componentsProps ([#&#8203;33181](https://github.com/mui/material-ui/issues/33181)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • SelectUnstyled] Accept callbacks in componentsProps ([#&#8203;33197](https://github.com/mui/material-ui/issues/33197)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • TabsUnstyled] Accept callbacks in componentsProps ([#&#8203;33284](https://github.com/mui/material-ui/issues/33284)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

v5.0.0-alpha.88

  • base] Remove a type incompatible with Typescript 3.5 ([#&#8203;33361](https://github.com/mui/material-ui/issues/33361)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • BadgeUnstyled] Export BadgeUnstyledOwnProps interface to fix typescript compiler error ([#&#8203;33314](https://github.com/mui/material-ui/issues/33314)) [@&#8203;aaronlademann-wf](https://github.com/aaronlademann-wf)
    
  • TablePaginationUnstyled] Accept callbacks in componentsProps ([#&#8203;33309](https://github.com/mui/material-ui/issues/33309)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

v5.0.0-alpha.87

v5.0.0-alpha.86

v5.0.0-alpha.85

v5.0.0-alpha.84

  • base] Remove [@&#8203;mui/system](https://github.com/mui/system) in tests ([#&#8203;32945](https://github.com/mui/material-ui/issues/32945)) [@&#8203;kevinji](https://github.com/kevinji)
    
  • ButtonUnstyled] Accept callbacks in componentsProps ([#&#8203;32991](https://github.com/mui/material-ui/issues/32991)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • SwitchUnstyled] Accept callbacks in componentsProps ([#&#8203;32993](https://github.com/mui/material-ui/issues/32993)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • TablePaginationUnstyled] Define ownerState and slot props' types ([#&#8203;32905](https://github.com/mui/material-ui/issues/32905)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • TabPanelUnstyled] Define ownerState and slot props' types ([#&#8203;32928](https://github.com/mui/material-ui/issues/32928)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • TabsListUnstyled] Define ownerState and slot props' types ([#&#8203;32925](https://github.com/mui/material-ui/issues/32925)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

v5.0.0-alpha.83

v5.0.0-alpha.82

v5.0.0-alpha.81

v5.0.0-alpha.80

  • ButtonUnstyled] Fix keyboard navigation on customized elements ([#&#8203;32204](https://github.com/mui/material-ui/issues/32204)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

v5.0.0-alpha.78

  • InputUnstyled] `multiline` property should not log DOM warnings for `maxRows` and `minRows` props ([#&#8203;32401](https://github.com/mui/material-ui/issues/32401)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
    

v5.0.0-alpha.77

v5.0.0-alpha.76

  • ButtonUnstyled] Allow receiving focus when disabled ([#&#8203;32090](https://github.com/mui/material-ui/issues/32090)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

v5.0.0-alpha.75

v5.0.0-alpha.74

Breaking changes
  • ​[base] Remove BackdropUnstyled component (#​31923) @​mnajdova

    The BackdropUnstyled component was removed from the @mui/base package, as it did not have any specific logic, except adding an aria-hidden attribute on the div it rendered. This is not enough to justify it's existence in the base package. Here is an example alternative component you can use:

    const BackdropUnstyled = React.forwardRef<HTMLDivElement, { open?: boolean; className: string }>(
      (props, ref) => {
        const { open, className, ...other } = props;
        return <div className={clsx({ 'MuiBackdrop-open': open }, className)} ref={ref} {...other} />;
      },
    );
    
  • ​[TrapFocus] Move docs to Base and drop the Unstyled prefix (#​31954) @​michaldudak

    Removed the Unstyled_ prefix from the Base export (it remains in the Material UI export, though).

    -import { Unstyled_TrapFocus } from '@&#8203;mui/base';
    +import { TrapFocus } from '@&#8203;mui/base';
    
     // or
    
    -import TrapFocus from '@&#8203;mui/base/Unstyled_TrapFocus';
    +import TrapFocus from '@&#8203;mui/base/TrapFocus';
    
Changes

v5.0.0-alpha.73

v5.0.0-alpha.72

v5.0.0-alpha.71

v5.0.0-alpha.70

  • ​[SelectUnstyled, MultiSelectUnstyled, ButtonUnstyled] Export additional types to make customization easier (#​31172) @​michaldudak

v5.0.0-alpha.69

  • DatePicker] Fix passing clearable prop ([#&#8203;30786](https://github.com/mui/material-ui/issues/30786)) [@&#8203;alisasanib](https://github.com/alisasanib)
    
    

v5.0.0-alpha.68

v5.0.0-alpha.67

v5.0.0-alpha.66

v5.0.0-alpha.65

  • Masonry] Observe every masonry child to trigger computation when needed ([#&#8203;29896](https://github.com/mui/material-ui/issues/29896)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • MobileDatePicker] Fix calling onOpen when readOnly is true ([#&#8203;30561](https://github.com/mui/material-ui/issues/30561)) [@&#8203;alisasanib](https://github.com/alisasanib)
    
    

v5.0.0-alpha.62

v5.0.0-alpha.61

  • pickers] Fix the wrong MuiClockPicker's ArrowSwitcher slot name ([#&#8203;30226](https://github.com/mui/material-ui/issues/30226)) [@&#8203;rejetto](https://github.com/rejetto)
    
    

v5.0.0-alpha.60

v5.0.0-alpha.59

v5.0.0-alpha.56

  • FormControlUnstyled] `focused` is always false unless explicitly set to `true` [@&#8203;mwilkins91](https://github.com/mwilkins91)
    
  • TabsUnstyled] Introduce new component ([#&#8203;29597](https://github.com/mui/material-ui/issues/29597)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
    

v5.0.0-alpha.55

Breaking changes
  • ​[core] Rename mui/core to mui/base (#​29585) @​michaldudak

    Based on the results of the poll and our internal discussions, we decided to rename the @mui/core package to @mui/base. The main rationale for this is the fact that we use the term "Core" to refer to the core components product family, the one that includes Material Design components, unstyled components, System utilities, etc. Therefore, @​mui/core was effectively a subset of MUI Core. This was confusing.

    The new name better reflects the purpose of the package: it contains unstyled components, hooks, and utilities that serve as a base to build on.

    -import { useSwitch } from '@&#8203;mui/core/SwitchUnstyled';
    +import { useSwitch } from '@&#8203;mui/base/SwitchUnstyled';
    

v5.0.0-alpha.54

v5.0.0-alpha.52

v5.0.0-alpha.51

  • CircularProgress]\[joy] Fix classnames and add test ([#&#8203;34806](https://github.com/mui/material-ui/issues/34806)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • Joy] Allow string type for `size` prop in components ([#&#8203;34805](https://github.com/mui/material-ui/issues/34805)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
    
mui/material-ui (@​mui/material)

v5.10.11

Compare Source

Oct 25, 2022

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

  • 🔧 Moved components to slots prop starting at MUI Base to create consistency across products
  • Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
@mui/material@5.10.11
  • InputBase] Fix `onInvalid` to use HTMLInputElement | HTMLTextAreaElement Element type ([#&#8203;33162](https://github.com/mui/material-ui/issues/33162)) [@&#8203;KuSh](https://github.com/KuSh)
    
  • Alert] Add `components` and `componentsProps` props to allow close action overrides ([#&#8203;33582](https://github.com/mui/material-ui/issues/33582)) [@&#8203;jake-collibra](https://github.com/jake-collibra)
    
    
@mui/base@5.0.0-alpha.103
BREAKING CHANGE
  • base] `components` -> `slots` API rename ([#&#8203;34693](https://github.com/mui/material-ui/issues/34693)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    -   Change all occurrences of components and componentsProps props in Base components to slots and slotProps, respectively.
    -   Change casing of slots' fields to camelCase
    
    ```diff
    -<SwitchUnstyled components={{Root: CustomRoot}} componentsProps={{rail: { className: 'custom-rail' }}} />
    +<SwitchUnstyled slots={{root: CustomRoot}} slotProps={{rail: { className: 'custom-rail' }}} />
    ```
    
    
  • base] Make CSS class prefixes consistent ([#&#8203;33411](https://github.com/mui/material-ui/issues/33411)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    **This is a breaking change for anyone who depends on the class names applied to Base components.**
    If you use the `<component>UnstyledClasses` objects, you won't notice a difference. Only if you depend on the resulting class names (e.g. in CSS stylesheets), you'll have to adjust your code.
    
    ```diff
    -.ButtonUnstyled-root { ... };
    +.MuiButton-root { ... };
    ```
    
    
Changes
  • test] Test all Base components with describeConformanceUnstyled ([#&#8203;34825](https://github.com/mui/material-ui/issues/34825)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
@mui/joy@5.0.0-alpha.51
  • CircularProgress]\[joy] Fix classnames and add test ([#&#8203;34806](https://github.com/mui/material-ui/issues/34806)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • Joy] Allow string type for `size` prop in components ([#&#8203;34805](https://github.com/mui/material-ui/issues/34805)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
    
Docs
  • Revert "[docs] Fix search icons in other languages (#​34823)" @​oliviertassinari
  • Revert "[core] Move SearchIcons to docs src folder (#​34802)" @​oliviertassinari
  • Revert "[docs] Live demos (#​34454)" @​oliviertassinari
  • Update the order of operations for pagination example so that slicing takes place after sorting. (#​34189) @​marceliwac
  • docs] Gatsby Description in Joy dark-mode ([#&#8203;34702](https://github.com/mui/material-ui/issues/34702)) [@&#8203;pixelass](https://github.com/pixelass)
    
  • docs] Add notification for blogpost MUI X v6 alpha ([#&#8203;34809](https://github.com/mui/material-ui/issues/34809)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
  • docs] Polish Crowdin config ([#&#8203;34852](https://github.com/mui/material-ui/issues/34852)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix a few style standard deviations [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Enforce no trailing spaces ([#&#8203;34762](https://github.com/mui/material-ui/issues/34762)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Enforce correct git diff format ([#&#8203;34765](https://github.com/mui/material-ui/issues/34765)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix Toolpad docs 301 route ([#&#8203;34843](https://github.com/mui/material-ui/issues/34843)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap)
    
  • docs] Replace initial value with theme white ([#&#8203;34822](https://github.com/mui/material-ui/issues/34822)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Remove localization redirects ([#&#8203;34844](https://github.com/mui/material-ui/issues/34844)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Fix search icons in other languages ([#&#8203;34823](https://github.com/mui/material-ui/issues/34823)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix JavaScript capitalization [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Update new links to MD2 ([#&#8203;34848](https://github.com/mui/material-ui/issues/34848)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Update future work items on X landing page ([#&#8203;34810](https://github.com/mui/material-ui/issues/34810)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
  • website] Add Toolpad docs to navigation ([#&#8203;34749](https://github.com/mui/material-ui/issues/34749)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap)
    
    
Core
  • core] Remove dead files ([#&#8203;34850](https://github.com/mui/material-ui/issues/34850)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Fix revert conflict [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Fix a few CodeQL errors ([#&#8203;34766](https://github.com/mui/material-ui/issues/34766)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Harden GitHub Actions permissions ([#&#8203;34769](https://github.com/mui/material-ui/issues/34769)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Remove the codeowners file ([#&#8203;34876](https://github.com/mui/material-ui/issues/34876)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

All contributors of this release in alphabetical order: @​bharatkashyap, @​hbjORbj, @​jake-collibra, @​joserodolfofreitas, @​KuSh, @​marceliwac, @​michaldudak, @​oliviertassinari, @​pixelass, @​siriwatknp

v5.10.10

Compare Source

Oct 18, 2022

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

  • 🖌 Thanks to the efforts of @​bharatkashyap and @​nihgwu, we now have editable demos across our docs (#​34454)!
  • 🚀 The Tooltip component has been added to Joy UI by @​hbjORbj (#​34509).
  • ⚙️ We started converting the remaining JS components in MUI Base to TypeScript.
    @​mbayucot finished the first PR with the conversion of the NoSsr code (#​34735).
  • And more 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.10.10
  • Popover] Fix paper position flash on open ([#&#8203;34546](https://github.com/mui/material-ui/issues/34546)) [@&#8203;TheUnlocked](https://github.com/TheUnlocked)
    
  • SwipeableDrawer] Make component `defaultProps` overridable ([#&#8203;34643](https://github.com/mui/material-ui/issues/34643)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
    
@mui/system@5.10.10
  • system] Support CSS `grey` color in `sx` ([#&#8203;34548](https://github.com/mui/material-ui/issues/34548)) [@&#8203;TheUnlocked](https://github.com/TheUnlocked)
    
    
@mui/styles@5.10.10
  • styles] Use memoized context in StylesProvider ([#&#8203;34637](https://github.com/mui/material-ui/issues/34637)) [@&#8203;mohd-akram](https://github.com/mohd-akram)
    
    
@mui/joy@5.0.0-alpha.50
  • Select]\[joy] Added hidden input element ([#&#8203;34657](https://github.com/mui/material-ui/issues/34657)) [@&#8203;zee-bit](https://github.com/zee-bit)
    
  • Slider]\[joy] Add global variant to slider ([#&#8203;34733](https://github.com/mui/material-ui/issues/34733)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Tooltip]\[joy] Add component ([#&#8203;34509](https://github.com/mui/material-ui/issues/34509)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
    
@mui/base@5.0.0-alpha.102
  • MultiSelect]\[base] Prevent the renderValue prop from being propagated to the DOM ([#&#8203;34698](https://github.com/mui/material-ui/issues/34698)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • NoSsr] Convert code to TypeScript ([#&#8203;34735](https://github.com/mui/material-ui/issues/34735)) [@&#8203;mbayucot](https://github.com/mbayucot)
    
    
Docs
  • docs] Fix the Autocomplete Highlighting example ([#&#8203;34184](https://github.com/mui/material-ui/issues/34184)) [@&#8203;hayawata3626](https://github.com/hayawata3626)
    
  • docs] Fix typos in Base (Menu, Tabs) and Joy UI (Chip) ([#&#8203;34803](https://github.com/mui/material-ui/issues/34803)) [@&#8203;rvrvrv](https://github.com/rvrvrv)
    
  • docs] Use new editing API in homepage demos ([#&#8203;34220](https://github.com/mui/material-ui/issues/34220)) [@&#8203;m4theushw](https://github.com/m4theushw)
    
  • docs] Live demos ([#&#8203;34454](https://github.com/mui/material-ui/issues/34454)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap)
    
  • docs] Fix typos in Joy UI Switch ([#&#8203;34728](https://github.com/mui/material-ui/issues/34728)) [@&#8203;ndresx](https://github.com/ndresx)
    
  • docs] Avoid scrollbar in the code demos ([#&#8203;34741](https://github.com/mui/material-ui/issues/34741)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Revise the Joy UI "Automatic adjustment" page ([#&#8203;34614](https://github.com/mui/material-ui/issues/34614)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Revise and rename the Joy UI "Perfect dark mode" page ([#&#8203;34613](https://github.com/mui/material-ui/issues/34613)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Revise the Joy UI "Global variants" page ([#&#8203;34595](https://github.com/mui/material-ui/issues/34595)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Basic link verification at PR level ([#&#8203;34588](https://github.com/mui/material-ui/issues/34588)) [@&#8203;alexfauquette](https://github.com/alexfauquette)
    
  • docs] Add a missing comma in the customization example ([#&#8203;34617](https://github.com/mui/material-ui/issues/34617)) [@&#8203;AbayKinayat](https://github.com/AbayKinayat)
    
  • website] Clarify Pro/Premium support ([#&#8203;34607](https://github.com/mui/material-ui/issues/34607)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Fix home page dark mode flicker ([#&#8203;33545](https://github.com/mui/material-ui/issues/33545))
    
  • website] Update the state of the date pickers on the landing page ([#&#8203;34750](https://github.com/mui/material-ui/issues/34750)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
    
Core
  • core] Clean conditionals ([#&#8203;34772](https://github.com/mui/material-ui/issues/34772)) [@&#8203;pedroprado010](https://github.com/pedroprado010)
    
  • core] Temporary remove the authorization ([#&#8203;34796](https://github.com/mui/material-ui/issues/34796)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • core] Avoid slower CI run statues [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Improve the playground DX ([#&#8203;34739](https://github.com/mui/material-ui/issues/34739)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Link Netlify in the danger comment ([#&#8203;34688](https://github.com/mui/material-ui/issues/34688)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Fix CI after out of sync merge [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Enforce straight quote ([#&#8203;34686](https://github.com/mui/material-ui/issues/34686)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Add code scanning via CodeQL ([#&#8203;34707](https://github.com/mui/material-ui/issues/34707)) [@&#8203;DanailH](https://github.com/DanailH)
    
  • core] Fix some upcoming eslint issues ([#&#8203;34727](https://github.com/mui/material-ui/issues/34727)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Auto-fix upcoming eslint issues ([#&#8203;34644](https://github.com/mui/material-ui/issues/34644)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • core] Move SearchIcons to docs src folder ([#&#8203;34802](https://github.com/mui/material-ui/issues/34802))
    
  • test] Enable `react/no-unstable-nested-components` ([#&#8203;34518](https://github.com/mui/material-ui/issues/34518)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
    

All contributors of this release in alphabetical order: @​AbayKinayat, @​alexfauquette, @​bharatkashyap, @​DanailH, @​eps1lon, @​hayawata3626, @​hbjORbj, @​Janpot, @​joserodolfofreitas, @​m4theushw, @​mbayucot, @​michaldudak, @​mohd-akram, @​ndresx, @​oliviertassinari, @​pedroprado010, @​rvrvrv, @​samuelsycamore, @​siriwatknp, @​TheUnlocked, @​zee-bit

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

Compare Source

Oct 3, 2022

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

@mui/material@5.10.8
@mui/base@5.0.0-alpha.100
@mui/joy@5.0.0-alpha.48
Docs
Core

All contributors of this release in alphabetical order: @​Aporim2051, @​Dustin-Digitar, @​flaviendelangle, @​Garz4, @​hbjORbj, @​hghmn, @​kabernardes, @​kskd1804, @​meenarama, @​minkyngkm, @​mnajdova, @​ndebeiss, @​oliviertassinari, @​peippo, @​rolule, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

v5.10.7

Compare Source

Sep 26, 2022

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

@mui/material@5.10.7
  • CssVarsProvider] Exclude dark mode variables from `:root` stylesheet ([#&#8203;34131](https://github.com/mui/material-ui/issues/34131)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Chip] Add chip classes ([#&#8203;33801](https://github.com/mui/material-ui/issues/33801)) [@&#8203;pratikkarad](https://github.com/pratikkarad)
    
  • Slider] Fix typo in the comments in the source ([#&#8203;34452](https://github.com/mui/material-ui/issues/34452)) [@&#8203;HexM7](https://github.com/HexM7)
    
  • SvgIcon] Fix passing an ownerState to SvgIcon changes the font size ([#&#8203;34429](https://github.com/mui/material-ui/issues/34429)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • Stepper] Fix optional label is not centered when `alternativeLabel` is used ([#&#8203;34335](https://github.com/mui/material-ui/issues/34335)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • Tooltip] Add undefined, null or false in `title` ([#&#8203;34289](https://github.com/mui/material-ui/issues/34289)) [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech)
    
  • Make @​emotion/* fully supported in all Material UI components (#​34451) @​garronej
@mui/system@5.10.7
  • system] Fix parsing of hsla colors in getLuminance ([#&#8203;34437](https://github.com/mui/material-ui/issues/34437)) [@&#8203;ptrfrncsmrph](https://github.com/ptrfrncsmrph)
    
  • system] Fix incorrect type of `shape.borderRadius` in theme ([#&#8203;34076](https://github.com/mui/material-ui/issues/34076)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • system] Replace `enableSystem` with `defaultMode` ([#&#8203;33960](https://github.com/mui/material-ui/issues/33960)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/material@5.0.0-alpha.101
  • deps] Move [@&#8203;mui/types](https://github.com/mui/types) to dependencies ([#&#8203;34384](https://github.com/mui/material-ui/issues/34384)) [@&#8203;Methuselah96](https://github.com/Methuselah96)
    
    
@mui/base@5.0.0-alpha.99
Breaking changes
  • TrapFocus] Rename TrapFocus to FocusTrap ([#&#8203;34216](https://github.com/mui/material-ui/issues/34216)) [@&#8203;kabernardes](https://github.com/kabernardes)
    
    ```diff
    -import TrapFocus from '@&#8203;mui/base/TrapFocus';
    +import FocusTrap from '@&#8203;mui/base/FocusTrap';
    ```
    
    
Changes
  • MultiSelect] Require a single tap to select an item on mobile Chrome ([#&#8203;33932](https://github.com/mui/material-ui/issues/33932)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
@mui/joy@5.0.0-alpha.47
  • Checkbox] spread `value`, `required`, and `readOnly` to input ([#&#8203;34477](https://github.com/mui/material-ui/issues/34477)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Chip] Fix unbinded `onClick` prop ([#&#8203;34455](https://github.com/mui/material-ui/issues/34455)) [@&#8203;HexM7](https://github.com/HexM7)
    
  • Divider] Add `Divider` component ([#&#8203;34403](https://github.com/mui/material-ui/issues/34403)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Radio] spread `readOnly` and `required` to input ([#&#8203;34478](https://github.com/mui/material-ui/issues/34478)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
Docs
  • blog] MUI Base announcement typo fixed ([#&#8203;34409](https://github.com/mui/material-ui/issues/34409)) [@&#8203;prakhargupta1](https://github.com/prakhargupta1)
    
  • blog] Fix typo in date-pickers v5 stable ([#&#8203;34386](https://github.com/mui/material-ui/issues/34386)) [@&#8203;alexfauquette](https://github.com/alexfauquette)
    
  • blog] Update date on date pickers v5 release blog post ([#&#8203;34406](https://github.com/mui/material-ui/issues/34406)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
  • docs] Update `useMenu` and `useMenuItem` hooks demo ([#&#8203;34166](https://github.com/mui/material-ui/issues/34166)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • docs] Update the guide for migrating to TSS ([#&#8203;34417](https://github.com/mui/material-ui/issues/34417)) [@&#8203;garronej](https://github.com/garronej)
    
  • docs] Fix typo in `Grid` docs ([#&#8203;34475](https://github.com/mui/material-ui/issues/34475)) [@&#8203;Dustin-Digitar](https://github.com/Dustin-Digitar)
    
  • docs] Fix typo in `Back to top` section in AppBar docs ([#&#8203;34479](https://github.com/mui/material-ui/issues/34479)) [@&#8203;Dustin-Digitar](https://github.com/Dustin-Digitar)
    
  • docs] Standardize all MUI Core "Installation" pages ([#&#8203;34168](https://github.com/mui/material-ui/issues/34168)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Fix webpack file name to the standard: `webpack.config.js` ([#&#8203;34446](https://github.com/mui/material-ui/issues/34446)) [@&#8203;CodingItWrong](https://github.com/CodingItWrong)
    
  • docs] Fix Select `onChange` call ([#&#8203;34408](https://github.com/mui/material-ui/issues/34408)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Notification for pickers blog - v5 stable ([#&#8203;34400](https://github.com/mui/material-ui/issues/34400)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
  • docs] Improve social sharing of docs pages ([#&#8203;34346](https://github.com/mui/material-ui/issues/34346)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Refine the use of MUI vs. Material UI ([#&#8203;34345](https://github.com/mui/material-ui/issues/34345)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Send feedback directly to a dedicated slack channel ([#&#8203;34196](https://github.com/mui/material-ui/issues/34196)) [@&#8203;alexfauquette](https://github.com/alexfauquette)
    
  • website] Adds Bilal to about page ([#&#8203;34412](https://github.com/mui/material-ui/issues/34412)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi)
    
  • website] Add date range picker to pricing table ([#&#8203;34399](https://github.com/mui/material-ui/issues/34399)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
    
Core
  • core] Document some types in [@&#8203;mui/styled-engine-sc](https://github.com/mui/styled-engine-sc) ([#&#8203;34413](https://github.com/mui/material-ui/issues/34413)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • core] Add yml support to prettier ([#&#8203;33980](https://github.com/mui/material-ui/issues/33980)) [@&#8203;Janpot](https://github.com/Janpot)
    
    

All contributors of this release in alphabetical order: @​abhinav-22-tech, @​alexfauquette, @​CodingItWrong, @​Dustin-Digitar, @​garronej, @​HexM7, @​howlettt, @​Janpot, @​joserodolfofreitas, @​kabernardes, @​MBilalShafi, @​Methuselah96, @​michaldudak, @​mnajdova, @​oliviertassinari, @​prakhargupta1, @​pratikkarad, @​ptrfrncsmrph, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

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
  • TextField] Fix conflict with `Bootstrap` even when label is not defined ([#&#8203;34343](https://github.com/mui/material-ui/issues/34343)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
    
@mui/joy@5.0.0-alpha.46
Breaking changes
  • button]\[joy] Replace `start/endIcon` prop with `start/endDecorator` ([#&#8203;34288](https://github.com/mui/material-ui/issues/34288)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
    **BREAKING CHANGE**: replace `start/endIcon` with `start/endDecorator`.
    
    ```jsx
    // before
    <Button startIcon={...} endIcon={...} />
    
    // after
    <Button startDecorator={...} endDecorator={...} />
    ```
    
    
Changes
  • Joy] Adjust the `Input` and `Textarea` styles ([#&#8203;34281](https://github.com/mui/material-ui/issues/34281)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • menu]\[joy] Set disablePortal default to false ([#&#8203;34283](https://github.com/mui/material-ui/issues/34283)) [@&#8203;tomasz-sodzawiczny](https://github.com/tomasz-sodzawiczny)
    
    
@mui/base@5.0.0-alpha.98
Breaking changes
  • Select]\[base] Add event parameter to the onChange callback ([#&#8203;34158](https://github.com/mui/material-ui/issues/34158)) [@&#8203;michaldudak](https://github.com/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.
    
    ```jsx
    // before
    <SelectUnstyled onChange={(newValue) => { /* ... */ }} />
    
    // after
    <SelectUnstyled onChange={(event, newValue) => { /* ... */ }} />
    ```
    
    
Docs
  • blog] The Date Pickers gets a stable v5 release ([#&#8203;34152](https://github.com/mui/material-ui/issues/34152)) [@&#8203;alexfauquette](https://github.com/alexfauquette)
    
  • blog] Improve image handling ([#&#8203;34222](https://github.com/mui/material-ui/issues/34222)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • blog] Correct 2021 survey data interpretation ([#&#8203;34291](https://github.com/mui/material-ui/issues/34291)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Remove expired AospExtended showcase [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Link the OpenSSF Best Practices card ([#&#8203;34331](https://github.com/mui/material-ui/issues/34331)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix 301 link to external projects [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Move 12 component names to Title Case ([#&#8203;34188](https://github.com/mui/material-ui/issues/34188)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix broken links ([#&#8203;34320](https://github.com/mui/material-ui/issues/34320)) [@&#8203;alexfauquette](https://github.com/alexfauquette)
    
  • docs] Add notification for MUI Base announcement post ([#&#8203;34295](https://github.com/mui/material-ui/issues/34295)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • website] Fix MUI X subscribe email border style ([#&#8203;34330](https://github.com/mui/material-ui/issues/34330)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Improve security header [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
    
Core
  • core] Lock file maintenance ([#&#8203;34161](https://github.com/mui/material-ui/issues/34161)) [@&#8203;renovate](https://github.com/renovate)\[bot]
    
  • core] Issue template: move reproduction steps to the top ([#&#8203;34279](https://github.com/mui/material-ui/issues/34279)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • core] Create shared Next.js baseline config ([#&#8203;34259](https://github.com/mui/material-ui/issues/34259)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] In `typescript-to-proptypes`, respect the value pass to the generic ([#&#8203;34311](https://github.com/mui/material-ui/issues/34311)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle)
    
    

All contributors of this release in alphabetical order: @​alexfauquette, @​flaviendelangle, @​hbjORbj, @​Janpot, @​michaldudak, @​oliviertassinari, @​renovate[bot], @​samuelsycamore, @​siriwatknp, @​tomasz-sodzawiczny, @​ZeeshanTamboli

v5.10.5

Compare Source

Sep 12, 2022

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

@mui/material@5.10.5
@mui/joy@5.0.0-alpha.45
Docs
Core

All contributors of this release in alphabetical order: @​bytasv, @​ChrystianDeMatos, @​hbjORbj, @​HexM7, @​iamxukai, @​kushagra010, @​LukasTy, @​michaldudak, @​oliviertassinari, @​siriwatknp, @​ZeeshanTamboli, @​zillion504

v5.10.4

Compare Source

Sep 5, 2022

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

  • 🚀 Added Alert component to Joy UI (#​33859) @​hbjORbj
  • Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
@mui/material@5.10.4
@mui/joy@5.0.0-alpha.44
@mui/base@5.0.0-alpha.96
Docs
Core

All contributors of this release in alphabetical order: @​cherniavskii, @​DanailH, @​hbjORbj, @​Janpot, @​michaldudak, @​oliviertassinari, @​paulschreiber, @​ropereraLK, @​samuelsycamore, @​siriwatknp, @​viclafouch

v5.10.3

Compare Source

Aug 29, 2022

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

  • @​mnajdova implemented an alternative to OverridableComponent to achieve better dev-time performance (#​32735)
  • Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
@mui/material@5.10.3
  • Autocomplete]\[material] Fix value overflow when `disableClearable` is used ([#&#8203;34053](https://github.com/mui/material-ui/issues/34053)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • Autocomplete] Update unstyled demo to not import Material UI ([#&#8203;34060](https://github.com/mui/material-ui/issues/34060)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • Slider] Remove SliderInput export from d.ts ([#&#8203;34055](https://github.com/mui/material-ui/issues/34055)) [@&#8203;pieetrus](https://github.com/pieetrus)
    
  • TablePagination] Fix select variant not working ([#&#8203;33974](https://github.com/mui/material-ui/issues/33974)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
    
@mui/system@5.10.3
  • system] Fix mode blink when open multiple sessions ([#&#8203;33877](https://github.com/mui/material-ui/issues/33877)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/base@5.0.0-alpha.95
  • Button]\[base] Prevent too many ref updates ([#&#8203;33882](https://github.com/mui/material-ui/issues/33882)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • Select]\[base] Fix typo in listbox blur event handler ([#&#8203;34120](https://github.com/mui/material-ui/issues/34120)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • TrapFocus] Improve tab test and simplify demo ([#&#8203;34008](https://github.com/mui/material-ui/issues/34008)) [@&#8203;EthanStandel](https://github.com/EthanStandel)
    
    
@mui/joy@5.0.0-alpha.43
  • Joy] Fix `role` proptypes ([#&#8203;34119](https://github.com/mui/material-ui/issues/34119)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Refine `componentsProps` for all components ([#&#8203;34077](https://github.com/mui/material-ui/issues/34077)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Radio]\[joy] support `componentsProps` as a function ([#&#8203;34022](https://github.com/mui/material-ui/issues/34022)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Select]\[joy] Improve the a11y on the select field demo ([#&#8203;34073](https://github.com/mui/material-ui/issues/34073)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • Textarea]\[joy] Add `Textarea` component ([#&#8203;33975](https://github.com/mui/material-ui/issues/33975)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
Docs
  • blog] Add Grid v2 announcement ([#&#8203;33926](https://github.com/mui/material-ui/issues/33926)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • blog] Making customizable components ([#&#8203;33183](https://github.com/mui/material-ui/issues/33183)) [@&#8203;alexfauquette](https://github.com/alexfauquette)
    
  • blog] Improve SEO metadata ([#&#8203;33954](https://github.com/mui/material-ui/issues/33954)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Add introduction Base component demos & general uplift ([#&#8203;33896](https://github.com/mui/material-ui/issues/33896)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Fix Gatsby sample config in CSS variables ([#&#8203;34024](https://github.com/mui/material-ui/issues/34024)) [@&#8203;bicstone](https://github.com/bicstone)
    
  • docs] Fix 404 link from Joy to React Router ([#&#8203;34115](https://github.com/mui/material-ui/issues/34115)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix typo in `Select` component ([#&#8203;34091](https://github.com/mui/material-ui/issues/34091)) [@&#8203;HexM7](https://github.com/HexM7)
    
  • docs] Fix 301 links to tss's docs [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fixing Joy UI usage snippet ([#&#8203;34049](https://github.com/mui/material-ui/issues/34049)) [@&#8203;JonathanAsbury-SPS](https://github.com/JonathanAsbury-SPS)
    
  • docs] Fix missing JSX closing tag in Tooltip docs ([#&#8203;34064](https://github.com/mui/material-ui/issues/34064)) [@&#8203;hoangph271](https://github.com/hoangph271)
    
  • website] Add Toolpad to Navigation ([#&#8203;33937](https://github.com/mui/material-ui/issues/33937)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap)
    
  • website] Improve SEO meta description for MUI X [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Improve visual look of code demos ([#&#8203;34070](https://github.com/mui/material-ui/issues/34070)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Fix `DatePicker` component demo on the home page ([#&#8203;34054](https://github.com/mui/material-ui/issues/34054)) [@&#8203;NaveenPantra](https://github.com/NaveenPantra)
    
    
Core
  • core] Offer alternative to `OverridableComponent` via module augmentation for better performance ([#&#8203;32735](https://github.com/mui/material-ui/issues/32735)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • core] Fix prop-type warning in regression tests ([#&#8203;34086](https://github.com/mui/material-ui/issues/34086)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Specify code owners ([#&#8203;33995](https://github.com/mui/material-ui/issues/33995)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • core] Fix scroll restoration ([#&#8203;34037](https://github.com/mui/material-ui/issues/34037)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
    

All contributors of this release in alphabetical order: @​alexfauquette, @​bharatkashyap, @​bicstone, @​danilo-leal, @​EthanStandel, @​HexM7, @​hoangph271, @​JonathanAsbury-SPS, @​michaldudak, @​mnajdova, @​NaveenPantra, @​oliviertassinari, @​pieetrus, @​renovate[bot], @​siriwatknp, @​ZeeshanTamboli

v5.10.2

Compare Source

Aug 22, 2022

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

@mui/material@5.10.2
@mui/system@5.10.2
@mui/joy@5.0.0-alpha.42
@mui/icons-material@5.8.5
Docs
Core

All contributors of this release in alphabetical order: @​AjeetSingh2016, @​alirezahekmati, @​Cerebro92, @​danilo-leal, @​djohalo2, @​jsakas, @​michaldudak, @​mnajdova, @​oliviertassinari, @​ropereraLK, @​samuelsycamore, @​TheUnlocked, @​tomasz-sodzawiczny, @​ZeeshanTamboli

v5.10.1

Compare Source

Oct 25, 2022

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

  • 🔧 Moved components to slots prop starting at MUI Base to create consistency across products
  • Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
@mui/material@5.10.11
  • InputBase] Fix `onInvalid` to use HTMLInputElement | HTMLTextAreaElement Element type ([#&#8203;33162](https://github.com/mui/material-ui/issues/33162)) [@&#8203;KuSh](https://github.com/KuSh)
    
  • Alert] Add `components` and `componentsProps` props to allow close action overrides ([#&#8203;33582](https://github.com/mui/material-ui/issues/33582)) [@&#8203;jake-collibra](https://github.com/jake-collibra)
    
    
@mui/base@5.0.0-alpha.103
BREAKING CHANGE
  • base] `components` -> `slots` API rename ([#&#8203;34693](https://github.com/mui/material-ui/issues/34693)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    -   Change all occurrences of components and componentsProps props in Base components to slots and slotProps, respectively.
    -   Change casing of slots' fields to camelCase
    
    ```diff
    -<SwitchUnstyled components={{Root: CustomRoot}} componentsProps={{rail: { className: 'custom-rail' }}} />
    +<SwitchUnstyled slots={{root: CustomRoot}} slotProps={{rail: { className: 'custom-rail' }}} />
    ```
    
    
  • base] Make CSS class prefixes consistent ([#&#8203;33411](https://github.com/mui/material-ui/issues/33411)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    **This is a breaking change for anyone who depends on the class names applied to Base components.**
    If you use the `<component>UnstyledClasses` objects, you won't notice a difference. Only if you depend on the resulting class names (e.g. in CSS stylesheets), you'll have to adjust your code.
    
    ```diff
    -.ButtonUnstyled-root { ... };
    +.MuiButton-root { ... };
    ```
    
    
Changes
  • test] Test all Base components with describeConformanceUnstyled ([#&#8203;34825](https://github.com/mui/material-ui/issues/34825)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
@mui/joy@5.0.0-alpha.51
  • CircularProgress]\[joy] Fix classnames and add test ([#&#8203;34806](https://github.com/mui/material-ui/issues/34806)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • Joy] Allow string type for `size` prop in components ([#&#8203;34805](https://github.com/mui/material-ui/issues/34805)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
    
Docs
  • Revert "[docs] Fix search icons in other languages (#​34823)" @​oliviertassinari
  • Revert "[core] Move SearchIcons to docs src folder (#​34802)" @​oliviertassinari
  • Revert "[docs] Live demos (#​34454)" @​oliviertassinari
  • Update the order of operations for pagination example so that slicing takes place after sorting. (#​34189) @​marceliwac
  • docs] Gatsby Description in Joy dark-mode ([#&#8203;34702](https://github.com/mui/material-ui/issues/34702)) [@&#8203;pixelass](https://github.com/pixelass)
    
  • docs] Add notification for blogpost MUI X v6 alpha ([#&#8203;34809](https://github.com/mui/material-ui/issues/34809)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
  • docs] Polish Crowdin config ([#&#8203;34852](https://github.com/mui/material-ui/issues/34852)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix a few style standard deviations [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Enforce no trailing spaces ([#&#8203;34762](https://github.com/mui/material-ui/issues/34762)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Enforce correct git diff format ([#&#8203;34765](https://github.com/mui/material-ui/issues/34765)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix Toolpad docs 301 route ([#&#8203;34843](https://github.com/mui/material-ui/issues/34843)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap)
    
  • docs] Replace initial value with theme white ([#&#8203;34822](https://github.com/mui/material-ui/issues/34822)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Remove localization redirects ([#&#8203;34844](https://github.com/mui/material-ui/issues/34844)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Fix search icons in other languages ([#&#8203;34823](https://github.com/mui/material-ui/issues/34823)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix JavaScript capitalization [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Update new links to MD2 ([#&#8203;34848](https://github.com/mui/material-ui/issues/34848)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Update future work items on X landing page ([#&#8203;34810](https://github.com/mui/material-ui/issues/34810)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
  • website] Add Toolpad docs to navigation ([#&#8203;34749](https://github.com/mui/material-ui/issues/34749)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap)
    
    
Core
  • core] Remove dead files ([#&#8203;34850](https://github.com/mui/material-ui/issues/34850)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Fix revert conflict [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Fix a few CodeQL errors ([#&#8203;34766](https://github.com/mui/material-ui/issues/34766)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Harden GitHub Actions permissions ([#&#8203;34769](https://github.com/mui/material-ui/issues/34769)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Remove the codeowners file ([#&#8203;34876](https://github.com/mui/material-ui/issues/34876)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

All contributors of this release in alphabetical order: @​bharatkashyap, @​hbjORbj, @​jake-collibra, @​joserodolfofreitas, @​KuSh, @​marceliwac, @​michaldudak, @​oliviertassinari, @​pixelass, @​siriwatknp

v5.10.0

Compare Source

Aug 8, 2022

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

@mui/material@5.10.0
  • Grid] Prevent crash if spacing is set to zero in theme ([#&#8203;33777](https://github.com/mui/material-ui/issues/33777)) [@&#8203;PunitSoniME](https://github.com/PunitSoniME)
    
  • Grid] Export interface `RegularBreakpoints` to fix type error ([#&#8203;33751](https://github.com/mui/material-ui/issues/33751)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • Skeleton] Add `rounded` variant ([#&#8203;33687](https://github.com/mui/material-ui/issues/33687)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Stepper] Fix classes for icon container ([#&#8203;33734](https://github.com/mui/material-ui/issues/33734)) [@&#8203;pratikkarad](https://github.com/pratikkarad)
    
  • TableCell] Enable size prop overrides via module augmentation ([#&#8203;33816](https://github.com/mui/material-ui/issues/33816)) [@&#8203;brentertz](https://github.com/brentertz)
    
  • Tooltip] Fix tooltip arrow css var background ([#&#8203;33753](https://github.com/mui/material-ui/issues/33753)) [@&#8203;TimoWilhelm](https://github.com/TimoWilhelm)
    
  • useScrollTrigger] Add passive flag to scroll trigger event listener [#&#8203;32437](https://github.com/mui/material-ui/issues/32437) ([#&#8203;33749](https://github.com/mui/material-ui/issues/33749)) [@&#8203;Dsalazar1685](https://github.com/Dsalazar1685)
    
    
@mui/system@5.10.0
@mui/joy@5.0.0-alpha.40
  • Stack] Add new component ([#&#8203;33800](https://github.com/mui/material-ui/issues/33800)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • Breadcrumbs] Add `Breadcrumbs` component ([#&#8203;32697](https://github.com/mui/material-ui/issues/32697)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • Card] Fix wrong api description for `size` prop ([#&#8203;33862](https://github.com/mui/material-ui/issues/33862)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • Miscellaneous fixes (#​33796, #​33750) @​siriwatknp
Docs
  • docs] Create, revise, and expand System "Getting started" docs ([#&#8203;33503](https://github.com/mui/material-ui/issues/33503)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Test new image best practice [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix typo in the ClickAwayListerner name ([#&#8203;33813](https://github.com/mui/material-ui/issues/33813)) [@&#8203;pawelsmigielski](https://github.com/pawelsmigielski)
    
  • docs] Fix link to `Basics` section in `Trap Focus` docs ([#&#8203;33772](https://github.com/mui/material-ui/issues/33772)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • docs] z-index added in popper when used by split button ([#&#8203;33763](https://github.com/mui/material-ui/issues/33763)) [@&#8203;PunitSoniME](https://github.com/PunitSoniME)
    
  • docs] Improve the guide for using [@&#8203;mui/base](https://github.com/mui/base) with Tailwind CSS ([#&#8203;33670](https://github.com/mui/material-ui/issues/33670)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Fix warnings related to Next.js' links ([#&#8203;33693](https://github.com/mui/material-ui/issues/33693)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Add notification to aggregation blogpost ([#&#8203;33745](https://github.com/mui/material-ui/issues/33745)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
  • docs] Add Grid version 2 docs ([#&#8203;33554](https://github.com/mui/material-ui/issues/33554)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • examples] Fix `NextLinkComposedProps` type error ([#&#8203;33842](https://github.com/mui/material-ui/issues/33842)) [@&#8203;adham618](https://github.com/adham618)
    
    
Core
  • blog] Add social card to Tenerife retreat post ([#&#8203;33764](https://github.com/mui/material-ui/issues/33764))
    
  • blog] Fix blue outline bug ([#&#8203;33707](https://github.com/mui/material-ui/issues/33707)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • blog] Improve the width of the layout ([#&#8203;33706](https://github.com/mui/material-ui/issues/33706)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)[@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • core] Remove unnecessary packageName attribute from pages ([#&#8203;33488](https://github.com/mui/material-ui/issues/33488)) [@&#8203;cherniavskii](https://github.com/cherniavskii)
    
  • core] Remove duplicated CODE_OF_CONDUCT ([#&#8203;33702](https://github.com/mui/material-ui/issues/33702)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Update Playwright packages together ([#&#8203;33737](https://github.com/mui/material-ui/issues/33737)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • website] Fix notifications not being marked as read in production ([#&#8203;33756](https://github.com/mui/material-ui/issues/33756)) [@&#8203;cherniavskii](https://github.com/cherniavskii)
    
    

All contributors of this release in alphabetical order: @​adham618, @​brentertz, @​cherniavskii, @​Dsalazar1685, @​hbjORbj, @​iamxukai, @​joserodolfofreitas, @​michaldudak, @​mnajdova, @​oliviertassinari, @​pawelsmigielski, @​pratikkarad, @​PunitSoniME, @​siriwatknp, @​TimoWilhelm, @​ZeeshanTamboli

v5.9.3

Compare Source

Aug 1, 2022

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

  • 🖼️ @​garronej worked on improving the support of Emotion packages in the System (#​33205)
  • Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements
@mui/material@5.9.3
  • Chip] Assign classnames and associated styles for `filled` variant ([#&#8203;33587](https://github.com/mui/material-ui/issues/33587)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • Grid] Fix `columnSpacing` and `rowSpacing` props ignore higher breakpoints with 0 ([#&#8203;33480](https://github.com/mui/material-ui/issues/33480)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • Input] Add the readOnly state class ([#&#8203;33654](https://github.com/mui/material-ui/issues/33654)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • Stack] Responsive styles based on breakpoints should be in the correct order ([#&#8203;33552](https://github.com/mui/material-ui/issues/33552)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
    
@mui/system@5.9.3
  • system] Make @&#8203;emotion/\* fully supported in the System ([#&#8203;33205](https://github.com/mui/material-ui/issues/33205)) [@&#8203;garronej](https://github.com/garronej)
    
    
@mui/codemod@5.9.3
  • codemod] Fix theme-spacing performance ([#&#8203;33691](https://github.com/mui/material-ui/issues/33691)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • codemod] Support [@&#8203;mui](https://github.com/mui) import for variant-prop ([#&#8203;33692](https://github.com/mui/material-ui/issues/33692)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/styled-engine-sc@5.9.3
  • styled-engine-sc] Add missing [@&#8203;babel/runtime](https://github.com/babel/runtime) dependency ([#&#8203;33741](https://github.com/mui/material-ui/issues/33741)) [@&#8203;MonstraG](https://github.com/MonstraG)
    
    
@mui/joy@5.0.0-alpha.38
  • Joy] Add Tabs components ([#&#8203;33664](https://github.com/mui/material-ui/issues/33664)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Miscellaneous fixes ([#&#8203;33685](https://github.com/mui/material-ui/issues/33685)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Update read.me content ([#&#8203;33643](https://github.com/mui/material-ui/issues/33643)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
    
Docs
  • blog] Add blog post about company retreat in Tenerife 🏝 ([#&#8203;33566](https://github.com/mui/material-ui/issues/33566)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • blog] Add blog post to announce the aggregation feature ([#&#8203;33595](https://github.com/mui/material-ui/issues/33595)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
  • blog] Fix horizontal scrollbar with code snippets ([#&#8203;33648](https://github.com/mui/material-ui/issues/33648)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
  • docs] Fix a typo in the code in `Sorting & selecting` Table demo ([#&#8203;33674](https://github.com/mui/material-ui/issues/33674)) [@&#8203;mracette](https://github.com/mracette)
    
  • docs] Fix en-US format in the Skeleton demo ([#&#8203;33699](https://github.com/mui/material-ui/issues/33699)) [@&#8203;husseinsaad98](https://github.com/husseinsaad98)
    
  • docs] Update module reference for `usePagination` ([#&#8203;33675](https://github.com/mui/material-ui/issues/33675)) [@&#8203;fullstackzach](https://github.com/fullstackzach)
    
  • docs] Fix code examples in `styled` API vs `sx` prop docs ([#&#8203;33665](https://github.com/mui/material-ui/issues/33665)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • docs]\[system] Throw an informative error when `theme.vars` is used in `createTheme` and mention this in the theming docs ([#&#8203;33619](https://github.com/mui/material-ui/issues/33619)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • website] Remove legacy redirect [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Add new legal pages ([#&#8203;33650](https://github.com/mui/material-ui/issues/33650)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Clarify when a license in development is required ([#&#8203;33668](https://github.com/mui/material-ui/issues/33668)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Update links to rows pages ([#&#8203;33739](https://github.com/mui/material-ui/issues/33739)) [@&#8203;cherniavskii](https://github.com/cherniavskii)
    
  • website] Update pricing table to add aggregation and row pinning ([#&#8203;33659](https://github.com/mui/material-ui/issues/33659)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
    
Core
  • core] Replace `getInitialProps` with `getStaticProps` ([#&#8203;33684](https://github.com/mui/material-ui/issues/33684)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • core] Remove accidentally added files ([#&#8203;33636](https://github.com/mui/material-ui/issues/33636)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • core] Update packages with security issues ([#&#8203;33679](https://github.com/mui/material-ui/issues/33679)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • core] Add React 17 nightly build ([#&#8203;33594](https://github.com/mui/material-ui/issues/33594)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • core] Update lerna to 5.2.0 ([#&#8203;33635](https://github.com/mui/material-ui/issues/33635)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • core] Prepare isolation of Next.js X app ([#&#8203;33649](https://github.com/mui/material-ui/issues/33649)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Remove thenify version override from package.json resolutions ([#&#8203;33638](https://github.com/mui/material-ui/issues/33638)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • core] Update Node.js to 14 on CircleCI, CodeSandbox, and Netlify ([#&#8203;33642](https://github.com/mui/material-ui/issues/33642)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • test] Replace istanbul-instrumenter-loader with babel-plugin-istanbul ([#&#8203;33666](https://github.com/mui/material-ui/issues/33666)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • test] Run TypeScript module augmentation tests for Joy UI in CI ([#&#8203;33667](https://github.com/mui/material-ui/issues/33667)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
    

All contributors of this release in alphabetical order: @​cherniavskii, @​danilo-leal, @​fullstackzach, @​garronej, @​hbjORbj, @​husseinsaad98, @​joserodolfofreitas, @​michaldudak, @​mnajdova, @​MonstraG, @​mracette, @​oliviertassinari, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

v5.9.2

Compare Source

Jul 25, 2022

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

@mui/material@5.9.2
@mui/base@5.0.0-alpha.91
@mui/joy@5.0.0-alpha.38
Docs
Core

All contributors of this release in alphabetical order: @​AHeiming, @​bairamau, @​bharatkashyap, @​bytasv, @​danilo-leal, @​dd-ssc, @​DinhBaoTran, @​gerdadesign, @​hbjORbj, @​joserodolfofreitas, @​michaldudak, @​MonstraG, @​oliviertassinari, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

v5.9.1

Compare Source

Jul 18, 2022

A big thanks to the 17 contributors who made this release possible. This release is mainly about 🐛 bug fixes and 📚 documentation improvements

@mui/material@5.9.1
@mui/system@5.9.1
@mui/base@5.0.0-alpha.90
@mui/lab@5.0.0-alpha.91
Docs
Core

All contributors of this release in alphabetical order: @​abhinav-22-tech, @​ajhenry, @​ANTARES-KOR, @​anthonypz, @​aravindpanicker, @​GabrielaLokelani, @​HexM7, @​lolaignatova, @​lukeggchapman, @​michaldudak, @​mzedel, @​Nikhilthadani, @​oliviertassinari, @​paustria, @​rickstaa, @​siriwatknp, @​ZeeshanTamboli

v5.9.0

Compare Source

Jul 12, 2022

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

@mui/material@5.9.0
  • CssBaseline] Fixes in overriding style ([#&#8203;33338](https://github.com/mui/material-ui/issues/33338)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • Autocomplete] Remove unnecessary `clsx` wrapper for single className ([#&#8203;33398](https://github.com/mui/material-ui/issues/33398)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • Grid] Export new grid as unstable ([#&#8203;33479](https://github.com/mui/material-ui/issues/33479)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Tooltip] Fix children mouse over detection ([#&#8203;32321](https://github.com/mui/material-ui/issues/32321)) [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming)
    
  • TypeScript] getCssVar autocomplete for Material UI ([#&#8203;33464](https://github.com/mui/material-ui/issues/33464)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • TypeScript] Fix theme options components types to use `Theme` ([#&#8203;33434](https://github.com/mui/material-ui/issues/33434)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • TypeScript] Reexports necessary types for module augmentation ([#&#8203;33397](https://github.com/mui/material-ui/issues/33397)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • ScopedCssBaseline] Add sx typings ([#&#8203;33474](https://github.com/mui/material-ui/issues/33474)) [@&#8203;joebingham-wk](https://github.com/joebingham-wk)
    
    
@mui/system@5.9.0
  • System] Add offset feature to Grid ([#&#8203;33415](https://github.com/mui/material-ui/issues/33415)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • system] Add new `Grid` implementation ([#&#8203;32746](https://github.com/mui/material-ui/issues/32746)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/lab@5.0.0-alpha.90

⚠️ Breaking changes

  • lab] Remove the pickers ([#&#8203;33386](https://github.com/mui/material-ui/issues/33386)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle)
    
    The pickers are moved to MUI X, check out the [migration guide](https://mui.com/x/react-date-pickers/migration-lab/).
    
    

Changes

  • Masonry] Support rem/em values for spacing prop ([#&#8203;33384](https://github.com/mui/material-ui/issues/33384)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
    
@mui/base@5.0.0-alpha.89
  • Base] Change the order of class names merged in useSlotProps ([#&#8203;33383](https://github.com/mui/material-ui/issues/33383)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • ModalUnstyled] Accept callbacks in componentsProps ([#&#8203;33181](https://github.com/mui/material-ui/issues/33181)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • SelectUnstyled] Accept callbacks in componentsProps ([#&#8203;33197](https://github.com/mui/material-ui/issues/33197)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • TabsUnstyled] Accept callbacks in componentsProps ([#&#8203;33284](https://github.com/mui/material-ui/issues/33284)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
@mui/joy@5.0.0-alpha.36
  • Joy] Add guide about using Joy and Material UI together ([#&#8203;33396](https://github.com/mui/material-ui/issues/33396)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Fix variants color palette regressions ([#&#8203;33394](https://github.com/mui/material-ui/issues/33394)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
    
Docs
  • docs] Correcting small grammatical error ([#&#8203;33393](https://github.com/mui/material-ui/issues/33393)) [@&#8203;robyyo](https://github.com/robyyo)
    
  • docs] Link to the correct package on Joy component pages ([#&#8203;33439](https://github.com/mui/material-ui/issues/33439)) [@&#8203;cherniavskii](https://github.com/cherniavskii)
    
  • docs] Fix e2e tests ([#&#8203;33477](https://github.com/mui/material-ui/issues/33477)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix dead links ([#&#8203;33462](https://github.com/mui/material-ui/issues/33462)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Cleanup the migration ([#&#8203;33463](https://github.com/mui/material-ui/issues/33463)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix broken Sponsoring services links [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Improve repo README with light/dark logos, relative links and more ([#&#8203;33356](https://github.com/mui/material-ui/issues/33356)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Update links to MUI X Overview and Introduction pages ([#&#8203;33201](https://github.com/mui/material-ui/issues/33201)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Update to React 18 ([#&#8203;33196](https://github.com/mui/material-ui/issues/33196)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Simplify "Upload button" demo ([#&#8203;33326](https://github.com/mui/material-ui/issues/33326)) [@&#8203;baharalidurrani](https://github.com/baharalidurrani)
    
  • docs] Add "refine" demo to showcase ([#&#8203;33240](https://github.com/mui/material-ui/issues/33240)) [@&#8203;omeraplak](https://github.com/omeraplak)
    
  • docs] Add webpack alias for legacy utils package ([#&#8203;33376](https://github.com/mui/material-ui/issues/33376)) [@&#8203;jgbae](https://github.com/jgbae)
    
  • docs] Improve external link icons synonyms ([#&#8203;33257](https://github.com/mui/material-ui/issues/33257)) [@&#8203;davidgarciab](https://github.com/davidgarciab)
    
  • examples] Update MUI Base with Tailwind CSS to use the latest versions of the dependencies ([#&#8203;33401](https://github.com/mui/material-ui/issues/33401)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • examples] Add MUI base example ([#&#8203;33154](https://github.com/mui/material-ui/issues/33154)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
Core
  • core] Fix [@&#8203;mui/monorepo](https://github.com/mui/monorepo) regression for the import of the docs infra ([#&#8203;33390](https://github.com/mui/material-ui/issues/33390)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • core] Remove old babel resolve rule ([#&#8203;33432](https://github.com/mui/material-ui/issues/33432)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Shorten the plan descriptions on the pricing page ([#&#8203;32984](https://github.com/mui/material-ui/issues/32984)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas)
    
  • website] Link EULA in the license quantity section ([#&#8203;33292](https://github.com/mui/material-ui/issues/33292)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
    

All contributors of this release in alphabetical order: @​baharalidurrani, @​cherniavskii, @​danilo-leal, @​davidgarciab, @​flaviendelangle, @​hbjORbj, @​ivan-ngchakming, @​Janpot, @​jgbae, @​joebingham-wk, @​joserodolfofreitas, @​michaldudak, @​mnajdova, @​oliviertassinari, @​omeraplak, @​robyyo, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

v5.8.7

Compare Source

Jul 4, 2022

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

@mui/material@5.8.7
  • Autocomplete] Add some missing props in `useAutocomplete` ([#&#8203;33269](https://github.com/mui/material-ui/issues/33269)) [@&#8203;henriqueholtz](https://github.com/henriqueholtz)
    
  • Autocomplete] Extend `componentsProps` to include `popper` and `popupIndicator` slots ([#&#8203;33283](https://github.com/mui/material-ui/issues/33283)) [@&#8203;jake-collibra](https://github.com/jake-collibra)
    
  • Select] Annotate empty string as valid value prop ([#&#8203;33088](https://github.com/mui/material-ui/issues/33088)) [@&#8203;MattiasMartens](https://github.com/MattiasMartens)
    
  • SnackbarContent] Fix message text color with css var provider ([#&#8203;33285](https://github.com/mui/material-ui/issues/33285)) [@&#8203;TimoWilhelm](https://github.com/TimoWilhelm)
    
    
@mui/styled-engine@5.8.7
  • styled-engine] Add missing type dependency on csstype ([#&#8203;33310](https://github.com/mui/material-ui/issues/33310)) [@&#8203;Methuselah96](https://github.com/Methuselah96)
    
    
@mui/system@5.8.7
  • system] Simplify theme input types for `CssVarsProvider` ([#&#8203;33381](https://github.com/mui/material-ui/issues/33381)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • system] Export required types ([#&#8203;33324](https://github.com/mui/material-ui/issues/33324)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
@mui/joy@5.0.0-alpha.35
  • Joy] Add radio button documentation ([#&#8203;33254](https://github.com/mui/material-ui/issues/33254)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add switch documentation ([#&#8203;33302](https://github.com/mui/material-ui/issues/33302)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Batch a couple of documentation refinements ([#&#8203;33158](https://github.com/mui/material-ui/issues/33158))
    
  • Joy] Enable Joy and Material UI compatibility ([#&#8203;33379](https://github.com/mui/material-ui/issues/33379)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/base@5.0.0-alpha.88
  • base] Remove a type incompatible with Typescript 3.5 ([#&#8203;33361](https://github.com/mui/material-ui/issues/33361)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • BadgeUnstyled] Export BadgeUnstyledOwnProps interface to fix typescript compiler error ([#&#8203;33314](https://github.com/mui/material-ui/issues/33314)) [@&#8203;aaronlademann-wf](https://github.com/aaronlademann-wf)
    
  • TablePaginationUnstyled] Accept callbacks in componentsProps ([#&#8203;33309](https://github.com/mui/material-ui/issues/33309)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
Docs
  • docs] Fix Link typings in the react-router example ([#&#8203;32308](https://github.com/mui/material-ui/issues/32308)) [@&#8203;aaarichter](https://github.com/aaarichter)
    
  • docs] Add caveat about class components with Tooltip ([#&#8203;33325](https://github.com/mui/material-ui/issues/33325)) [@&#8203;joshkel](https://github.com/joshkel)
    
  • docs] Fix SEO issues ([#&#8203;33288](https://github.com/mui/material-ui/issues/33288)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix Slider's "player" demo ([#&#8203;33267](https://github.com/mui/material-ui/issues/33267)) [@&#8203;xlianghang](https://github.com/xlianghang)
    
  • website] Link MUI Toolpad in mui.com ([#&#8203;33287](https://github.com/mui/material-ui/issues/33287)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
    

All contributors of this release in alphabetical order: @​aaarichter, @​aaronlademann-wf, @​danilo-leal, @​henriqueholtz, @​jake-collibra, @​joshkel, @​MattiasMartens, @​Methuselah96, @​michaldudak, @​oliviertassinari, @​siriwatknp, @​TimoWilhelm, @​xlianghang

v5.8.6

Compare Source

Jun 27, 2022

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

  • ⚒️ Fixed React 18 issues in few components
  • 🚀 Improved the TypeScript augmentation when using CSS variables with @mui/material
  • many other 🐛 bug fixes and 📚 documentation improvements
@mui/material@5.8.6
@mui/system@5.8.6
@mui/utils@5.8.6
@mui/base@5.0.0-alpha.87
@mui/joy@5.0.0-alpha.34
Docs
Core

All contributors of this release in alphabetical order: @​davidgarciab, @​Fafruch, @​haneenmahd, @​hbjORbj, @​howlettt, @​jacobweberbowery, @​michaldudak, @​mnajdova, @​oliviertassinari, @​SamoraMabuya, @​siriwatknp, @​WinmezzZ, @​ZeeshanTamboli

v5.8.5

Compare Source

Jun 20, 2022

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

  • 🚀 Added support for CSS variables in the Avatar component and the SpeedDialAction component respectively by @​vicasas and @​gin1314
  • many other 🐛 bug fixes and 📚 documentation improvements
@mui/material@5.8.5
@mui/codemod@5.8.5
@mui/lab@5.0.0-alpha.87
@mui/base@5.0.0-alpha.86
@mui/joy@5.0.0-alpha.33
Docs
Core

All contributors of this release in alphabetical order: @​cherniavskii, @​DanailH, @​gin1314, @​Harmouch101, @​Janpot, @​joserodolfofreitas, @​kmurgic, @​michaldudak, @​mnajdova, @​oliviertassinari, @​ryancogswell, @​samuelsycamore, @​siriwatknp, @​vicasas

v5.8.4

Compare Source

Jun 14, 2022

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

  • 🚀 Added support for custom breakpoints in the Grid component by @​boutahlilsoufiane
  • 📚 Added guide on how to use Material UI with Shadow DOM by @​cherniavskii
  • many other 🐛 bug fixes and 📚 documentation improvements
@mui/material@5.8.4
@mui/system@5.8.4
@mui/codemod@5.8.4
@mui/lab@5.0.0-alpha.86
@mui/base@5.0.0-alpha.85
@mui/joy@5.0.0-alpha.32
Docs
Core

All contributors of this release in alphabetical order: @​aaarichter, @​alansouzati, @​boutahlilsoufiane, @​cherniavskii, @​danilo-leal, @​dvlprAlamin, @​frankkluijtmans, @​igordanchenko, @​Janpot, @​joshkel, @​Kai-W, @​KeaghanKennedy, @​l-zoy, @​michaldudak, @​mkrtchian, @​mnajdova, @​Moizsohail, @​oliviertassinari, @​pushys, @​rart, @​siriwatknp, @​tech-meppem, @​winderica, @​ZeeshanTamboli

v5.8.3

Compare Source

Jun 7, 2022

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

@mui/material@5.8.3
  • Alert] Constrain message width and allow overflow ([#&#8203;32747](https://github.com/mui/material-ui/issues/32747)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • Checkbox] Add support for CSS variables ([#&#8203;32579](https://github.com/mui/material-ui/issues/32579)) [@&#8203;haneenmahd](https://github.com/haneenmahd)
    
  • Slider] Fix positioning of tooltips on vertical slider ([#&#8203;32919](https://github.com/mui/material-ui/issues/32919)) [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech)
    
    
@mui/system@5.8.3
  • system] Configurable attributes for libraries ([#&#8203;32971](https://github.com/mui/material-ui/issues/32971)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/codemod@5.8.3
  • codemod] Fix infinite loop in jss-to-tss-react and add TODO ([#&#8203;33048](https://github.com/mui/material-ui/issues/33048)) [@&#8203;ryancogswell](https://github.com/ryancogswell)
    
    
@mui/lab@5.0.0-alpha.85
  • pickers] Add deprecations when importing pickers from the lab ([#&#8203;32950](https://github.com/mui/material-ui/issues/32950)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle)
    
    
@mui/joy@5.0.0-alpha.31
  • Joy] Add `Slider` component and demos ([#&#8203;32694](https://github.com/mui/material-ui/issues/32694)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • Joy] Add articles about customization approaches ([#&#8203;32887](https://github.com/mui/material-ui/issues/32887)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add automatic adjustment page to core features ([#&#8203;32980](https://github.com/mui/material-ui/issues/32980)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add docs about dark mode ([#&#8203;33002](https://github.com/mui/material-ui/issues/33002)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add template UIs & first look blog post ([#&#8203;32791](https://github.com/mui/material-ui/issues/32791)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
    
@mui/base@5.0.0-alpha.84
  • base] Remove [@&#8203;mui/system](https://github.com/mui/system) in tests ([#&#8203;32945](https://github.com/mui/material-ui/issues/32945)) [@&#8203;kevinji](https://github.com/kevinji)
    
  • ButtonUnstyled] Accept callbacks in componentsProps ([#&#8203;32991](https://github.com/mui/material-ui/issues/32991)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • SwitchUnstyled] Accept callbacks in componentsProps ([#&#8203;32993](https://github.com/mui/material-ui/issues/32993)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • TablePaginationUnstyled] Define ownerState and slot props' types ([#&#8203;32905](https://github.com/mui/material-ui/issues/32905)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • TabPanelUnstyled] Define ownerState and slot props' types ([#&#8203;32928](https://github.com/mui/material-ui/issues/32928)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • TabsListUnstyled] Define ownerState and slot props' types ([#&#8203;32925](https://github.com/mui/material-ui/issues/32925)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
Docs
  • blog] Fix anchor link scroll ([#&#8203;32994](https://github.com/mui/material-ui/issues/32994)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Add "Migration" section to sidebar and revise v4-v5 content ([#&#8203;32740](https://github.com/mui/material-ui/issues/32740)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Add What doesn't count as a breaking change? ([#&#8203;32850](https://github.com/mui/material-ui/issues/32850)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix 301 link [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix icon color in `BadgeUnstyled` docs ([#&#8203;32976](https://github.com/mui/material-ui/issues/32976)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • docs] Improve product identifier ([#&#8203;32707](https://github.com/mui/material-ui/issues/32707)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Improve UX with back to top ([#&#8203;32896](https://github.com/mui/material-ui/issues/32896)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Polish overview page to Material UI ([#&#8203;32954](https://github.com/mui/material-ui/issues/32954)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Redirect older URLs ([#&#8203;33037](https://github.com/mui/material-ui/issues/33037)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Remove pickers page from the Lab section ([#&#8203;32961](https://github.com/mui/material-ui/issues/32961)) [@&#8203;DanailH](https://github.com/DanailH)
    
  • docs] Show product identifier on updated MUI X Introduction pages ([#&#8203;32966](https://github.com/mui/material-ui/issues/32966)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Throw on 301 links ([#&#8203;32939](https://github.com/mui/material-ui/issues/32939)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Add Gerda to the about page ([#&#8203;33038](https://github.com/mui/material-ui/issues/33038)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • website] Polish the pricing page ([#&#8203;32811](https://github.com/mui/material-ui/issues/32811)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Remove unnecessary `address` dependency ([#&#8203;32957](https://github.com/mui/material-ui/issues/32957)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
Core
  • core] Improve icon synonyms ([#&#8203;32742](https://github.com/mui/material-ui/issues/32742)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Prepare Next.js config for React 18 ([#&#8203;32963](https://github.com/mui/material-ui/issues/32963)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • core] Remove dead logic ([#&#8203;32940](https://github.com/mui/material-ui/issues/32940)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Update dependencies to fix security vulnerabilities ([#&#8203;32947](https://github.com/mui/material-ui/issues/32947)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • Add security link to README for Tidelift @​mbrookes

All contributors of this release in alphabetical order: @​abhinav-22-tech, @​DanailH, @​danilo-leal, @​flaviendelangle, @​haneenmahd, @​hbjORbj, @​Janpot, @​kevinji, @​mbrookes, @​michaldudak, @​oliviertassinari, @​ryancogswell, @​samuelsycamore, @​siriwatknp, @​ZeeshanTamboli

v5.8.2

Compare Source

May 30, 2022

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

  • 🐛 bug fixes and 📚 documentation improvements.
@mui/system@5.8.2
@mui/lab@5.0.0-alpha.84
  • ​[Masonry] Place items to the left when there are less objects than specified in column prop (#​32873) @​hbjORbj
@mui/base@5.0.0-alpha.83
@mui/joy@5.0.0-alpha.30
Docs
Core

All contributors of this release in alphabetical order: @​aaarichter, @​hbjORbj, @​m4theushw, @​michaldudak, @​mnajdova, @​oliviertassinari, @​romelperez, @​siriwatknp

v5.8.1

Compare Source

May 23, 2022

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

  • 💅 Added CSS variables support for two more Material UI components by @​diggis00 and @​alisasanib
  • And more 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.8.1
@mui/system@5.8.1
@mui/lab@5.0.0-alpha.83
@mui/base@5.0.0-alpha.82
@mui/joy@5.0.0-alpha.29
Docs
Core

All contributors of this release in alphabetical order: @​abriginets, @​alexfauquette, @​alisasanib, @​apedroferreira, @​danilo-leal, @​diggis00, @​flaviendelangle, @​garronej, @​JeanPetrov, @​mbrookes, @​mnajdova, @​nate-summercook, @​o-dubrovskyi, @​oliviertassinari, @​paales, @​robertwt7, @​SamuelMaddox, @​siriwatknp, @​veronikaslc, @​VibhorJaiswal, @​ZeeshanTamboli

v5.8.0

Compare Source

May 17, 2022

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

  • 🚀 Blog post for announcing the release of the Premium plan of MUI X is out thanks to @​joserodolfofreitas.
  • Codemod for jss to tss-react migration is out thanks to @​ryancogswell
  • And more 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.8.0
@mui/system@5.8.0
@mui/base@5.0.0-alpha.81
@mui/joy@5.0.0-alpha.28
@mui/codemod@5.8.0
Docs
Core

All contributors of this release in alphabetical order: @​andrii-bodnar, @​cherniavskii, @​danilo-leal, @​emlai, @​joserodolfofreitas, @​michaldudak, @​mnajdova, @​MrHBS, @​oliviertassinari, @​ryancogswell, @​samuelsycamore, @​shadigaafar, @​siriwatknp, @​ZeeshanTamboli

v5.7.0

Compare Source

May 10, 2022

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

🛠 This release is all about supporting CSS variables in many Material UI components.
Kudos to all contributors!

@mui/material@5.7.0
  • StepLabel, StepIcon] Add support for CSS variables ([#&#8203;32609](https://github.com/mui/material-ui/issues/32609)) [@&#8203;vicasas](https://github.com/vicasas)
    
  • Table, TableRow] Add support for CSS variables ([#&#8203;32614](https://github.com/mui/material-ui/issues/32614)) [@&#8203;vicasas](https://github.com/vicasas)
    
  • AppBar] Add a logo component for the responsive app bar demo ([#&#8203;32374](https://github.com/mui/material-ui/issues/32374)) [@&#8203;ameetmadan](https://github.com/ameetmadan)
    
  • Autocomplete] Fix clearing single array values ([#&#8203;32626](https://github.com/mui/material-ui/issues/32626)) [@&#8203;mikepricedev](https://github.com/mikepricedev)
    
  • Autocomplete] Fix keep listbox open on left/right keys when inputValue is not empty ([#&#8203;31407](https://github.com/mui/material-ui/issues/31407)) [@&#8203;alisasanib](https://github.com/alisasanib)
    
  • Autocomplete] Add support for CSS variables ([#&#8203;32598](https://github.com/mui/material-ui/issues/32598)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • Autocomplete] Render `endAdornment` only when necessary ([#&#8203;32386](https://github.com/mui/material-ui/issues/32386)) [@&#8203;g1eny0ung](https://github.com/g1eny0ung)
    
  • ButtonGroup] Add support for CSS variables ([#&#8203;32498](https://github.com/mui/material-ui/issues/32498)) [@&#8203;vicasas](https://github.com/vicasas)
    
  • CardActionArea] Add support for CSS variables ([#&#8203;32554](https://github.com/mui/material-ui/issues/32554)) [@&#8203;vicasas](https://github.com/vicasas)
    
  • ClickAwayListener] Allow pointer up/down events to event handler ([#&#8203;32264](https://github.com/mui/material-ui/issues/32264)) [@&#8203;vladjerca](https://github.com/vladjerca)
    
  • CssBaseline] Add support for CSS vars ([#&#8203;32618](https://github.com/mui/material-ui/issues/32618)) [@&#8203;haneenmahd](https://github.com/haneenmahd)
    
  • Dialog] Add support for CSS variables ([#&#8203;32555](https://github.com/mui/material-ui/issues/32555)) [@&#8203;vicasas](https://github.com/vicasas)
    
  • Divider] Add support for CSS variables ([#&#8203;32519](https://github.com/mui/material-ui/issues/32519)) [@&#8203;vicasas](https://github.com/vicasas)
    
  • Drawer] Add support for CSS variables ([#&#8203;32565](https://github.com/mui/material-ui/issues/32565)) [@&#8203;nghiamvt](https://github.com/nghiamvt)
    
  • Fab] Add support for CSS variables ([#&#8203;32564](https://github.com/mui/material-ui/issues/32564)) [@&#8203;alisasanib](https://github.com/alisasanib)
    
  • FormControlLabel] Add support for CSS variables ([#&#8203;32588](https://github.com/mui/material-ui/issues/32588)) [@&#8203;elliefoote](https://github.com/elliefoote)
    
  • FormHelperText] Add support for CSS variables ([#&#8203;32596](https://github.com/mui/material-ui/issues/32596)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • FormLabel] Add support for CSS variables ([#&#8203;32602](https://github.com/mui/material-ui/issues/32602)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • Icon] Add support for CSS variables ([#&#8203;32595](https://github.com/mui/material-ui/issues/32595)) [@&#8203;Jamaalwbrown](https://github.com/Jamaalwbrown)
    
  • IconButton] Add support for CSS variables ([#&#8203;32590](https://github.com/mui/material-ui/issues/32590)) [@&#8203;Ariyapong](https://github.com/Ariyapong)
    
  • ImageListItemBar] Add support for CSS variables ([#&#8203;32578](https://github.com/mui/material-ui/issues/32578)) [@&#8203;vicasas](https://github.com/vicasas)
    
  • Input] Support CSS variables ([#&#8203;32128](https://github.com/mui/material-ui/issues/32128)) [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming)
    
  • InputAdornment] Add support CSS variables ([#&#8203;32607](https://github.com/mui/material-ui/issues/32607)) [@&#8203;vicasas](https://github.com/vicasas)
    
  • Link] Fix style overrides color prop ([#&#8203;32653](https://github.com/mui/material-ui/issues/32653)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • ListItem] Add support for CSS variables ([#&#8203;32580](https://github.com/mui/material-ui/issues/32580)) [@&#8203;dan-mba](https://github.com/dan-mba)
    
  • ListItemButton] Add support for CSS variables ([#&#8203;32582](https://github.com/mui/material-ui/issues/32582)) [@&#8203;dan-mba](https://github.com/dan-mba)
    
  • ListItemIcon] Add support for CSS variables ([#&#8203;32583](https://github.com/mui/material-ui/issues/32583)) [@&#8203;dan-mba](https://github.com/dan-mba)
    
  • ListSubheader] Add support for CSS variables ([#&#8203;32584](https://github.com/mui/material-ui/issues/32584)) [@&#8203;dan-mba](https://github.com/dan-mba)
    
  • MenuItem] Add support for CSS variables ([#&#8203;32561](https://github.com/mui/material-ui/issues/32561)) [@&#8203;nghiamvt](https://github.com/nghiamvt)
    
  • MobileStepper] Add support for CSS vars ([#&#8203;32606](https://github.com/mui/material-ui/issues/32606)) [@&#8203;haneenmahd](https://github.com/haneenmahd)
    
  • Modal] Add support for CSS variables ([#&#8203;32605](https://github.com/mui/material-ui/issues/32605)) [@&#8203;haneenmahd](https://github.com/haneenmahd)
    
  • PaginationItem] Add support for CSS vars ([#&#8203;32612](https://github.com/mui/material-ui/issues/32612)) [@&#8203;haneenmahd](https://github.com/haneenmahd)
    
  • Rating] Add support for CSS variables ([#&#8203;32556](https://github.com/mui/material-ui/issues/32556)) [@&#8203;vicasas](https://github.com/vicasas)
    
  • Snackbar] Add support for CSS variables ([#&#8203;32603](https://github.com/mui/material-ui/issues/32603)) [@&#8203;gin1314](https://github.com/gin1314)
    
  • SpeedDial] Add support for CSS variables ([#&#8203;32613](https://github.com/mui/material-ui/issues/32613)) [@&#8203;alisasanib](https://github.com/alisasanib)
    
  • Stepper] Export useStepperContext ([#&#8203;31398](https://github.com/mui/material-ui/issues/31398)) [@&#8203;pzi](https://github.com/pzi)
    
  • SvgIcon] Add support for CSS variables ([#&#8203;32610](https://github.com/mui/material-ui/issues/32610)) [@&#8203;vicasas](https://github.com/vicasas)
    
  • TablePagination] Add support for CSS variables ([#&#8203;32615](https://github.com/mui/material-ui/issues/32615)) [@&#8203;haneenmahd](https://github.com/haneenmahd)
    
  • TableSortLabel]: Add support for CSS vars ([#&#8203;32616](https://github.com/mui/material-ui/issues/32616)) [@&#8203;haneenmahd](https://github.com/haneenmahd)
    
  • Tabs] Add support for CSS variables ([#&#8203;32547](https://github.com/mui/material-ui/issues/32547)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • ToggleButton] Add support for CSS variables ([#&#8203;32600](https://github.com/mui/material-ui/issues/32600)) [@&#8203;Ariyapong](https://github.com/Ariyapong)
    
  • ToggleButtonGroup] Add support for CSS variables ([#&#8203;32617](https://github.com/mui/material-ui/issues/32617)) [@&#8203;haneenmahd](https://github.com/haneenmahd)
    
  • Tooltip] Add support for CSS variables ([#&#8203;32594](https://github.com/mui/material-ui/issues/32594)) [@&#8203;gin1314](https://github.com/gin1314)
    
    
@mui/system@5.7.0
  • System] Support CSS variables for iframes & custom nodes ([#&#8203;32496](https://github.com/mui/material-ui/issues/32496)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/base@5.0.0-alpha.80
  • ButtonUnstyled] Fix keyboard navigation on customized elements ([#&#8203;32204](https://github.com/mui/material-ui/issues/32204)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
@mui/private-classnames@5.7.0
  • classnames] Add new package for classnames utils ([#&#8203;32502](https://github.com/mui/material-ui/issues/32502)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
    
Docs
  • docs] Correct links to prevent 301 redirects ([#&#8203;32692](https://github.com/mui/material-ui/issues/32692)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • docs] Move, split, and revise "Unstyled components" page ([#&#8203;32562](https://github.com/mui/material-ui/issues/32562)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Nest `ListItemButton` in `ListItem` in the Drawer examples ([#&#8203;31987](https://github.com/mui/material-ui/issues/31987)) [@&#8203;stefanprobst](https://github.com/stefanprobst)
    
  • docs] Apply callouts in the Material UI docs ([#&#8203;32567](https://github.com/mui/material-ui/issues/32567)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Show product identifier on new X pages ([#&#8203;32657](https://github.com/mui/material-ui/issues/32657)) [@&#8203;cherniavskii](https://github.com/cherniavskii)
    
  • docs] Fix copy button childNode not found ([#&#8203;32652](https://github.com/mui/material-ui/issues/32652)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Split install commands in isolated code blocks ([#&#8203;32566](https://github.com/mui/material-ui/issues/32566)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Base Switch style revisions and final review ([#&#8203;32376](https://github.com/mui/material-ui/issues/32376)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Adds Badge link to Base doc nav ([#&#8203;32619](https://github.com/mui/material-ui/issues/32619)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Base Installation style revisions and final review ([#&#8203;32483](https://github.com/mui/material-ui/issues/32483)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Fix broken redirection ([#&#8203;32581](https://github.com/mui/material-ui/issues/32581)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Allows to use `import '<library name>'` in demonstrations ([#&#8203;32492](https://github.com/mui/material-ui/issues/32492)) [@&#8203;alexfauquette](https://github.com/alexfauquette)
    
  • docs] Hide copy button on search icon dialog ([#&#8203;32577](https://github.com/mui/material-ui/issues/32577)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Use full API link for ThemeProvider ([#&#8203;32549](https://github.com/mui/material-ui/issues/32549)) [@&#8203;jcvidiri](https://github.com/jcvidiri)
    
  • Joy] Add principles page ([#&#8203;32648](https://github.com/mui/material-ui/issues/32648)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add Button page ([#&#8203;32576](https://github.com/mui/material-ui/issues/32576)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add "Quick start" and "Tutorial" pages ([#&#8203;32383](https://github.com/mui/material-ui/issues/32383)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • website] Add store to the footer and "hiring" chip adjustment ([#&#8203;32650](https://github.com/mui/material-ui/issues/32650)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • website] Optimize conversion to store ([#&#8203;32646](https://github.com/mui/material-ui/issues/32646)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Remove copy button on marketing pages ([#&#8203;32649](https://github.com/mui/material-ui/issues/32649)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • website] Add missing space in copy label ([#&#8203;32638](https://github.com/mui/material-ui/issues/32638)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle)
    
    
Core
  • core] Security updates ([#&#8203;32636](https://github.com/mui/material-ui/issues/32636)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • core] Fix `docs:dev` not working after upgrading `next` to 12.1.0 ([#&#8203;32552](https://github.com/mui/material-ui/issues/32552)) [@&#8203;cherniavskii](https://github.com/cherniavskii)
    
  • core] Update minimist to fix security vulnerability ([#&#8203;32575](https://github.com/mui/material-ui/issues/32575)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

All contributors of this release in alphabetical order: @​alexfauquette, @​alisasanib, @​ameetmadan, @​Ariyapong, @​cherniavskii, @​dan-mba, @​danilo-leal, @​elliefoote, @​flaviendelangle, @​g1eny0ung, @​gin1314, @​haneenmahd, @​ivan-ngchakming, @​Jamaalwbrown, @​jcvidiri, @​michaldudak, @​mikepricedev, @​mnajdova, @​nghiamvt, @​oliviertassinari, @​pzi, @​samuelsycamore, @​siriwatknp, @​stefanprobst, @​vicasas, @​vladjerca, @​ZeeshanTamboli

v5.6.4

Compare Source

May 2, 2022

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

  • 💅 5 Material UI components were updated to support CSS variables by @​ZeeshanTamboli & @​vicasas
  • And more 🐛 bug fixes and 📚 improvements.
@mui/material@5.6.4
@mui/codemod@5.6.4
@mui/joy@5.0.0-alpha.26
Docs
Core

All contributors of this release in alphabetical order: @​b-novikov-ipersonality, @​flaviendelangle, @​hbjORbj, @​HexM7, @​m4theushw, @​Martin005, @​mongolyy, @​oliviertassinari, @​ryancogswell, @​samuelsycamore, @​siriwatknp, @​vicasas, @​ZeeshanTamboli

v5.6.3

Compare Source

Apr 25, 2022

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

  • 🛠 Fixed TypeScript issue when the fill CSS property is used in the system (#​32355) @​valerii15298
  • And more 🐛 bug fixes and 📚 improvements.
@mui/material@5.6.3
  • BottomNavigation] Action icon `padding` fix ([#&#8203;32030](https://github.com/mui/material-ui/issues/32030)) [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech)
    
  • Dialog] Fix `component` prop is not available in `DialogTitleProps` ([#&#8203;32389](https://github.com/mui/material-ui/issues/32389)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • StepContent] Fix TypeScript type of `TransitionComponent` prop ([#&#8203;32314](https://github.com/mui/material-ui/issues/32314)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
    
@mui/system@5.6.3
  • system] Fix prop types when the `fill` CSS property is used ([#&#8203;32355](https://github.com/mui/material-ui/issues/32355)) [@&#8203;valerii15298](https://github.com/valerii15298)
    
  • system] Fix broken behavior when theme value is `zero` ([#&#8203;32365](https://github.com/mui/material-ui/issues/32365)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
    
@mui/base@5.0.0-alpha.78
  • InputUnstyled] `multiline` property should not log DOM warnings for `maxRows` and `minRows` props ([#&#8203;32401](https://github.com/mui/material-ui/issues/32401)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
    
@mui/joy@5.0.0-alpha.25
  • Joy] Improve theme focus to be more flexible ([#&#8203;32405](https://github.com/mui/material-ui/issues/32405)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add `Radio`, `RadioGroup` components ([#&#8203;32279](https://github.com/mui/material-ui/issues/32279)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add `Chip` component ([#&#8203;31983](https://github.com/mui/material-ui/issues/31983)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • Joy] Improve controls ([#&#8203;32267](https://github.com/mui/material-ui/issues/32267)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Set up docs ([#&#8203;32370](https://github.com/mui/material-ui/issues/32370)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
Docs
  • docs] Enable row reordering on the pricing page ([#&#8203;31875](https://github.com/mui/material-ui/issues/31875)) [@&#8203;DanailH](https://github.com/DanailH)
    
  • blog] A few improvements on date picker change ([#&#8203;32325](https://github.com/mui/material-ui/issues/32325)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Emphasize how to avoid failing tests when migrating from v4 to v5 ([#&#8203;32159](https://github.com/mui/material-ui/issues/32159)) [@&#8203;dwjohnston](https://github.com/dwjohnston)
    
  • docs] Revise the related projects page ([#&#8203;32180](https://github.com/mui/material-ui/issues/32180)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Cleanup remaining [@&#8203;mui/styles](https://github.com/mui/styles) usages ([#&#8203;32313](https://github.com/mui/material-ui/issues/32313)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Fix sidenav mobile color ([#&#8203;32324](https://github.com/mui/material-ui/issues/32324)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Base TrapFocus style revisions and final review ([#&#8203;32364](https://github.com/mui/material-ui/issues/32364)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Update the README.md to better cover the different products ([#&#8203;32360](https://github.com/mui/material-ui/issues/32360)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Improve the propTypes generation and API demos' links ([#&#8203;32295](https://github.com/mui/material-ui/issues/32295)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Add ability to display a plan icon next to a page link in nav bar ([#&#8203;32393](https://github.com/mui/material-ui/issues/32393)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle)
    
  • docs] Change label on `FormControlLabelPlacement` ([#&#8203;32322](https://github.com/mui/material-ui/issues/32322)) [@&#8203;ainatenhi](https://github.com/ainatenhi)
    
  • website] Update Diamond sponsors list ([#&#8203;32433](https://github.com/mui/material-ui/issues/32433)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Add privacy policy link to website's footer ([#&#8203;32080](https://github.com/mui/material-ui/issues/32080)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • website] Remove the designer role ([#&#8203;32384](https://github.com/mui/material-ui/issues/32384)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
    
Core
  • core] `yarn prettier` write [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Fix changelog warning message ([#&#8203;32240](https://github.com/mui/material-ui/issues/32240)) [@&#8203;praveen001](https://github.com/praveen001)
    
  • core] Update the proptypes scripts to support components in [@&#8203;mui/system](https://github.com/mui/system) ([#&#8203;32456](https://github.com/mui/material-ui/issues/32456)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
    

All contributors of this release in alphabetical order: @​abhinav-22-tech, @​ainatenhi, @​DanailH, @​danilo-leal, @​dwjohnston, @​flaviendelangle, @​hbjORbj, @​mnajdova, @​oliviertassinari, @​praveen001, @​samuelsycamore, @​siriwatknp, @​valerii15298, @​ZeeshanTamboli

v5.6.2

Compare Source

Apr 18, 2022

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

@mui/material@5.6.2
@mui/system@5.6.2
@mui/base@5.0.0-alpha.77
@mui/joy@5.0.0-alpha.24
Docs
Core

All contributors of this release in alphabetical order: @​abaker93, @​cherniavskii, @​danilo-leal, @​hbjORbj, @​igordanchenko, @​michaldudak, @​mnajdova, @​oliviertassinari, @​samuelsycamore, @​SiarheiBobryk, @​sirartemis, @​siriwatknp, @​ZeeshanTamboli

v5.6.1

Compare Source

Apr 11, 2022

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

@mui/material@5.6.1
  • Grow] Extend Safari CSS transition bug workaround on WebKit browsers ([#&#8203;32202](https://github.com/mui/material-ui/issues/32202)) [@&#8203;igordanchenko](https://github.com/igordanchenko)
    
  • Link] Fix style overrides 5.6.0 regression ([#&#8203;32182](https://github.com/mui/material-ui/issues/32182)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Select] Bug when the first child is a ListSubheader ([#&#8203;27299](https://github.com/mui/material-ui/issues/27299)) [@&#8203;DouglasPds](https://github.com/DouglasPds)
    
    
@mui/base@5.0.0-alpha.76
  • ButtonUnstyled] Allow receiving focus when disabled ([#&#8203;32090](https://github.com/mui/material-ui/issues/32090)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
Docs
  • blog] Share what's changed about the new docs structure ([#&#8203;32044](https://github.com/mui/material-ui/issues/32044)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Format number icons search ([#&#8203;32239](https://github.com/mui/material-ui/issues/32239)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix small external links issue ([#&#8203;32212](https://github.com/mui/material-ui/issues/32212)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Make sidenav crawlable ([#&#8203;32241](https://github.com/mui/material-ui/issues/32241)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Base Badge style revisions and final review ([#&#8203;32098](https://github.com/mui/material-ui/issues/32098)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • docs] Fix wrong url ([#&#8203;32208](https://github.com/mui/material-ui/issues/32208)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix date-pickers redirects ([#&#8203;32207](https://github.com/mui/material-ui/issues/32207)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Add notification for the doc restructure and date pickers update ([#&#8203;32195](https://github.com/mui/material-ui/issues/32195)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix 404 from `ahrefs` report ([#&#8203;32206](https://github.com/mui/material-ui/issues/32206)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Remove notifications temporary ([#&#8203;32192](https://github.com/mui/material-ui/issues/32192)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Redirect to new urls ([#&#8203;32048](https://github.com/mui/material-ui/issues/32048)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Update Learn page copy and resource list ([#&#8203;31989](https://github.com/mui/material-ui/issues/31989)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • website] Fix wrong MUI X installation instruction link [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Revise homepage copy below the hero section ([#&#8203;31283](https://github.com/mui/material-ui/issues/31283)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • website] Revise homepage Hero copy for more clarity ([#&#8203;31212](https://github.com/mui/material-ui/issues/31212)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
  • website] Give up on promoting roles in our docs [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
    
Core
  • core] Fix misleading types range ([#&#8203;32236](https://github.com/mui/material-ui/issues/32236)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Small polish on the product name ([#&#8203;32199](https://github.com/mui/material-ui/issues/32199)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
    

All contributors of this release in alphabetical order: @​danilo-leal, @​DouglasPds, @​igordanchenko, @​l10nbot, @​michaldudak, @​oliviertassinari, @​samuelsycamore, @​siriwatknp

v5.6.0

Compare Source

Apr 5, 2022

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

@mui/material@5.6.0
@mui/base@5.0.0-alpha.75
@mui/codemod@5.6.0
@mui/lab@5.0.0-alpha.76
@mui/joy@5.0.0-alpha.22
Docs
Core

All contributors of this release in alphabetical order: @​apeltop, @​eps1lon, @​flaviendelangle, @​garronej, @​ivan-ngchakming, @​m4theushw, @​MatthijsMud, @​michaldudak, @​mnajdova, @​oliviertassinari, @​psjishnu, @​raigoinabox, @​samuelsycamore, @​siriwatknp, @​TkaczykAdam

v5.5.3

Compare Source

Mar 28, 2022

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

  • ️ improved the a11y on some docs demos
  • Several 🐛 bug fixes and 📚 documentation improvements
@mui/material@5.5.3
@mui/codemod@5.5.3
@mui/utils@5.5.3
@mui/base@5.0.0-alpha.74
Breaking changes
  • ​[base] Remove BackdropUnstyled component (#​31923) @​mnajdova

    The BackdropUnstyled component was removed from the @mui/base package, as it did not have any specific logic, except adding an aria-hidden attribute on the div it rendered. This is not enough to justify it's existence in the base package. Here is an example alternative component you can use:

    const BackdropUnstyled = React.forwardRef<HTMLDivElement, { open?: boolean; className: string }>(
      (props, ref) => {
        const { open, className, ...other } = props;
        return <div className={clsx({ 'MuiBackdrop-open': open }, className)} ref={ref} {...other} />;
      },
    );
    
  • ​[TrapFocus] Move docs to Base and drop the Unstyled prefix (#​31954) @​michaldudak

    Removed the Unstyled_ prefix from the Base export (it remains in the Material UI export, though).

    -import { Unstyled_TrapFocus } from '@&#8203;mui/base';
    +import { TrapFocus } from '@&#8203;mui/base';
    
     // or
    
    -import TrapFocus from '@&#8203;mui/base/Unstyled_TrapFocus';
    +import TrapFocus from '@&#8203;mui/base/TrapFocus';
    
Changes
@mui/joy@5.0.0-alpha.21
Docs
Core

All contributors of this release in alphabetical order: @​bicstone, @​CommanderRoot, @​dimitropoulos, @​eps1lon, @​eswarclynn, @​igordanchenko, @​jannes-io, @​jason1985, @​m4theushw, @​michaldudak, @​mnajdova, @​NickFoden, @​oliviertassinari, @​ryancogswell, @​santhoshbala0178, @​siriwatknp, @​WilsonNet

v5.5.2

Compare Source

Mar 21, 2022

A big thanks to the 7 contributors who made this release possible. This is a small release focused on some 🐛 bug fixes and 📚 documentation improvements.

@mui/material@5.5.2
@mui/joy@5.0.0-alpha.20
@mui/base@5.0.0-alpha.73
@mui/styled-engine-sc@5.5.2
  • ​[styled-engine-sc] GlobalStylesProps inconsistent between the different packages (#​31814) @​mnajdova
Docs
Core

All contributors of this release in alphabetical order: @​hbjORbj, @​ivan-ngchakming, @​michaldudak, @​mnajdova, @​nnmax, @​oliviertassinari, @​siriwatknp

v5.5.1

Compare Source

Mar 14, 2022

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

  • 📊 2021 survey results post by @​danilo-leal (#​30999)
  • Several 🐛 bug fixes and 📚 documentation improvements
@​mui/material@​5.5.1
  • Fab] Add z-index ([#&#8203;30842](https://github.com/mui/material-ui/issues/30842)) [@&#8203;issamElmohadeb098](https://github.com/issamElmohadeb098)
    
  • Grid] Fix columns of nested container ([#&#8203;31340](https://github.com/mui/material-ui/issues/31340)) [@&#8203;boutahlilsoufiane](https://github.com/boutahlilsoufiane)
    
  • i10n] Update italian locale ([#&#8203;30974](https://github.com/mui/material-ui/issues/30974)) [@&#8203;SalvatoreMazzullo](https://github.com/SalvatoreMazzullo)
    
  • Pagination] Fix type of UsePaginationItem\["page"] ([#&#8203;31295](https://github.com/mui/material-ui/issues/31295)) [@&#8203;aaronadamsCA](https://github.com/aaronadamsCA)
    
  • Popper] Allow setting default props in a theme ([#&#8203;30118](https://github.com/mui/material-ui/issues/30118)) [@&#8203;hafley66](https://github.com/hafley66)
    
  • TextField] fix disappearing border in Safari ([#&#8203;31406](https://github.com/mui/material-ui/issues/31406)) [@&#8203;krysia1](https://github.com/krysia1)
    
    
@​mui/joy@​5.0.0-alpha.19
  • Joy] Support horizontal List ([#&#8203;31620](https://github.com/mui/material-ui/issues/31620)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add icon & label `Switch` examples ([#&#8203;31359](https://github.com/mui/material-ui/issues/31359)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add `TextField` component ([#&#8203;31299](https://github.com/mui/material-ui/issues/31299)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add `--Icon-fontSize` to components ([#&#8203;31360](https://github.com/mui/material-ui/issues/31360)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Add `Checkbox` component ([#&#8203;31273](https://github.com/mui/material-ui/issues/31273)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
Docs
  • blog] 2021 survey results post ([#&#8203;30999](https://github.com/mui/material-ui/issues/30999)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Add Macedonian translation ([#&#8203;31402](https://github.com/mui/material-ui/issues/31402)) [@&#8203;theCuriousOne](https://github.com/theCuriousOne)
    
  • docs] Fix API page table styles in Safari ([#&#8203;31696](https://github.com/mui/material-ui/issues/31696)) [@&#8203;aaarichter](https://github.com/aaarichter)
    
  • docs] Fix SEO issues ([#&#8203;31505](https://github.com/mui/material-ui/issues/31505)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Fix Link leak of Next.js props ([#&#8203;31418](https://github.com/mui/material-ui/issues/31418)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Add "Work in biotech" to showcase ([#&#8203;31711](https://github.com/mui/material-ui/issues/31711)) [@&#8203;klyburke](https://github.com/klyburke)
    
  • docs] Fix docs site crash on iOS Safari 12 ([#&#8203;31458](https://github.com/mui/material-ui/issues/31458)) [@&#8203;badalsaibo](https://github.com/badalsaibo)
    
  • docs] Fix search icons crash ([#&#8203;31651](https://github.com/mui/material-ui/issues/31651)) [@&#8203;juanpc10](https://github.com/juanpc10)
    
  • docs] Remove unnecessary await in e2e-tests ([#&#8203;31767](https://github.com/mui/material-ui/issues/31767)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix source code links on the Templates page ([#&#8203;31425](https://github.com/mui/material-ui/issues/31425)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Adjust Stack's basic usage demo ([#&#8203;31423](https://github.com/mui/material-ui/issues/31423)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Migrate button demos to base ([#&#8203;31395](https://github.com/mui/material-ui/issues/31395)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix y-axis unit used in the responsive font sizes chart ([#&#8203;31424](https://github.com/mui/material-ui/issues/31424)) [@&#8203;aaarichter](https://github.com/aaarichter)
    
  • docs] Remove joy mockup pages ([#&#8203;31412](https://github.com/mui/material-ui/issues/31412)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix the statement that styleOverrides are added by default ([#&#8203;31257](https://github.com/mui/material-ui/issues/31257)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Refine the product identifier menu ([#&#8203;31262](https://github.com/mui/material-ui/issues/31262)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Fix Search crash ([#&#8203;31386](https://github.com/mui/material-ui/issues/31386)) [@&#8203;reckter](https://github.com/reckter)
    
  • docs] Update TextField multiline description ([#&#8203;31291](https://github.com/mui/material-ui/issues/31291)) [@&#8203;jontewks](https://github.com/jontewks)
    
  • docs] Add gap theme mapping in the System properties table ([#&#8203;31382](https://github.com/mui/material-ui/issues/31382)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Test products search ([#&#8203;31351](https://github.com/mui/material-ui/issues/31351)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix GitHub source links in the demo toolbar ([#&#8203;31339](https://github.com/mui/material-ui/issues/31339)) [@&#8203;PunitSoniME](https://github.com/PunitSoniME)
    
  • docs] Add Algolia verification code to robot.txt ([#&#8203;31356](https://github.com/mui/material-ui/issues/31356)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • examples] Ignore tsbuildinfo with Next.js ([#&#8203;31460](https://github.com/mui/material-ui/issues/31460)) [@&#8203;B0und](https://github.com/B0und)
    
  • website] Add new gold sponsor ([#&#8203;31354](https://github.com/mui/material-ui/issues/31354)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • website] Update Ukraine support link ([#&#8203;31378](https://github.com/mui/material-ui/issues/31378)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
    
Core
  • core] Simplify anchor link ([#&#8203;31419](https://github.com/mui/material-ui/issues/31419)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Revert unrelated changes in [#&#8203;31354](https://github.com/mui/material-ui/issues/31354) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • test] Upgrade CircleCI convenience image ([#&#8203;31394](https://github.com/mui/material-ui/issues/31394)) [@&#8203;m4theushw](https://github.com/m4theushw)
    
  • typescript] Simplify display of slot props types ([#&#8203;31240](https://github.com/mui/material-ui/issues/31240)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    

All contributors of this release in alphabetical order: @​aaarichter, @​aaronadamsCA, @​B0und, @​badalsaibo, @​boutahlilsoufiane, @​danilo-leal, @​hafley66, @​hbjORbj, @​issamElmohadeb098, @​jontewks, @​juanpc10, @​klyburke, @​krysia1, @​m4theushw, @​michaldudak, @​mnajdova, @​oliviertassinari, @​PunitSoniME, @​reckter, @​SalvatoreMazzullo, @​samuelsycamore, @​siriwatknp, @​theCuriousOne

v5.5.0

Compare Source

Mar 7, 2022

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

@mui/material@5.5.0
Breaking change
  • ​[ClassNameGenerator] Prevent all base imports (#​31297) @​siriwatknp

    unstable_ClassNameGenerator has been moved from utils to className folder to prevent all MUI Base module imports. If you use the module, please update the import as suggested in the diff below:

    -import { unstable_ClassNameGenerator } from '@&#8203;mui/material/utils';
    +import { unstable_ClassNameGenerator } from '@&#8203;mui/material/className';
    
Changes
@mui/icons-material@5.5.0
@mui/codemod@5.5.0
@mui/lab@5.0.0-alpha.72
@mui/base@5.0.0-alpha.71
@mui/joy@5.0.0-alpha.18
@mui/material-next@6.0.0-alpha.26
Docs
Core

All contributors of this release in alphabetical order: @​Daggy1234, @​danilo-leal, @​EdmundMai, @​eps1lon, @​hbjORbj, @​Janpot, @​jrozbicki, @​m14d3n, @​michaldudak, @​mnajdova, @​nnecec, @​oliviertassinari, @​PunitSoniME, @​simonecervini, @​siriwatknp, @​sjdemartini

v5.4.4

Compare Source

Feb 28, 2022

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

@mui/material@5.4.4
@mui/system@5.4.4
@mui/codemod@5.4.4
@mui/base@5.0.0-alpha.70
  • ​[SelectUnstyled, MultiSelectUnstyled, ButtonUnstyled] Export additional types to make customization easier (#​31172) @​michaldudak
@mui/joy@5.0.0-alpha.17
Docs
Core

All contributors of this release in alphabetical order: @​adriancampos, @​Andarist, @​bonellia, @​davwheat, @​greengiraffe, @​hbjORbj, @​iclaude3, @​m4theushw, @​michaldudak, @​mnajdova, @​oliviertassinari, @​PunitSoniME, @​RedHeadphone, @​robertwt7, @​samuelsycamore, @​siriwatknp, @​sviande

v5.4.3

Compare Source

Feb 21, 2022

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

  • 🛠 @​hbjORbj made components use theme duration/easing values by default (#​30894)
  • A meaningful number of 🐛 bug fixes and 📚 documentation improvements
@mui/material@5.4.3
@mui/icons-material@5.4.3
@mui/joy@5.0.0-alpha.16
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​cameliaben, @​danilo-leal, @​frab90, @​gnowland, @​hbjORbj, @​huyenltnguyen, @​Janpot, @​Jastor11, @​michaldudak, @​oliviertassinari, @​pppp606, @​siriwatknp, @​ThomasTheHuman

v5.4.2

Compare Source

Feb 15, 2022

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

  • 🛠 @​sydneyjodon-wk improved propTypes of the ToggleButton components (#​30883)
  • Several 🐛 bug fixes and 📚 documentation improvements
@mui/material@5.4.2
  • Select] Allow customizing Select based on its variant ([#&#8203;30788](https://github.com/mui/material-ui/issues/30788)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • Portal] Re-export 'Portal' in material ([#&#8203;31003](https://github.com/mui/material-ui/issues/31003)) [@&#8203;liradb2000](https://github.com/liradb2000)
    
  • ToggleButton] Add prop types for `onClick` and `onChange` ([#&#8203;30883](https://github.com/mui/material-ui/issues/30883)) [@&#8203;sydneyjodon-wk](https://github.com/sydneyjodon-wk)
    
  • typescript] Added TypeText declaration to the exports file ([#&#8203;30890](https://github.com/mui/material-ui/issues/30890)) [@&#8203;agauravdev](https://github.com/agauravdev)
    
    
@mui/system@5.4.2
  • system] Fix broken behavior when breakpoints input are not ordered ([#&#8203;30996](https://github.com/mui/material-ui/issues/30996)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
    
@mui/lab@5.0.0-alpha.69
  • DatePicker] Fix passing clearable prop ([#&#8203;30786](https://github.com/mui/material-ui/issues/30786)) [@&#8203;alisasanib](https://github.com/alisasanib)
    
    
@mui/joy@5.0.0-alpha.15
  • Joy] Improve variant customization experience ([#&#8203;30878](https://github.com/mui/material-ui/issues/30878)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • Joy] Make `sx` prop work in Joy ([#&#8203;30955](https://github.com/mui/material-ui/issues/30955)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
Framer
  • design] Remove framer components ([#&#8203;30983](https://github.com/mui/material-ui/issues/30983)) [@&#8203;mbrookes](https://github.com/mbrookes)
    
  • design] Remove framer leftovers ([#&#8203;31070](https://github.com/mui/material-ui/issues/31070)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
Docs
  • docs] Update installation guide of the icons package ([#&#8203;31026](https://github.com/mui/material-ui/issues/31026)) [@&#8203;huyenltnguyen](https://github.com/huyenltnguyen)
    
  • docs] Improve the indication for the legacy APIs ([#&#8203;30995](https://github.com/mui/material-ui/issues/30995)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Specify which props are added in the default `shouldForwardProp` option ([#&#8203;30978](https://github.com/mui/material-ui/issues/30978)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Fix layout shift on loading ([#&#8203;31017](https://github.com/mui/material-ui/issues/31017)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Increase scroll affordance in wide tables ([#&#8203;30713](https://github.com/mui/material-ui/issues/30713)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Fix look & feel of the Masonry demos ([#&#8203;30971](https://github.com/mui/material-ui/issues/30971)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Improve Base component demos ([#&#8203;30884](https://github.com/mui/material-ui/issues/30884)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] Use full product names (Material UI, MUI System) ([#&#8203;30960](https://github.com/mui/material-ui/issues/30960)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Prefer useEnhancedEffect to avoid server side warnings ([#&#8203;30977](https://github.com/mui/material-ui/issues/30977)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • docs] Fix force redirection to a different locale ([#&#8203;30967](https://github.com/mui/material-ui/issues/30967)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Add live Tailwind CSS demo ([#&#8203;30966](https://github.com/mui/material-ui/issues/30966)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Add banner for promoting priority open roles ([#&#8203;31076](https://github.com/mui/material-ui/issues/31076)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • website] Open Full-stack Engineer role for studio ([#&#8203;31038](https://github.com/mui/material-ui/issues/31038)) [@&#8203;prakhargupta1](https://github.com/prakhargupta1)
    
  • website] Minor security improvements ([#&#8203;31062](https://github.com/mui/material-ui/issues/31062)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Improve title of open roles ([#&#8203;30963](https://github.com/mui/material-ui/issues/30963)) [@&#8203;DanailH](https://github.com/DanailH)
    
  • website] Add BIMI avatar ([#&#8203;30444](https://github.com/mui/material-ui/issues/30444)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Add Sycamore to About page ([#&#8203;31000](https://github.com/mui/material-ui/issues/31000)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore)
    
    
Core
  • benchmark] Add missing dependency ([#&#8203;30994](https://github.com/mui/material-ui/issues/30994)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • core] Bump date-io version ([#&#8203;31016](https://github.com/mui/material-ui/issues/31016)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • core] Fix typo in useSlider ([#&#8203;31061](https://github.com/mui/material-ui/issues/31061)) [@&#8203;ryohey](https://github.com/ryohey)
    
  • core] Remove unused draft-js types package ([#&#8203;30993](https://github.com/mui/material-ui/issues/30993)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • test] Test if certain Base members are exported from Material UI ([#&#8203;31067](https://github.com/mui/material-ui/issues/31067)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • core] Remove dead code ([#&#8203;31064](https://github.com/mui/material-ui/issues/31064)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
    

All contributors of this release in alphabetical order: @​agauravdev, @​alisasanib, @​DanailH, @​danilo-leal, @​huyenltnguyen, @​l10nbot, @​liradb2000, @​mbrookes, @​michaldudak, @​mnajdova, @​prakhargupta1, @​oliviertassinari, @​ryohey, @​samuelsycamore, @​siriwatknp, @​sydneyjodon-wk

v5.4.1

Compare Source

Feb 8, 2022

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

  • ️ Snackbar messages are now announced by NVDA when using Firefox (#​30774) @​eps1lon
  • Several 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.4.1
@mui/base@5.0.0-alpha.68
@mui/lab@5.0.0-alpha.68
@mui/joy@5.0.0-alpha.14
Docs
Core

All contributors of this release in alphabetical order: @​alisasanib, @​altruity, @​Ashish2097, @​caioagiani, @​CFarhad, @​cherniavskii, @​danilo-leal, @​eps1lon, @​flaviendelangle, @​garronej, @​GneyHabub, @​joeframbach, @​johsunds, @​kjschabra, @​m4theushw, @​michaldudak, @​mihailgaberov, @​mnajdova, @​mogrady88, @​oliviertassinari, @​paales, @​pppp606, @​siriwatknp, @​theiliad

v5.4.0

Compare Source

Feb 1, 2022

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

@mui/material@5.4.0
Breaking changes
  • ​[core] Do not reexport Base from Material (#​30853) @​michaldudak

    All Base components were exported from the @mui/material package and treated as stable even though the @mui/base package is in development. It could create a lot of confusion if developers start using Base components, depend on them, and demand quality found in "proper" Material components. We admit it was a mistake to reexport these components without marking them as unstable.

    Developers are still encouraged to evaluate the Base components, but they should do so by explicitly installing the @mui/base package.

    This is technically a breaking change as it removes a number of components from the @mui/material package. However, we believe that removing the components now and potentially breaking the codebases will do less harm than introducing "silent" breaking changes to Base components while continuing reexporting them from @mui/material.

    Note: the utility components, such as ClickAwayListener, NoSsr, Portal, and TextareaAutosize continue to be exported from both @mui/material and @mui/base.

    If you're encountering build errors after upgrading @​mui/material, do the following:

    1. Install @​mui/base: npm install @​mui/base or yarn add @​mui/base
    2. Make sure the version of @​mui/base match the version of @​mui/material
    3. Change the import paths of unstyled components from @​mui/material to @​mui/base, e.g.:
    -import ButtonUnstyled from '@&#8203;mui/material/ButtonUnstyled';
    +import ButtonUnstyled from '@&#8203;mui/base/ButtonUnstyled';
    
Changes
@mui/base@5.0.0-alpha.67
@mui/lab@5.0.0-alpha.67
Docs
Core

All contributors of this release in alphabetical order: @​aefox, @​alisasanib, @​atakanzen, @​austinewuncler, @​boutahlilsoufiane, @​cherniavskii, @​danilo-leal, @​DiegoYungh, @​dryrainbow, @​eps1lon, @​garronej, @​goncalovf, @​Hubbz, @​Jack-Works, @​m4theushw, @​michaldudak, @​mnajdova, @​oliviertassinari, @​ryancogswell, @​siriwatknp, @​tanyabouman, @​ZeeshanTamboli

v5.3.1

Compare Source

Jan 24, 2022

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

  • 🛠 @​mnajdova added interoperability guide for using Tailwind CSS (#​30700)
  • A meaningful number of 🐛 bug fixes and 📚 documentation improvements.
@mui/icons-material@5.3.1
@mui/base@5.0.0-alpha.66
Core
Docs

All contributors of this release in alphabetical order: @​aaneitchik, @​alexfauquette, @​chaosmirage, @​ddecrulle, @​Evomatic, @​exequielbc, @​michaldudak, @​mnajdova, @​MrHBS, @​NoahYarian, @​oliviertassinari, @​siriwatknp

v5.3.0

Compare Source

Jan 17, 2022

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

@mui/material@5.3.0
  • Autocomplete] Add ability to pass props to `Paper` component ([#&#8203;30515](https://github.com/mui/material-ui/issues/30515)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
  • Select] Add defaultOpen prop ([#&#8203;30212](https://github.com/mui/material-ui/issues/30212)) [@&#8203;VicHofs](https://github.com/VicHofs)
    
    
@mui/system@5.3.0
  • system]\[box, grid, typography] `textTransform` prop should work directly on component ([#&#8203;30437](https://github.com/mui/material-ui/issues/30437)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • system] Support callback value in `styleOverrides` slot ([#&#8203;30524](https://github.com/mui/material-ui/issues/30524)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/lab@5.0.0-alpha.65
  • Masonry] Observe every masonry child to trigger computation when needed ([#&#8203;29896](https://github.com/mui/material-ui/issues/29896)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • MobileDatePicker] Fix calling onOpen when readOnly is true ([#&#8203;30561](https://github.com/mui/material-ui/issues/30561)) [@&#8203;alisasanib](https://github.com/alisasanib)
    
    
@mui/codemod@5.3.0
  • codemod] Bump `jscodeshift` to remove `colors` dependency ([#&#8203;30578](https://github.com/mui/material-ui/issues/30578)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/styled-engine-sc@5.3.0
  • styled-engine-sc] Add the withConfig API to enable using the babel plugin for styled-comonents ([#&#8203;30589](https://github.com/mui/material-ui/issues/30589)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
    
@mui/joy@5.0.0-alpha.11
  • Joy] Add `SvgIcon` component ([#&#8203;30570](https://github.com/mui/material-ui/issues/30570)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
    
@mui/base@5.0.0-alpha.65
  • SliderUnstyled] Add useSlider hook and polish ([#&#8203;30094](https://github.com/mui/material-ui/issues/30094)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
    
Docs
  • docs] End code block in test/README.md ([#&#8203;30531](https://github.com/mui/material-ui/issues/30531)) [@&#8203;yaboi](https://github.com/yaboi)
    
  • docs] Remove redundant grouping in /components/radio-buttons/ ([#&#8203;30065](https://github.com/mui/material-ui/issues/30065)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
  • docs] Update migration scripts and e2e tests ([#&#8203;30583](https://github.com/mui/material-ui/issues/30583)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Fix migration guides for versions older than v4 ([#&#8203;30595](https://github.com/mui/material-ui/issues/30595)) [@&#8203;kkirsche](https://github.com/kkirsche)
    
  • docs] Inform about specific files for DataGrid locales ([#&#8203;30411](https://github.com/mui/material-ui/issues/30411)) [@&#8203;alexfauquette](https://github.com/alexfauquette)
    
  • docs] jss-to-tss migration advise to drop clsx in favor of cx ([#&#8203;30527](https://github.com/mui/material-ui/issues/30527)) [@&#8203;garronej](https://github.com/garronej)
    
  • docs] Fix integration with MUI X ([#&#8203;30593](https://github.com/mui/material-ui/issues/30593)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Adding peer dependencies explanation on [@&#8203;mui/lab](https://github.com/mui/lab) README.md ([#&#8203;30532](https://github.com/mui/material-ui/issues/30532)) [@&#8203;glaucoheitor](https://github.com/glaucoheitor)
    
  • docs] Add missing quote in migration docs ([#&#8203;30587](https://github.com/mui/material-ui/issues/30587)) [@&#8203;Atralbus](https://github.com/Atralbus)
    
  • docs] Update link to Doit sponsor ([#&#8203;30586](https://github.com/mui/material-ui/issues/30586)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Add products identifier and drawer ([#&#8203;30283](https://github.com/mui/material-ui/issues/30283)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • website] Fix code button with installation command ([#&#8203;30622](https://github.com/mui/material-ui/issues/30622)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • website] Add a Blog index page ([#&#8203;30121](https://github.com/mui/material-ui/issues/30121)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • website] Migrate Twitter from [@&#8203;MaterialUI](https://github.com/MaterialUI) to @&#8203;MUI_hq [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Add Andrii to the About Us page ([#&#8203;30581](https://github.com/mui/material-ui/issues/30581)) [@&#8203;cherniavskii](https://github.com/cherniavskii)
    
    
Core
  • core] Revert changes to peer dependencies ([#&#8203;30662](https://github.com/mui/material-ui/issues/30662)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Renovate should not try to update node ([#&#8203;30659](https://github.com/mui/material-ui/issues/30659)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Remove dead files ([#&#8203;30663](https://github.com/mui/material-ui/issues/30663)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Fix outdated TypeScript template ([#&#8203;30596](https://github.com/mui/material-ui/issues/30596)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Remove extra `</p>` from header of README.md ([#&#8203;30530](https://github.com/mui/material-ui/issues/30530)) [@&#8203;yaboi](https://github.com/yaboi)
    
  • core] Fix `docs:api` script for Windows OS ([#&#8203;30533](https://github.com/mui/material-ui/issues/30533)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
    

All contributors of this release in alphabetical order: @​alexfauquette, @​alisasanib, @​Atralbus, @​cherniavskii, @​danilo-leal, @​eps1lon, @​garronej, @​glaucoheitor, @​hbjORbj, @​kkirsche, @​mnajdova, @​oliviertassinari, @​siriwatknp, @​VicHofs, @​yaboi, @​ZeeshanTamboli

v5.2.8

Compare Source

Jan 10, 2022

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

  • A meaningful number of 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.2.8
@mui/joy@5.0.0-alpha.10
Docs

All contributors of this release in alphabetical order: @​aefox, @​alexandre-lelain, @​danilo-leal, @​eps1lon, @​garronej, @​hbjORbj, @​noam-honig, @​oliviertassinari, @​siriwatknp, @​ZeeshanTamboli

v5.2.7

Compare Source

Jan 3, 2022

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

@mui/material@5.2.7
Docs
Core

All contributors of this release in alphabetical order: @​abhi45, @​ahmad-reza619, @​alex-dikusar, @​alisasanib, @​boazrymland, @​Certificate, @​hckhanh, @​l10nbot, @​michaldudak, @​mnajdova, @​oliviertassinari, @​siriwatknp, @​ValentinH, @​ZeeshanTamboli

v5.2.6

Compare Source

Dec 27, 2021

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

  • 📓 The Norwegian Bokmål (nb-NO) locale was added (#​27520) @​wogsland
  • 🛠 Introduced a new useBadge hook in the @mui/base package (#​30246) @​mnajdova
  • And more 🐛 bug fixes and 📚 documentation improvements.
@mui/material@5.2.6
@mui/base@5.0.0-alpha.62
@mui/joy@5.0.0-alpha.8
Docs
Core

All contributors of this release in alphabetical order: @​cherniavskii, @​chwallen, @​jamesmelzer, @​Janpot, @​kealjones-wk, @​l10nbot, @​mnajdova, @​oliviertassinari, @​pupudu, @​ryota-murakami, @​ShuPink, @​siriwatknp, @​wogsland, @​ZeeshanTamboli

v5.2.5

Compare Source

Dec 20, 2021

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

  • 🛠 This release mostly improves what's behind the scenes: infrastructure and tests
  • 📓 Danish (da-DK) locale was added (#​29485) @​mikk5829
  • 🖌 Polished the design of Base components (#​30149) and the docs in general (#​29994) @​danilo-leal
  • 📚 Many additions and improvements to the documentation were made
@mui/material@5.2.5
  • l10n] Add Danish (da-DK) locale ([#&#8203;29485](https://github.com/mui/material-ui/issues/29485)) [@&#8203;mikk5829](https://github.com/mikk5829)
    
  • LoadingButton] Label progressbar by the LoadingButton ([#&#8203;30002](https://github.com/mui/material-ui/issues/30002)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
  • Tabs] Remove unnecessary `Partial<>` type around TabIndicatorProps type ([#&#8203;30254](https://github.com/mui/material-ui/issues/30254)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli)
    
    
@mui/system@5.2.5
  • system] Use `useEnhancedEffect` to prevent flicker ([#&#8203;30216](https://github.com/mui/material-ui/issues/30216)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
    
@mui/lab@5.0.0-alpha.61
  • pickers] Fix the wrong MuiClockPicker's ArrowSwitcher slot name ([#&#8203;30226](https://github.com/mui/material-ui/issues/30226)) [@&#8203;rejetto](https://github.com/rejetto)
    
    
Docs
  • docs] Run JS compiler on markdown output ([#&#8203;29732](https://github.com/mui/material-ui/issues/29732)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • Badge] Add tests for `anchorOrigin` prop ([#&#8203;30147](https://github.com/mui/material-ui/issues/30147)) [@&#8203;daniel-sachs](https://github.com/daniel-sachs)
    
  • docs] Add cssmodule injection order comments to Nextjs example ([#&#8203;30213](https://github.com/mui/material-ui/issues/30213)) [@&#8203;ShuPink](https://github.com/ShuPink)
    
  • docs] Remove extra word in Select component code example comments ([#&#8203;30281](https://github.com/mui/material-ui/issues/30281)) [@&#8203;KThompso](https://github.com/KThompso)
    
  • docs] Improve the description of the Accordion ([#&#8203;30253](https://github.com/mui/material-ui/issues/30253)) [@&#8203;jamesmelzer](https://github.com/jamesmelzer)
    
  • docs] Heading capitalization convention [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • docs] Rename remaining 'unstyled' references to 'base' ([#&#8203;30206](https://github.com/mui/material-ui/issues/30206)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • docs] Add to migration doc about ref type specificity ([#&#8203;30114](https://github.com/mui/material-ui/issues/30114)) [@&#8203;hbjORbj](https://github.com/hbjORbj)
    
  • docs] Add script to clone pages ([#&#8203;30107](https://github.com/mui/material-ui/issues/30107)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • docs] Correct colors in breakpoints documentation ([#&#8203;30219](https://github.com/mui/material-ui/issues/30219)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • docs] Sync icon search UI state with the url ([#&#8203;30075](https://github.com/mui/material-ui/issues/30075)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • docs] Base components demos design polish ([#&#8203;30149](https://github.com/mui/material-ui/issues/30149)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • docs] General documentation polish ([#&#8203;29994](https://github.com/mui/material-ui/issues/29994)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • examples] Fix typo in the remix example's README ([#&#8203;30289](https://github.com/mui/material-ui/issues/30289)) [@&#8203;lemol](https://github.com/lemol)
    
  • website] Remove expired gold sponsor ([#&#8203;30222](https://github.com/mui/material-ui/issues/30222)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • website] Remove broken showcase links ([#&#8203;30217](https://github.com/mui/material-ui/issues/30217)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
    
Core
  • test] Reduce bundle size comparison memory consumption ([#&#8203;30195](https://github.com/mui/material-ui/issues/30195)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • core] make snapshot comparison more resilient ([#&#8203;30183](https://github.com/mui/material-ui/issues/30183)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • core] update formatted ts demo to support new structure ([#&#8203;30248](https://github.com/mui/material-ui/issues/30248)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • core] cache dependencies in github actions ([#&#8203;30211](https://github.com/mui/material-ui/issues/30211)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • core] fix root package version ([#&#8203;30204](https://github.com/mui/material-ui/issues/30204)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • core] Fail the build when the dangerjs script errors ([#&#8203;30186](https://github.com/mui/material-ui/issues/30186)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • test] Add E2E website tests ([#&#8203;30128](https://github.com/mui/material-ui/issues/30128)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    

All contributors of this release in alphabetical order: @​daniel-sachs, @​danilo-leal, @​eps1lon, @​hbjORbj, @​jamesmelzer, @​Janpot, @​KThompso, @​lemol, @​michaldudak, @​mikk5829, @​mnajdova, @​oliviertassinari, @​rejetto, @​ShuPink, @​siriwatknp, @​ZeeshanTamboli

v5.2.4

Compare Source

Dec 14, 2021

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

  • Add not operator to theme.breakpoints (#​29311) @​Philipp000

    const styles = (theme) => ({
      root: {
        backgroundColor: 'blue',
        // Match [xs, md) and [md + 1, ∞)
        //       [xs, md) and [lg, ∞)
        //       [0px, 900px) and [1200px, ∞)
        [theme.breakpoints.not('md')]: {
          backgroundColor: 'red',
        },
      },
    });
    
  • And many more 🐛 bug fixes and 📚 improvements.

@mui/material@5.2.4
@mui/system@5.2.4
@mui/base@5.0.0-alpha.60
@mui/icons-material@5.2.4
Docs
Core

All contributors of this release in alphabetical order: @​alisasanib, @​bryan-hunter, @​danilo-leal, @​eps1lon, @​fmeum, @​Janpot, @​kkorach, @​l10nbot, @​ladygo93, @​michaldudak, @​mnajdova, @​oliviertassinari, @​Philipp000, @​rvsia, @​TheodosiouTh, @​yaboi

v5.2.3

Compare Source

Dec 6, 2021

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

@mui/material@5.2.3
@mui/system@5.2.3
@mui/utils@5.2.3
@mui/icons-material@5.2.1
@mui/base@5.0.0-alpha.59
@mui/lab@5.0.0-alpha.59
@mui/joy@5.0.0-alpha.5
Docs
Core

All contributors of this release in alphabetical order: @​chao813, @​daniel-sachs, @​danilo-leal, @​Domino987, @​eduardomcv, @​flaviendelangle, @​fourjr, @​genzyy, @​hbjORbj, @​huydhoang, @​jayeclark, @​jonathanrtuck, @​kkorach, @​l10nbot, @​mbrookes, @​MichaelDeBoey, @​michaldudak, @​mnajdova, @​oliviertassinari, @​ronwarner, @​Semigradsky, @​siriwatknp, @​tasugi, @​ThewBear, @​ZeeshanTamboli

v5.2.2

Compare Source

Nov 29, 2021

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

@mui/material@5.2.2
@mui/joy@5.0.0-alpha.4
@mui/codemod@5.2.1
@mui/system@5.2.2
@mui/utils@5.2.2
Docs
Core

All contributors of this release in alphabetical order: @​danilo-leal, @​eps1lon, @​Harshikerfuffle, @​hbjORbj, @​mbrookes, @​oliviertassinari, @​radlinskii, @​sinclairity, @​siriwatknp

v5.2.1

Compare Source

Nov 25, 2021

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

This is an early release to fix export 'useId' (imported as 'React') was not found in 'react' when bundling code depending on MUI Core.

All contributors of this release in alphabetical order: @​eps1lon, @​karakib2k18, @​kegi, @​mbrookes, @​mnajdova, @​prakhargupta1, @​oliviertassinari

v5.2.0

Compare Source

Nov 23, 2021

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

  • 🧪 Created another unstyled component: TabsUnstyled (#​29597) @​mnajdova.
  • 🎉 Updated the Material Icons set with the latest changes from Google (#​29328) @​michaldudak / (#​29818) @​chao813.
    This update adds 200 new icons and tweaks the appearance of many more.
    With it, we're getting close to having 2000 icons in our set.
  • 🐛 Fixed bugs and improved the infrastructure and documentation 📚.
@mui/material@5.2.0
  • IconButton] Remove on hover effect when `disableRipple` is set ([#&#8203;29298](https://github.com/mui/material-ui/issues/29298)) [@&#8203;adamfitzgibbon](https://github.com/adamfitzgibbon)
    
  • i18n] Add the amharic language ([#&#8203;29153](https://github.com/mui/material-ui/issues/29153)) [@&#8203;NatiG100](https://github.com/NatiG100)
    
  • material] Fix types for `variants.style` to accept callbacks ([#&#8203;29610](https://github.com/mui/material-ui/issues/29610)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • Popper] Simplify prop types ([#&#8203;29680](https://github.com/mui/material-ui/issues/29680)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • Select] Include aria-selected=false when option not selected ([#&#8203;29695](https://github.com/mui/material-ui/issues/29695)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • useMediaQuery] Fix crash in Safari < 14 and IE 11 ([#&#8203;29776](https://github.com/mui/material-ui/issues/29776)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
  • useMediaQuery] Ensure no tearing in React 18 ([#&#8203;28491](https://github.com/mui/material-ui/issues/28491)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
    
@mui/codemod@5.2.0
  • codemod] Fix `jss-to-styled` to support multiple withStyles ([#&#8203;29824](https://github.com/mui/material-ui/issues/29824)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/icons-material@5.2.0
  • icons] Sync new Google Material Icons ([#&#8203;29818](https://github.com/mui/material-ui/issues/29818)) [@&#8203;chao813](https://github.com/chao813)
    
  • icons] Sync recent Material Icons from Google ([#&#8203;29328](https://github.com/mui/material-ui/issues/29328)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
    
@mui/system@5.2.0
  • Box] Fix `sx` prop runtime issue when used as function ([#&#8203;29830](https://github.com/mui/material-ui/issues/29830)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
  • system] Fix `sx` throw error when value is `null` or `undefined` ([#&#8203;29756](https://github.com/mui/material-ui/issues/29756)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
  • system] Fix minor CssVars issues ([#&#8203;29747](https://github.com/mui/material-ui/issues/29747)) [@&#8203;siriwatknp](https://github.com/siriwatknp)
    
    
@mui/styled-engine@5.2.0
  • styled-engine] Fix props inference in styled-engine ([#&#8203;29739](https://github.com/mui/material-ui/issues/29739)) [@&#8203;Janpot](https://github.com/Janpot)
    
    
@mui/base@5.0.0-alpha.56
  • FormControlUnstyled] `focused` is always false unless explicitly set to `true` [@&#8203;mwilkins91](https://github.com/mwilkins91)
    
  • TabsUnstyled] Introduce new component ([#&#8203;29597](https://github.com/mui/material-ui/issues/29597)) [@&#8203;mnajdova](https://github.com/mnajdova)
    
    
@mui/lab@5.0.0-alpha.56
  • DatePicker]\[timepicker] Add missing component declarations ([#&#8203;29517](https://github.com/mui/material-ui/issues/29517)) [@&#8203;longzheng](https://github.com/longzheng)
    
  • Masonry] exports from root package ([#&#8203;29754](https://github.com/mui/material-ui/issues/29754)) [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech)
    
  • pickers] Widen accepted `luxon` version range ([#&#8203;29761](https://github.com/mui/material-ui/issues/29761)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
    
Docs
  • blog] MUI X v5 blog post ([#&#8203;29590](https://github.com/mui/material-ui/issues/29590)) [@&#8203;DanailH](https://github.com/DanailH)
    
  • blog] Polish the Benny Joo joins MUI post ([#&#8203;29697](https://github.com/mui/material-ui/issues/29697)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • CHANGELOG] Explain why we do breaking changes [@&#8203;oliviertassinari](https://github.com/oliviertassinari)
    
  • core] Update latest issue template for codesandbox CI ([#&#8203;29783](https://github.com/mui/material-ui/issues/29783)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
  • core] Ensure `@mui/core` is an alias for `@mui/base` ([#&#8203;29762](https://github.com/mui/material-ui/issues/29762)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
  • docs] Fix broken Next and Previous links ([#&#8203;29711](https://github.com/mui/material-ui/issues/29711)) [@&#8203;scallaway](https://github.com/scallaway)
    
  • docs] Add a note that ToggleButton exclusive does not enforce selection ([#&#8203;29812](https://github.com/mui/material-ui/issues/29812)) [@&#8203;mmacu](https://github.com/mmacu)
    
  • docs] Update the list of supported locales ([#&#8203;29831](https://github.com/mui/material-ui/issues/29831)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • docs] Update tooltip doc to better define touch action ([#&#8203;29717](https://github.com/mui/material-ui/issues/29717)) [@&#8203;gnowland](https://github.com/gnowland)
    
  • website] Standardize the background color from the MUI team photos ([#&#8203;29738](https://github.com/mui/material-ui/issues/29738)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
  • website] Add Bharat to the About Us Page ([#&#8203;29714](https://github.com/mui/material-ui/issues/29714)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap)
    
  • website] Add about page entry for jan ([#&#8203;29701](https://github.com/mui/material-ui/issues/29701)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • website] Adding Prakhar to the about page ([#&#8203;29737](https://github.com/mui/material-ui/issues/29737)) [@&#8203;danilo-leal](https://github.com/danilo-leal)
    
    
Core
  • test] Allow debugging with Chrome and VSCode inspector ([#&#8203;29777](https://github.com/mui/material-ui/issues/29777)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
  • test] Use renderer clock instead of custom useFakeTimers call ([#&#8203;29778](https://github.com/mui/material-ui/issues/29778)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
  • test] Only mock Date in regression tests ([#&#8203;29763](https://github.com/mui/material-ui/issues/29763)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
  • test] Disable nightly integration tests on `next` branch ([#&#8203;29748](https://github.com/mui/material-ui/issues/29748)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
  • test] Allow configuring clock directly from `createRenderer` ([#&#8203;29684](https://github.com/mui/material-ui/issues/29684)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
  • test] Accept backslashes as path separators in test CLI ([#&#8203;29694](https://github.com/mui/material-ui/issues/29694)) [@&#8203;michaldudak](https://github.com/michaldudak)
    
  • utils] Use built-in hook when available for useId ([#&#8203;26489](https://github.com/mui/material-ui/issues/26489)) [@&#8203;eps1lon](https://github.com/eps1lon)
    
    

All contributors of this release in alphabetical order: @​abhinav-22-tech, @​adamfitzgibbon, @​bharatkashyap, @​chao813, @​DanailH, @​danilo-leal, @​eps1lon, @​gnowland, @​Janpot, @​longzheng, @​michaldudak, @​mmacu, @​mnajdova, @​mwilkins91, @​NatiG100, @​oliviertassinari, @​scallaway, @​siriwatknp

v5.1.1

Compare Source

Nov 16, 2021

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

@mui/material@5.1.1
@mui/base@5.0.0-alpha.55
Breaking changes
  • ​[core] Rename mui/core to mui/base (#​29585) @​michaldudak

    Based on the results of the poll and our internal discussions, we decided to rename the @mui/core package to @mui/base. The main rationale for this is the fact that we use the term "Core" to refer to the core components product family, the one that includes Material Design components, unstyled components, System utilities, etc. Therefore, @​mui/core was effectively a subset of MUI Core. This was confusing.

    The new name better reflects the purpose of the package: it contains unstyled components, hooks, and utilities that serve as a base to build on.

    -import { useSwitch } from '@&#8203;mui/core/SwitchUnstyled';
    +import { useSwitch } from '@&#8203;mui/base/SwitchUnstyled';
    
@mui/lab@5.0.0-alpha.55
Docs
Core

All contributors of this release in alphabetical order: @​aaronholla, @​alexfauquette, @​anikcreative, @​daniel-sachs, @​eps1lon, @​flipvrijn, @​hbjORbj, @​joshua-lawrence, @​michaldudak, @​mnajdova, @​netizer, @​oliviertassinari, @​petermikitsh, @​siriwatknp, @​ZeeshanTamboli

v5.1.0

Compare Source

Nov 8, 2021

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

@mui/material@5.1.0
@mui/system@5.1.0
@mui/codemod@5.1.0
@mui/lab@5.0.0-alpha.54
@mui/joy@5.0.0-alpha.0
Docs
Core

All contributors of this release in alphabetical order: @​adamfitzgibbon, @​ainatenhi, @​alexfauquette, @​busches, @​ChrisClaude, @​dan-mba, @​DanailH, @​danilo-leal, @​DASPRiD, @​ElonVolo, @​eps1lon, @​eric-burel, @​flaviendelangle, @​gssakash, @​hbjORbj, @​IPJT, @​jacklaurencegaray, @​Jareechang, @​jatinsandilya, @​m4theushw, @​mbeltramin, @​mbrookes, @​michaldudak, @​mnajdova, @​nicbarajas, @​oliviertassinari, @​Pablion, @​robcaldecott, @​siriwatknp, @​tanay123456789, @​tm1000, @​Wimukti, @​ZeeshanTamboli

v5.0.6

Compare Source

Oct 27, 2021

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

  • 🔧 Fix reported TypeScript issues on the @mui/system package because some packages were not released
@mui/material@5.0.6
@mui/system@5.0.6
Docs

All contributors of this release in alphabetical order: @​Andarist, @​hbjORbj, @​oliviertassinari, @​williamhaley

v5.0.5

Compare Source

Oct 26, 2021

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

@mui/codemod@5.0.5
@mui/base@5.0.0-alpha.52
@mui/lab@5.0.0-alpha.52
@mui/icons@5.0.5
@mui/material@5.0.5
@mui/system@5.0.5
Documentation
Core

All contributors of this release in alphabetical order: @​adamfitzgibbon, @​DanailH, @​deepanshu2506, @​Devesh21700Kumar, @​eps1lon, @​gnowland, @​hbjORbj, @​jatinsandilya, @​JuliaNeumann, @​LorenzHenk, @​michal-perlakowski, @​michaldudak, @​mnajdova, @​nikitabobers, @​NMinhNguyen, @​omarmosid, @​rebeccahongsf, @​siriwatknp, @​waxidiotic

v5.0.4

Compare Source

Oct 14, 2021

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

  • 🧪 Added UnstyledInput and useInput hook in the the first component in @​mui/base package @​michaldudak (#​28053)
  • 🐛 Fixed many bugs and improved the documentation 📚.
@mui/material@5.0.4
@mui/system@5.0.4
@mui/base@5.0.0-alpha.51
@mui/lab@5.0.0-alpha.51
Docs
Core

All contributors of this release in alphabetical order: @​amen-souissi, @​benmneb, @​epodol, @​eps1lon, @​goncalovf, @​hbjORbj, @​Jareechang, @​kgregory, @​michaldudak, @​mnajdova, @​mottox2, @​officialpiyush, @​phudekar, @​siriwatknp, @​tanyabouman, @​visualfanatic, @​ZeeshanTamboli


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.

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


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@mui/lab](https://mui.com/material-ui/about-the-lab/) ([source](https://github.com/mui/material-ui)) | dependencies | patch | [`5.0.0-alpha.50` -> `5.0.0-alpha.105`](https://renovatebot.com/diffs/npm/@mui%2flab/5.0.0-alpha.50/5.0.0-alpha.105) | | [@mui/material](https://mui.com/material-ui/getting-started/overview/) ([source](https://github.com/mui/material-ui)) | dependencies | minor | [`5.0.3` -> `5.10.11`](https://renovatebot.com/diffs/npm/@mui%2fmaterial/5.0.3/5.10.11) | --- ### Release Notes <details> <summary>mui/material-ui (@&#8203;mui/lab)</summary> ### [`v5.0.0-alpha.105`](https://github.com/mui/material-ui/compare/639224a3e3600cb0e04755d89aab250297b6d851...c80ff0339882859af7e17f8bfd0a5f6880b323f8) [Compare Source](https://github.com/mui/material-ui/compare/639224a3e3600cb0e04755d89aab250297b6d851...c80ff0339882859af7e17f8bfd0a5f6880b323f8) ### [`v5.0.0-alpha.104`](https://github.com/mui/material-ui/compare/7bd7c219e2670ff7791148e9b1a1d2387528fc0c...639224a3e3600cb0e04755d89aab250297b6d851) [Compare Source](https://github.com/mui/material-ui/compare/7bd7c219e2670ff7791148e9b1a1d2387528fc0c...639224a3e3600cb0e04755d89aab250297b6d851) ### [`v5.0.0-alpha.103`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha103) [Compare Source](https://github.com/mui/material-ui/compare/d4a3216cdd858899960f945d6e00b2d59bf1d5d1...7bd7c219e2670ff7791148e9b1a1d2387528fc0c) ##### BREAKING CHANGE - \[base] `components` -> `slots` API rename ([#&#8203;34693](https://github.com/mui/material-ui/issues/34693)) [@&#8203;michaldudak](https://github.com/michaldudak) - Change all occurrences of components and componentsProps props in Base components to slots and slotProps, respectively. - Change casing of slots' fields to camelCase ```diff -<SwitchUnstyled components={{Root: CustomRoot}} componentsProps={{rail: { className: 'custom-rail' }}} /> +<SwitchUnstyled slots={{root: CustomRoot}} slotProps={{rail: { className: 'custom-rail' }}} /> ``` - \[base] Make CSS class prefixes consistent ([#&#8203;33411](https://github.com/mui/material-ui/issues/33411)) [@&#8203;michaldudak](https://github.com/michaldudak) **This is a breaking change for anyone who depends on the class names applied to Base components.** If you use the `<component>UnstyledClasses` objects, you won't notice a difference. Only if you depend on the resulting class names (e.g. in CSS stylesheets), you'll have to adjust your code. ```diff -.ButtonUnstyled-root { ... }; +.MuiButton-root { ... }; ``` ##### Changes - \[test] Test all Base components with describeConformanceUnstyled ([#&#8203;34825](https://github.com/mui/material-ui/issues/34825)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.102`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha102) [Compare Source](https://github.com/mui/material-ui/compare/d9ef6e788eee11256818329c7429242f8b769263...d4a3216cdd858899960f945d6e00b2d59bf1d5d1) - \[MultiSelect]\[base] Prevent the renderValue prop from being propagated to the DOM ([#&#8203;34698](https://github.com/mui/material-ui/issues/34698)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[NoSsr] Convert code to TypeScript ([#&#8203;34735](https://github.com/mui/material-ui/issues/34735)) [@&#8203;mbayucot](https://github.com/mbayucot) ### [`v5.0.0-alpha.101`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha101) [Compare Source](https://github.com/mui/material-ui/compare/0f75f3d78b67c405c23bfd14a29aedff367415b7...d9ef6e788eee11256818329c7429242f8b769263) - ​<!-- 01 -->\[TrapFocus] Restore the previously exported type from [@&#8203;mui/material](https://github.com/mui/material) ([#&#8203;34601](https://github.com/mui/material-ui/issues/34601)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.100`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha100) [Compare Source](https://github.com/mui/material-ui/compare/594d87dab0e43e641a6826c935df8f2c10672955...0f75f3d78b67c405c23bfd14a29aedff367415b7) - ​<!-- 04 -->\[SnackbarUnstyled] Create component and `useSnackbar` hook ([#&#8203;33227](https://github.com/mui/material-ui/issues/33227)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.0.0-alpha.99`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha99) [Compare Source](https://github.com/mui/material-ui/compare/95ba70ad1f8f30ba45c4cc0fa849693b75ddad6a...594d87dab0e43e641a6826c935df8f2c10672955) ##### Breaking changes - \[TrapFocus] Rename TrapFocus to FocusTrap ([#&#8203;34216](https://github.com/mui/material-ui/issues/34216)) [@&#8203;kabernardes](https://github.com/kabernardes) ```diff -import TrapFocus from '@&#8203;mui/base/TrapFocus'; +import FocusTrap from '@&#8203;mui/base/FocusTrap'; ``` ##### Changes - \[MultiSelect] Require a single tap to select an item on mobile Chrome ([#&#8203;33932](https://github.com/mui/material-ui/issues/33932)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.98`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha98) [Compare Source](https://github.com/mui/material-ui/compare/992421d0114a9df72d358fe6fccc28c1fb6f1505...95ba70ad1f8f30ba45c4cc0fa849693b75ddad6a) ##### Breaking changes - \[Select]\[base] Add event parameter to the onChange callback ([#&#8203;34158](https://github.com/mui/material-ui/issues/34158)) [@&#8203;michaldudak](https://github.com/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. ```jsx // before <SelectUnstyled onChange={(newValue) => { /* ... */ }} /> // after <SelectUnstyled onChange={(event, newValue) => { /* ... */ }} /> ``` ### [`v5.0.0-alpha.97`](https://github.com/mui/material-ui/compare/99b23c06d9b018d6c500fa1acb3030d673e219ab...992421d0114a9df72d358fe6fccc28c1fb6f1505) [Compare Source](https://github.com/mui/material-ui/compare/99b23c06d9b018d6c500fa1acb3030d673e219ab...992421d0114a9df72d358fe6fccc28c1fb6f1505) ### [`v5.0.0-alpha.96`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha96) [Compare Source](https://github.com/mui/material-ui/compare/e057e94fe46fddd66fd7c95b593b50ff53a97a35...99b23c06d9b018d6c500fa1acb3030d673e219ab) - ​<!-- 21 -->\[Select]\[base] Fix type issues that appeared with TS 4.8 ([#&#8203;34132](https://github.com/mui/material-ui/issues/34132)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.95`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha95) [Compare Source](https://github.com/mui/material-ui/compare/7f502e06d54c5a2f389a1639358c84279462b54a...e057e94fe46fddd66fd7c95b593b50ff53a97a35) - \[Button]\[base] Prevent too many ref updates ([#&#8203;33882](https://github.com/mui/material-ui/issues/33882)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[Select]\[base] Fix typo in listbox blur event handler ([#&#8203;34120](https://github.com/mui/material-ui/issues/34120)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[TrapFocus] Improve tab test and simplify demo ([#&#8203;34008](https://github.com/mui/material-ui/issues/34008)) [@&#8203;EthanStandel](https://github.com/EthanStandel) ### [`v5.0.0-alpha.94`](https://github.com/mui/material-ui/compare/89617ef683d2bcd2c870e9c1bd58ad4d55247fd5...7f502e06d54c5a2f389a1639358c84279462b54a) [Compare Source](https://github.com/mui/material-ui/compare/89617ef683d2bcd2c870e9c1bd58ad4d55247fd5...7f502e06d54c5a2f389a1639358c84279462b54a) ### [`v5.0.0-alpha.93`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha93) - ​<!-- 31 -->\[TrapFocus] Removes invisible tabbable elements from ([#&#8203;33543](https://github.com/mui/material-ui/issues/33543)) [@&#8203;EthanStandel](https://github.com/EthanStandel) - ​<!-- 30 -->\[Input]\[base] Pass the rows prop to the underlying textarea ([#&#8203;33873](https://github.com/mui/material-ui/issues/33873)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 06 -->\[SelectUnstyled] Add ability to post the select's value when submitting a form ([#&#8203;33697](https://github.com/mui/material-ui/issues/33697)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.91`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha91) - ​<!-- 33 -->\[Base] Make PopperUnstyled `component` overridable ([#&#8203;33573](https://github.com/mui/material-ui/issues/33573)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 32 -->\[Base] Ensure all components are OverridableComponent ([#&#8203;33506](https://github.com/mui/material-ui/issues/33506)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.90`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha90) - ​<!-- 23 -->\[base] Export types used by components' props ([#&#8203;33522](https://github.com/mui/material-ui/issues/33522)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 22 -->\[base] Add missing type definitions in useControllableReducer ([#&#8203;33496](https://github.com/mui/material-ui/issues/33496)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 06 -->\[SelectUnstyled] Do not call onChange unnecessarily ([#&#8203;33408](https://github.com/mui/material-ui/issues/33408)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.89`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha89) - \[Base] Change the order of class names merged in useSlotProps ([#&#8203;33383](https://github.com/mui/material-ui/issues/33383)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[ModalUnstyled] Accept callbacks in componentsProps ([#&#8203;33181](https://github.com/mui/material-ui/issues/33181)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[SelectUnstyled] Accept callbacks in componentsProps ([#&#8203;33197](https://github.com/mui/material-ui/issues/33197)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[TabsUnstyled] Accept callbacks in componentsProps ([#&#8203;33284](https://github.com/mui/material-ui/issues/33284)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.88`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha88) - \[base] Remove a type incompatible with Typescript 3.5 ([#&#8203;33361](https://github.com/mui/material-ui/issues/33361)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[BadgeUnstyled] Export BadgeUnstyledOwnProps interface to fix typescript compiler error ([#&#8203;33314](https://github.com/mui/material-ui/issues/33314)) [@&#8203;aaronlademann-wf](https://github.com/aaronlademann-wf) - \[TablePaginationUnstyled] Accept callbacks in componentsProps ([#&#8203;33309](https://github.com/mui/material-ui/issues/33309)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.87`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha87) - ​<!-- 25 -->\[base] Improve the return type of useSlotProps ([#&#8203;33279](https://github.com/mui/material-ui/issues/33279)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 24 -->\[base] Improve some types ([#&#8203;33270](https://github.com/mui/material-ui/issues/33270)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 13 -->\[MenuUnstyled] Fix keyboard accessibility of menu items ([#&#8203;33145](https://github.com/mui/material-ui/issues/33145)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 12 -->\[ModalManager] Lock body scroll when container is inside shadow DOM ([#&#8203;33168](https://github.com/mui/material-ui/issues/33168)) [@&#8203;jacobweberbowery](https://github.com/jacobweberbowery) - ​<!-- 10 -->\[SliderUnstyled] Use useSlotProps ([#&#8203;33132](https://github.com/mui/material-ui/issues/33132)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 07 -->\[TextareaAutosize] Fix crash when used with React 18 & Suspense ([#&#8203;33238](https://github.com/mui/material-ui/issues/33238)) [@&#8203;howlettt](https://github.com/howlettt) - ​<!-- 06 -->\[TextareaAutosize] Fix warnings for too many renders in React 18 ([#&#8203;33253](https://github.com/mui/material-ui/issues/33253)) [@&#8203;mnajdova](https://github.com/mnajdova) ### [`v5.0.0-alpha.86`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha86) - ​<!-- 29 -->\[BadgeUnstyled] Accept callbacks in componentsProps ([#&#8203;33176](https://github.com/mui/material-ui/issues/33176)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 25 -->\[ButtonUnstyled] Use useSlotProps ([#&#8203;33096](https://github.com/mui/material-ui/issues/33096)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 11 -->\[FormControlUnstyled] Accept callbacks in componentsProps ([#&#8203;33180](https://github.com/mui/material-ui/issues/33180)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 10 -->\[InputUnstyled] Use useSlotProps ([#&#8203;33094](https://github.com/mui/material-ui/issues/33094)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 05 -->\[ModalUnstyled] Define ownerState and slot props' types ([#&#8203;32901](https://github.com/mui/material-ui/issues/32901)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 03 -->\[SwitchUnstyled] Use useSlotProps ([#&#8203;33174](https://github.com/mui/material-ui/issues/33174)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.85`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha85) - ​<!-- 11 -->\[MenuUnstyled] Accept callbacks in componentsProps ([#&#8203;32997](https://github.com/mui/material-ui/issues/32997)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 10 -->\[ModalUnstyled] Fix errors from the W3C validator about incorrect aria-hidden attribute on some elements ([#&#8203;30920](https://github.com/mui/material-ui/issues/30920)) [@&#8203;mkrtchian](https://github.com/mkrtchian) - ​<!-- 09 -->\[ModalUnstyled] Fix behavior of not respecting props ariaHidden value ([#&#8203;32055](https://github.com/mui/material-ui/issues/32055)) [@&#8203;tech-meppem](https://github.com/tech-meppem) ### [`v5.0.0-alpha.84`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha84) - \[base] Remove [@&#8203;mui/system](https://github.com/mui/system) in tests ([#&#8203;32945](https://github.com/mui/material-ui/issues/32945)) [@&#8203;kevinji](https://github.com/kevinji) - \[ButtonUnstyled] Accept callbacks in componentsProps ([#&#8203;32991](https://github.com/mui/material-ui/issues/32991)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[SwitchUnstyled] Accept callbacks in componentsProps ([#&#8203;32993](https://github.com/mui/material-ui/issues/32993)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[TablePaginationUnstyled] Define ownerState and slot props' types ([#&#8203;32905](https://github.com/mui/material-ui/issues/32905)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[TabPanelUnstyled] Define ownerState and slot props' types ([#&#8203;32928](https://github.com/mui/material-ui/issues/32928)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[TabsListUnstyled] Define ownerState and slot props' types ([#&#8203;32925](https://github.com/mui/material-ui/issues/32925)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.83`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha83) - ​<!-- 24 -->\[BadgeUnstyled] Define ownerState and slot props' types ([#&#8203;32750](https://github.com/mui/material-ui/issues/32750)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 06 -->\[SliderUnstyled] Define ownerState and slot props' types ([#&#8203;32739](https://github.com/mui/material-ui/issues/32739)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 05 -->\[SwitchUnstyled] Define ownerState and slot props' types ([#&#8203;32573](https://github.com/mui/material-ui/issues/32573)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 03 -->\[TabsUnstyled] Define ownerState and slot props' types ([#&#8203;32918](https://github.com/mui/material-ui/issues/32918)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 02 -->\[TabUnstyled] Define ownerState and slot props' types ([#&#8203;32915](https://github.com/mui/material-ui/issues/32915)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.82`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha82) - ​<!-- 08 -->\[SliderUnstyled] Fix `disabledSwap` not being respected in `onChangeCommitted` ([#&#8203;32647](https://github.com/mui/material-ui/issues/32647)) [@&#8203;JeanPetrov](https://github.com/JeanPetrov) ### [`v5.0.0-alpha.81`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha81) - ​<!-- 15 -->\[InputUnstyled] Support callbacks in componentsProps ([#&#8203;32271](https://github.com/mui/material-ui/issues/32271)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 14 -->\[InputUnstyled] Define ownerState and slot props' types ([#&#8203;32491](https://github.com/mui/material-ui/issues/32491)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 08 -->\[MenuUnstyled] Demos improvements ([#&#8203;32714](https://github.com/mui/material-ui/issues/32714)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 07 -->\[OptionUnstyled] Define ownerState and slot props' types ([#&#8203;32717](https://github.com/mui/material-ui/issues/32717)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.80`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha80) - \[ButtonUnstyled] Fix keyboard navigation on customized elements ([#&#8203;32204](https://github.com/mui/material-ui/issues/32204)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.78`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha78) - \[InputUnstyled] `multiline` property should not log DOM warnings for `maxRows` and `minRows` props ([#&#8203;32401](https://github.com/mui/material-ui/issues/32401)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.0.0-alpha.77`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha77) - ​<!-- 08 -->\[FormControlUnstyled] Revise API ([#&#8203;32134](https://github.com/mui/material-ui/issues/32134)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.76`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha76) - \[ButtonUnstyled] Allow receiving focus when disabled ([#&#8203;32090](https://github.com/mui/material-ui/issues/32090)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.75`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha75) - ​<!-- 31 -->\[Badge] Simplify unstyled API ([#&#8203;31974](https://github.com/mui/material-ui/issues/31974)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.74`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha74) ##### Breaking changes - ​<!-- 34 -->\[base] Remove `BackdropUnstyled` component ([#&#8203;31923](https://github.com/mui/material-ui/issues/31923)) [@&#8203;mnajdova](https://github.com/mnajdova) The `BackdropUnstyled` component was removed from the `@mui/base` package, as it did not have any specific logic, except adding an `aria-hidden` attribute on the div it rendered. This is not enough to justify it's existence in the base package. Here is an example alternative component you can use: ```tsx const BackdropUnstyled = React.forwardRef<HTMLDivElement, { open?: boolean; className: string }>( (props, ref) => { const { open, className, ...other } = props; return <div className={clsx({ 'MuiBackdrop-open': open }, className)} ref={ref} {...other} />; }, ); ``` - ​<!-- 03 -->\[TrapFocus] Move docs to Base and drop the Unstyled prefix ([#&#8203;31954](https://github.com/mui/material-ui/issues/31954)) [@&#8203;michaldudak](https://github.com/michaldudak) Removed the `Unstyled_` prefix from the Base export (it remains in the Material UI export, though). ```diff -import { Unstyled_TrapFocus } from '@&#8203;mui/base'; +import { TrapFocus } from '@&#8203;mui/base'; // or -import TrapFocus from '@&#8203;mui/base/Unstyled_TrapFocus'; +import TrapFocus from '@&#8203;mui/base/TrapFocus'; ``` ##### Changes - ​<!-- 33 -->\[base] Add [@&#8203;mui/types](https://github.com/mui/types) to dependencies ([#&#8203;31951](https://github.com/mui/material-ui/issues/31951)) [@&#8203;bicstone](https://github.com/bicstone) ### [`v5.0.0-alpha.73`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha73) - ​<!-- 03 -->\[SliderUnstyled] Fix dragging on disabled sliders ([#&#8203;31882](https://github.com/mui/material-ui/issues/31882)) [@&#8203;mnajdova](https://github.com/mnajdova) ### [`v5.0.0-alpha.72`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muilab500-alpha72) - ​<!-- 07 -->\[LoadingButton] Fix padding of loading icon in small button ([#&#8203;31113](https://github.com/mui/material-ui/issues/31113)) [@&#8203;PunitSoniME](https://github.com/PunitSoniME) ### [`v5.0.0-alpha.71`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha71) - ​<!-- 05 -->\[MenuUnstyled] Create MenuUnstyled and useMenu ([#&#8203;30961](https://github.com/mui/material-ui/issues/30961)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 03 -->\[SelectUnstyled] Prevent window scrolling after opening ([#&#8203;31237](https://github.com/mui/material-ui/issues/31237)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.70`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha70) - ​<!-- 31 -->\[SelectUnstyled, MultiSelectUnstyled, ButtonUnstyled] Export additional types to make customization easier ([#&#8203;31172](https://github.com/mui/material-ui/issues/31172)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.69`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muilab500-alpha69) - \[DatePicker] Fix passing clearable prop ([#&#8203;30786](https://github.com/mui/material-ui/issues/30786)) [@&#8203;alisasanib](https://github.com/alisasanib) ### [`v5.0.0-alpha.68`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha68) - ​<!-- 10 -->\[SelectUnstyled] Improve exported types ([#&#8203;30895](https://github.com/mui/material-ui/issues/30895)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.67`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha67) - ​<!-- 11 -->\[SelectUnstyled] Create unstyled select (+ hook) ([#&#8203;30113](https://github.com/mui/material-ui/issues/30113)) [@&#8203;michaldudak](https://github.com/michaldudak) ### [`v5.0.0-alpha.66`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha66) - ​<!-- 02 -->\[SliderUnstyled] Improve typings on some internal utils ([#&#8203;30614](https://github.com/mui/material-ui/issues/30614)) [@&#8203;mnajdova](https://github.com/mnajdova) ### [`v5.0.0-alpha.65`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muilab500-alpha65) - \[Masonry] Observe every masonry child to trigger computation when needed ([#&#8203;29896](https://github.com/mui/material-ui/issues/29896)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[MobileDatePicker] Fix calling onOpen when readOnly is true ([#&#8203;30561](https://github.com/mui/material-ui/issues/30561)) [@&#8203;alisasanib](https://github.com/alisasanib) ### [`v5.0.0-alpha.62`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha62) - ​<!-- 26 -->\[BadgeUnstyled] Add useBadge hook ([#&#8203;30246](https://github.com/mui/material-ui/issues/30246)) [@&#8203;mnajdova](https://github.com/mnajdova) ### [`v5.0.0-alpha.61`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muilab500-alpha61) - \[pickers] Fix the wrong MuiClockPicker's ArrowSwitcher slot name ([#&#8203;30226](https://github.com/mui/material-ui/issues/30226)) [@&#8203;rejetto](https://github.com/rejetto) ### [`v5.0.0-alpha.60`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha60) - ​<!-- 25 -->\[BadgeUnstyled] Make it conformant with other base components ([#&#8203;30141](https://github.com/mui/material-ui/issues/30141)) [@&#8203;mnajdova](https://github.com/mnajdova) ### [`v5.0.0-alpha.59`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha59) - ​<!-- 30 -->\[base] Fix missing ClickAwayListener barrel index export ([#&#8203;30000](https://github.com/mui/material-ui/issues/30000)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 04 -->\[TablePaginationUnstyled] Introduce new component ([#&#8203;29759](https://github.com/mui/material-ui/issues/29759)) [@&#8203;mnajdova](https://github.com/mnajdova) ### [`v5.0.0-alpha.56`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha56) - \[FormControlUnstyled] `focused` is always false unless explicitly set to `true` [@&#8203;mwilkins91](https://github.com/mwilkins91) - \[TabsUnstyled] Introduce new component ([#&#8203;29597](https://github.com/mui/material-ui/issues/29597)) [@&#8203;mnajdova](https://github.com/mnajdova) ### [`v5.0.0-alpha.55`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha55) ##### Breaking changes - ​<!-- 27 -->\[core] Rename mui/core to mui/base ([#&#8203;29585](https://github.com/mui/material-ui/issues/29585)) [@&#8203;michaldudak](https://github.com/michaldudak) Based on the results of the [poll](https://twitter.com/michaldudak/status/1452630484706635779) and our internal discussions, we decided to rename the `@mui/core` package to `@mui/base`. The main rationale for this is the fact that we use the term "Core" to refer to the core components product family, the one that includes Material Design components, unstyled components, System utilities, etc. Therefore, [@&#8203;mui/core](https://github.com/mui/core) was effectively a subset of MUI Core. This was confusing. The new name better reflects the purpose of the package: it contains unstyled components, hooks, and utilities that serve as a **base** to build on. ```diff -import { useSwitch } from '@&#8203;mui/core/SwitchUnstyled'; +import { useSwitch } from '@&#8203;mui/base/SwitchUnstyled'; ``` ### [`v5.0.0-alpha.54`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muilab500-alpha54) - ​<!-- 52 -->\[DatePicker] Fix disabled/readOnly for view components ([#&#8203;28815](https://github.com/mui/material-ui/issues/28815)) [@&#8203;adamfitzgibbon](https://github.com/adamfitzgibbon) - ​<!-- 24 -->\[Masonry] Fix crash on unmount when using React 18 ([#&#8203;29358](https://github.com/mui/material-ui/issues/29358)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 23 -->\[Masonry] Improve height computation and detect changes in `children` ([#&#8203;29351](https://github.com/mui/material-ui/issues/29351)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ### [`v5.0.0-alpha.52`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muibase500-alpha52) - ​<!-- 39 -->\[ClickAwayListener] Move to the core package ([#&#8203;29186](https://github.com/mui/material-ui/issues/29186)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 13 -->\[Popper] Move from mui-material to mui-base ([#&#8203;28923](https://github.com/mui/material-ui/issues/28923)) [@&#8203;rebeccahongsf](https://github.com/rebeccahongsf) - ​<!-- 04 -->\[TextareaAutosize] Move to the core package ([#&#8203;29148](https://github.com/mui/material-ui/issues/29148)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ### [`v5.0.0-alpha.51`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#muijoy500-alpha51) - \[CircularProgress]\[joy] Fix classnames and add test ([#&#8203;34806](https://github.com/mui/material-ui/issues/34806)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[Joy] Allow string type for `size` prop in components ([#&#8203;34805](https://github.com/mui/material-ui/issues/34805)) [@&#8203;hbjORbj](https://github.com/hbjORbj) </details> <details> <summary>mui/material-ui (@&#8203;mui/material)</summary> ### [`v5.10.11`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51011) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.10...v5.10.11) <!-- generated comparing v5.10.10..master --> *Oct 25, 2022* A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨: - 🔧 Moved `components` to `slots` prop starting at MUI Base to create consistency across products - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements ##### `@mui/material@5.10.11` - \[InputBase] Fix `onInvalid` to use HTMLInputElement | HTMLTextAreaElement Element type ([#&#8203;33162](https://github.com/mui/material-ui/issues/33162)) [@&#8203;KuSh](https://github.com/KuSh) - \[Alert] Add `components` and `componentsProps` props to allow close action overrides ([#&#8203;33582](https://github.com/mui/material-ui/issues/33582)) [@&#8203;jake-collibra](https://github.com/jake-collibra) ##### `@mui/base@5.0.0-alpha.103` ##### BREAKING CHANGE - \[base] `components` -> `slots` API rename ([#&#8203;34693](https://github.com/mui/material-ui/issues/34693)) [@&#8203;michaldudak](https://github.com/michaldudak) - Change all occurrences of components and componentsProps props in Base components to slots and slotProps, respectively. - Change casing of slots' fields to camelCase ```diff -<SwitchUnstyled components={{Root: CustomRoot}} componentsProps={{rail: { className: 'custom-rail' }}} /> +<SwitchUnstyled slots={{root: CustomRoot}} slotProps={{rail: { className: 'custom-rail' }}} /> ``` - \[base] Make CSS class prefixes consistent ([#&#8203;33411](https://github.com/mui/material-ui/issues/33411)) [@&#8203;michaldudak](https://github.com/michaldudak) **This is a breaking change for anyone who depends on the class names applied to Base components.** If you use the `<component>UnstyledClasses` objects, you won't notice a difference. Only if you depend on the resulting class names (e.g. in CSS stylesheets), you'll have to adjust your code. ```diff -.ButtonUnstyled-root { ... }; +.MuiButton-root { ... }; ``` ##### Changes - \[test] Test all Base components with describeConformanceUnstyled ([#&#8203;34825](https://github.com/mui/material-ui/issues/34825)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.51` - \[CircularProgress]\[joy] Fix classnames and add test ([#&#8203;34806](https://github.com/mui/material-ui/issues/34806)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[Joy] Allow string type for `size` prop in components ([#&#8203;34805](https://github.com/mui/material-ui/issues/34805)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### Docs - Revert "\[docs] Fix search icons in other languages ([#&#8203;34823](https://github.com/mui/material-ui/issues/34823))" [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - Revert "\[core] Move SearchIcons to docs src folder ([#&#8203;34802](https://github.com/mui/material-ui/issues/34802))" [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - Revert "\[docs] Live demos ([#&#8203;34454](https://github.com/mui/material-ui/issues/34454))" [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - Update the order of operations for pagination example so that slicing takes place after sorting. ([#&#8203;34189](https://github.com/mui/material-ui/issues/34189)) [@&#8203;marceliwac](https://github.com/marceliwac) - \[docs] Gatsby Description in Joy dark-mode ([#&#8203;34702](https://github.com/mui/material-ui/issues/34702)) [@&#8203;pixelass](https://github.com/pixelass) - \[docs] Add notification for blogpost MUI X v6 alpha ([#&#8203;34809](https://github.com/mui/material-ui/issues/34809)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - \[docs] Polish Crowdin config ([#&#8203;34852](https://github.com/mui/material-ui/issues/34852)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix a few style standard deviations [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Enforce no trailing spaces ([#&#8203;34762](https://github.com/mui/material-ui/issues/34762)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Enforce correct git diff format ([#&#8203;34765](https://github.com/mui/material-ui/issues/34765)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix Toolpad docs 301 route ([#&#8203;34843](https://github.com/mui/material-ui/issues/34843)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap) - \[docs] Replace initial value with theme white ([#&#8203;34822](https://github.com/mui/material-ui/issues/34822)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Remove localization redirects ([#&#8203;34844](https://github.com/mui/material-ui/issues/34844)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Fix search icons in other languages ([#&#8203;34823](https://github.com/mui/material-ui/issues/34823)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix JavaScript capitalization [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Update new links to MD2 ([#&#8203;34848](https://github.com/mui/material-ui/issues/34848)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Update future work items on X landing page ([#&#8203;34810](https://github.com/mui/material-ui/issues/34810)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - \[website] Add Toolpad docs to navigation ([#&#8203;34749](https://github.com/mui/material-ui/issues/34749)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap) ##### Core - \[core] Remove dead files ([#&#8203;34850](https://github.com/mui/material-ui/issues/34850)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Fix revert conflict [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Fix a few CodeQL errors ([#&#8203;34766](https://github.com/mui/material-ui/issues/34766)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Harden GitHub Actions permissions ([#&#8203;34769](https://github.com/mui/material-ui/issues/34769)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Remove the codeowners file ([#&#8203;34876](https://github.com/mui/material-ui/issues/34876)) [@&#8203;michaldudak](https://github.com/michaldudak) All contributors of this release in alphabetical order: [@&#8203;bharatkashyap](https://github.com/bharatkashyap), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;jake-collibra](https://github.com/jake-collibra), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;KuSh](https://github.com/KuSh), [@&#8203;marceliwac](https://github.com/marceliwac), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;pixelass](https://github.com/pixelass), [@&#8203;siriwatknp](https://github.com/siriwatknp) ### [`v5.10.10`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;51010) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.9...v5.10.10) <!-- generated comparing v5.10.9..master --> *Oct 18, 2022* A big thanks to the 21 contributors who made this release possible. Here are some highlights ✨: - 🖌 Thanks to the efforts of [@&#8203;bharatkashyap](https://github.com/bharatkashyap) and [@&#8203;nihgwu](https://github.com/nihgwu), we now have editable demos across our docs ([#&#8203;34454](https://github.com/mui/material-ui/issues/34454))! - 🚀 The Tooltip component has been added to Joy UI by [@&#8203;hbjORbj](https://github.com/hbjORbj) ([#&#8203;34509](https://github.com/mui/material-ui/issues/34509)). - ⚙️ We started converting the remaining JS components in MUI Base to TypeScript. [@&#8203;mbayucot](https://github.com/mbayucot) finished the first PR with the conversion of the NoSsr code ([#&#8203;34735](https://github.com/mui/material-ui/issues/34735)). - And more 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.10.10` - \[Popover] Fix paper position flash on open ([#&#8203;34546](https://github.com/mui/material-ui/issues/34546)) [@&#8203;TheUnlocked](https://github.com/TheUnlocked) - \[SwipeableDrawer] Make component `defaultProps` overridable ([#&#8203;34643](https://github.com/mui/material-ui/issues/34643)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/system@5.10.10` - \[system] Support CSS `grey` color in `sx` ([#&#8203;34548](https://github.com/mui/material-ui/issues/34548)) [@&#8203;TheUnlocked](https://github.com/TheUnlocked) ##### `@mui/styles@5.10.10` - \[styles] Use memoized context in StylesProvider ([#&#8203;34637](https://github.com/mui/material-ui/issues/34637)) [@&#8203;mohd-akram](https://github.com/mohd-akram) ##### `@mui/joy@5.0.0-alpha.50` - \[Select]\[joy] Added hidden input element ([#&#8203;34657](https://github.com/mui/material-ui/issues/34657)) [@&#8203;zee-bit](https://github.com/zee-bit) - \[Slider]\[joy] Add global variant to slider ([#&#8203;34733](https://github.com/mui/material-ui/issues/34733)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Tooltip]\[joy] Add component ([#&#8203;34509](https://github.com/mui/material-ui/issues/34509)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/base@5.0.0-alpha.102` - \[MultiSelect]\[base] Prevent the renderValue prop from being propagated to the DOM ([#&#8203;34698](https://github.com/mui/material-ui/issues/34698)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[NoSsr] Convert code to TypeScript ([#&#8203;34735](https://github.com/mui/material-ui/issues/34735)) [@&#8203;mbayucot](https://github.com/mbayucot) ##### Docs - \[docs] Fix the Autocomplete Highlighting example ([#&#8203;34184](https://github.com/mui/material-ui/issues/34184)) [@&#8203;hayawata3626](https://github.com/hayawata3626) - \[docs] Fix typos in Base (Menu, Tabs) and Joy UI (Chip) ([#&#8203;34803](https://github.com/mui/material-ui/issues/34803)) [@&#8203;rvrvrv](https://github.com/rvrvrv) - \[docs] Use new editing API in homepage demos ([#&#8203;34220](https://github.com/mui/material-ui/issues/34220)) [@&#8203;m4theushw](https://github.com/m4theushw) - \[docs] Live demos ([#&#8203;34454](https://github.com/mui/material-ui/issues/34454)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap) - \[docs] Fix typos in Joy UI Switch ([#&#8203;34728](https://github.com/mui/material-ui/issues/34728)) [@&#8203;ndresx](https://github.com/ndresx) - \[docs] Avoid scrollbar in the code demos ([#&#8203;34741](https://github.com/mui/material-ui/issues/34741)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Revise the Joy UI "Automatic adjustment" page ([#&#8203;34614](https://github.com/mui/material-ui/issues/34614)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Revise and rename the Joy UI "Perfect dark mode" page ([#&#8203;34613](https://github.com/mui/material-ui/issues/34613)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Revise the Joy UI "Global variants" page ([#&#8203;34595](https://github.com/mui/material-ui/issues/34595)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Basic link verification at PR level ([#&#8203;34588](https://github.com/mui/material-ui/issues/34588)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[docs] Add a missing comma in the customization example ([#&#8203;34617](https://github.com/mui/material-ui/issues/34617)) [@&#8203;AbayKinayat](https://github.com/AbayKinayat) - \[website] Clarify Pro/Premium support ([#&#8203;34607](https://github.com/mui/material-ui/issues/34607)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Fix home page dark mode flicker ([#&#8203;33545](https://github.com/mui/material-ui/issues/33545)) - \[website] Update the state of the date pickers on the landing page ([#&#8203;34750](https://github.com/mui/material-ui/issues/34750)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) ##### Core - \[core] Clean conditionals ([#&#8203;34772](https://github.com/mui/material-ui/issues/34772)) [@&#8203;pedroprado010](https://github.com/pedroprado010) - \[core] Temporary remove the authorization ([#&#8203;34796](https://github.com/mui/material-ui/issues/34796)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[core] Avoid slower CI run statues [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Improve the playground DX ([#&#8203;34739](https://github.com/mui/material-ui/issues/34739)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Link Netlify in the danger comment ([#&#8203;34688](https://github.com/mui/material-ui/issues/34688)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Fix CI after out of sync merge [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Enforce straight quote ([#&#8203;34686](https://github.com/mui/material-ui/issues/34686)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Add code scanning via CodeQL ([#&#8203;34707](https://github.com/mui/material-ui/issues/34707)) [@&#8203;DanailH](https://github.com/DanailH) - \[core] Fix some upcoming eslint issues ([#&#8203;34727](https://github.com/mui/material-ui/issues/34727)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Auto-fix upcoming eslint issues ([#&#8203;34644](https://github.com/mui/material-ui/issues/34644)) [@&#8203;Janpot](https://github.com/Janpot) - \[core] Move SearchIcons to docs src folder ([#&#8203;34802](https://github.com/mui/material-ui/issues/34802)) - \[test] Enable `react/no-unstable-nested-components` ([#&#8203;34518](https://github.com/mui/material-ui/issues/34518)) [@&#8203;eps1lon](https://github.com/eps1lon) All contributors of this release in alphabetical order: [@&#8203;AbayKinayat](https://github.com/AbayKinayat), [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;bharatkashyap](https://github.com/bharatkashyap), [@&#8203;DanailH](https://github.com/DanailH), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;hayawata3626](https://github.com/hayawata3626), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;m4theushw](https://github.com/m4theushw), [@&#8203;mbayucot](https://github.com/mbayucot), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mohd-akram](https://github.com/mohd-akram), [@&#8203;ndresx](https://github.com/ndresx), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;pedroprado010](https://github.com/pedroprado010), [@&#8203;rvrvrv](https://github.com/rvrvrv), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;TheUnlocked](https://github.com/TheUnlocked), [@&#8203;zee-bit](https://github.com/zee-bit) ### [`v5.10.9`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5109) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.8...v5.10.9) <!-- generated comparing v5.10.8..master --> *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 [@&#8203;kushagra010](https://github.com/kushagra010) ([#&#8203;34658](https://github.com/mui/material-ui/issues/34658)) - And more 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.10.9` - ​<!-- 16 -->\[Grid v2]\[system] Handle direction object prop for responsive design ([#&#8203;34574](https://github.com/mui/material-ui/issues/34574)) [@&#8203;vanyaxk](https://github.com/vanyaxk) - ​<!-- 03 -->\[Slider] Fix unnecessary accessibility attribute in root element ([#&#8203;34610](https://github.com/mui/material-ui/issues/34610)) [@&#8203;vanyaxk](https://github.com/vanyaxk) ##### `@mui/system@5.10.9` ##### BREAKING CHANGE - ​<!-- 17 -->\[system] Fix color-scheme implementation ([#&#8203;34639](https://github.com/mui/material-ui/issues/34639)) [@&#8203;siriwatknp](https://github.com/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](https://mui.com/joy-ui/react-css-baseline/). ##### Changes - ​<!-- 02 -->\[system] Fix typo in createCssVarsProvider ([#&#8203;34661](https://github.com/mui/material-ui/issues/34661)) [@&#8203;HexM7](https://github.com/HexM7) ##### `@mui/base@5.0.0-alpha.101` - ​<!-- 01 -->\[TrapFocus] Restore the previously exported type from [@&#8203;mui/material](https://github.com/mui/material) ([#&#8203;34601](https://github.com/mui/material-ui/issues/34601)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.49` - ​<!-- 04 -->\[Joy] Add button loading functionality ([#&#8203;34658](https://github.com/mui/material-ui/issues/34658)) [@&#8203;kushagra010](https://github.com/kushagra010) ##### Docs - ​<!-- 18 -->\[docs] Revert [#&#8203;34541](https://github.com/mui/material-ui/issues/34541) ([#&#8203;34700](https://github.com/mui/material-ui/issues/34700)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 15 -->\[blog] Blog post for MUI X v6 alpha zero ([#&#8203;34424](https://github.com/mui/material-ui/issues/34424)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - ​<!-- 09 -->\[docs] Improve Joy UI tutorial demo ([#&#8203;34653](https://github.com/mui/material-ui/issues/34653)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 08 -->\[docs] Explain how SelectUnstyled renders a hidden input ([#&#8203;34638](https://github.com/mui/material-ui/issues/34638)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 07 -->\[docs] Fix Taiwan description ([#&#8203;34611](https://github.com/mui/material-ui/issues/34611)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 06 -->\[docs] Fix codesandbox export with dayjs ([#&#8203;34619](https://github.com/mui/material-ui/issues/34619)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 05 -->\[docs] Explain the purpose of renderGroup prop ([#&#8203;34066](https://github.com/mui/material-ui/issues/34066)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Core - ​<!-- 14 -->\[core] Make useForkRef variadic ([#&#8203;27939](https://github.com/mui/material-ui/issues/27939)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 13 -->\[core] Speedup of yarn install in the CI ([#&#8203;34632](https://github.com/mui/material-ui/issues/34632)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 12 -->\[core] Fix markdown loader on Windows ([#&#8203;34623](https://github.com/mui/material-ui/issues/34623)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 11 -->\[core] Update changelog for version v5.10.8 ([#&#8203;34593](https://github.com/mui/material-ui/issues/34593)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 10 -->\[core] Update root package.json version ([#&#8203;34592](https://github.com/mui/material-ui/issues/34592)) [@&#8203;mnajdova](https://github.com/mnajdova) All contributors of this release in alphabetical order: [@&#8203;HexM7](https://github.com/HexM7), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;kushagra010](https://github.com/kushagra010), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;vanyaxk](https://github.com/vanyaxk) ### [`v5.10.8`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5108) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.7...v5.10.8) <!-- generated comparing v5.10.7..master --> *Oct 3, 2022* A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨: - 🚀 [SnackbarUnstyled](https://mui.com/base/react-snackbar/) component & headless hook are added to MUI Base ([#&#8203;33227](https://github.com/mui/material-ui/issues/33227)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - 📚 [CSS variables documentation](https://mui.com/material-ui/experimental-api/css-theme-variables/overview/) for Material UI has been added by [@&#8203;siriwatknp](https://github.com/siriwatknp) ([#&#8203;33958](https://github.com/mui/material-ui/issues/33958)) - And more 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.10.8` - ​<!-- 28 -->\[Autocomplete] Skip filtering when list of options is loading ([#&#8203;33278](https://github.com/mui/material-ui/issues/33278)) [@&#8203;ndebeiss](https://github.com/ndebeiss) - ​<!-- 13 -->\[Fab] Add `disabled` class to FAB button ([#&#8203;34245](https://github.com/mui/material-ui/issues/34245)) [@&#8203;meenarama](https://github.com/meenarama) - ​<!-- 09 -->\[l10n] Add Arabic Saudi Arabia (ar-SA) locale ([#&#8203;33340](https://github.com/mui/material-ui/issues/33340)) [@&#8203;rolule](https://github.com/rolule) - ​<!-- 08 -->\[l10n] zhTW refinement ([#&#8203;33391](https://github.com/mui/material-ui/issues/33391)) [@&#8203;Aporim2051](https://github.com/Aporim2051) - ​<!-- 07 -->\[Popover] Add `ownerState` on the paper slot ([#&#8203;34445](https://github.com/mui/material-ui/issues/34445)) [@&#8203;kabernardes](https://github.com/kabernardes) - ​<!-- 05 -->\[Slider] Fixed incorrect marks displayed due to duplicate keys in range ([#&#8203;33526](https://github.com/mui/material-ui/issues/33526)) [@&#8203;kskd1804](https://github.com/kskd1804) - ​<!-- 03 -->\[TextField] Fix typo in FormControlLabel declaration file ([#&#8203;34535](https://github.com/mui/material-ui/issues/34535)) [@&#8203;hghmn](https://github.com/hghmn) ##### `@mui/base@5.0.0-alpha.100` - ​<!-- 04 -->\[SnackbarUnstyled] Create component and `useSnackbar` hook ([#&#8203;33227](https://github.com/mui/material-ui/issues/33227)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/joy@5.0.0-alpha.48` - ​<!-- 12 -->\[Joy] Fix `variantPlain` classname missing in few components ([#&#8203;34534](https://github.com/mui/material-ui/issues/34534)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 11 -->\[Joy] Fix input decorator color and list padding ([#&#8203;34586](https://github.com/mui/material-ui/issues/34586)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 10 -->\[Joy] Miscellaneous fixes ([#&#8203;34492](https://github.com/mui/material-ui/issues/34492)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 27 -->\[blog] Fix 404 link in base introduction [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 21 -->\[docs] Fix CI build ([#&#8203;34589](https://github.com/mui/material-ui/issues/34589)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 20 -->\[docs] Temporary remove date picker from home page ([#&#8203;34541](https://github.com/mui/material-ui/issues/34541)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 19 -->\[docs] Revise and expand Joy UI "Tutorial" doc ([#&#8203;34569](https://github.com/mui/material-ui/issues/34569)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 18 -->\[docs] Fix SEO issues ([#&#8203;34537](https://github.com/mui/material-ui/issues/34537)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 17 -->\[docs] Add CSS variables documentation for Material UI ([#&#8203;33958](https://github.com/mui/material-ui/issues/33958)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 16 -->\[docs] Capitalize Material Design on the Breakpoints page ([#&#8203;34481](https://github.com/mui/material-ui/issues/34481)) [@&#8203;Dustin-Digitar](https://github.com/Dustin-Digitar) - ​<!-- 15 -->\[docs] Able to load doc components inside markdown files ([#&#8203;34243](https://github.com/mui/material-ui/issues/34243)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - ​<!-- 14 -->\[docs] Use mouse pointer on esc button in the search modal ([#&#8203;34485](https://github.com/mui/material-ui/issues/34485)) [@&#8203;minkyngkm](https://github.com/minkyngkm) - ​<!-- 02 -->\[website] Fix typo in pricing FAQ [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 01 -->\[website] Move the React Engineer role from open to next ([#&#8203;34494](https://github.com/mui/material-ui/issues/34494)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### Core - ​<!-- 26 -->\[core] Update root package.json version ([#&#8203;34592](https://github.com/mui/material-ui/issues/34592)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 25 -->\[core] Remove useless comment in fixtures ([#&#8203;34581](https://github.com/mui/material-ui/issues/34581)) [@&#8203;Garz4](https://github.com/Garz4) - ​<!-- 24 -->\[core] Fix link to CODE_OF_CONDUCT.md ([#&#8203;34543](https://github.com/mui/material-ui/issues/34543)) [@&#8203;peippo](https://github.com/peippo) - ​<!-- 23 -->\[core] Remove outdated docsearch.js dependency ([#&#8203;34421](https://github.com/mui/material-ui/issues/34421)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 22 -->\[core] Add `newFeature` to the typing of MuiPage ([#&#8203;34511](https://github.com/mui/material-ui/issues/34511)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) All contributors of this release in alphabetical order: [@&#8203;Aporim2051](https://github.com/Aporim2051), [@&#8203;Dustin-Digitar](https://github.com/Dustin-Digitar), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;Garz4](https://github.com/Garz4), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;hghmn](https://github.com/hghmn), [@&#8203;kabernardes](https://github.com/kabernardes), [@&#8203;kskd1804](https://github.com/kskd1804), [@&#8203;meenarama](https://github.com/meenarama), [@&#8203;minkyngkm](https://github.com/minkyngkm), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;ndebeiss](https://github.com/ndebeiss), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;peippo](https://github.com/peippo), [@&#8203;rolule](https://github.com/rolule), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.10.7`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5107) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.6...v5.10.7) <!-- generated comparing v5.10.6..master --> *Sep 26, 2022* A big thanks to the 21 contributors who made this release possible. Here are some highlights ✨: - 🚀 [Divider](https://mui.com/joy-ui/react-divider/) component is added to Joy UI ([#&#8203;34403](https://github.com/mui/material-ui/issues/34403)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/material@5.10.7` - \[CssVarsProvider] Exclude dark mode variables from `:root` stylesheet ([#&#8203;34131](https://github.com/mui/material-ui/issues/34131)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Chip] Add chip classes ([#&#8203;33801](https://github.com/mui/material-ui/issues/33801)) [@&#8203;pratikkarad](https://github.com/pratikkarad) - \[Slider] Fix typo in the comments in the source ([#&#8203;34452](https://github.com/mui/material-ui/issues/34452)) [@&#8203;HexM7](https://github.com/HexM7) - \[SvgIcon] Fix passing an ownerState to SvgIcon changes the font size ([#&#8203;34429](https://github.com/mui/material-ui/issues/34429)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[Stepper] Fix optional label is not centered when `alternativeLabel` is used ([#&#8203;34335](https://github.com/mui/material-ui/issues/34335)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[Tooltip] Add undefined, null or false in `title` ([#&#8203;34289](https://github.com/mui/material-ui/issues/34289)) [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech) - Make @&#8203;emotion/\* fully supported in all Material UI components ([#&#8203;34451](https://github.com/mui/material-ui/issues/34451)) [@&#8203;garronej](https://github.com/garronej) ##### `@mui/system@5.10.7` - \[system] Fix parsing of hsla colors in getLuminance ([#&#8203;34437](https://github.com/mui/material-ui/issues/34437)) [@&#8203;ptrfrncsmrph](https://github.com/ptrfrncsmrph) - \[system] Fix incorrect type of `shape.borderRadius` in theme ([#&#8203;34076](https://github.com/mui/material-ui/issues/34076)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[system] Replace `enableSystem` with `defaultMode` ([#&#8203;33960](https://github.com/mui/material-ui/issues/33960)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/material@5.0.0-alpha.101` - \[deps] Move [@&#8203;mui/types](https://github.com/mui/types) to dependencies ([#&#8203;34384](https://github.com/mui/material-ui/issues/34384)) [@&#8203;Methuselah96](https://github.com/Methuselah96) ##### `@mui/base@5.0.0-alpha.99` ##### Breaking changes - \[TrapFocus] Rename TrapFocus to FocusTrap ([#&#8203;34216](https://github.com/mui/material-ui/issues/34216)) [@&#8203;kabernardes](https://github.com/kabernardes) ```diff -import TrapFocus from '@&#8203;mui/base/TrapFocus'; +import FocusTrap from '@&#8203;mui/base/FocusTrap'; ``` ##### Changes - \[MultiSelect] Require a single tap to select an item on mobile Chrome ([#&#8203;33932](https://github.com/mui/material-ui/issues/33932)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.47` - \[Checkbox] spread `value`, `required`, and `readOnly` to input ([#&#8203;34477](https://github.com/mui/material-ui/issues/34477)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Chip] Fix unbinded `onClick` prop ([#&#8203;34455](https://github.com/mui/material-ui/issues/34455)) [@&#8203;HexM7](https://github.com/HexM7) - \[Divider] Add `Divider` component ([#&#8203;34403](https://github.com/mui/material-ui/issues/34403)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Radio] spread `readOnly` and `required` to input ([#&#8203;34478](https://github.com/mui/material-ui/issues/34478)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - \[blog] MUI Base announcement typo fixed ([#&#8203;34409](https://github.com/mui/material-ui/issues/34409)) [@&#8203;prakhargupta1](https://github.com/prakhargupta1) - \[blog] Fix typo in date-pickers v5 stable ([#&#8203;34386](https://github.com/mui/material-ui/issues/34386)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[blog] Update date on date pickers v5 release blog post ([#&#8203;34406](https://github.com/mui/material-ui/issues/34406)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - \[docs] Update `useMenu` and `useMenuItem` hooks demo ([#&#8203;34166](https://github.com/mui/material-ui/issues/34166)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[docs] Update the guide for migrating to TSS ([#&#8203;34417](https://github.com/mui/material-ui/issues/34417)) [@&#8203;garronej](https://github.com/garronej) - \[docs] Fix typo in `Grid` docs ([#&#8203;34475](https://github.com/mui/material-ui/issues/34475)) [@&#8203;Dustin-Digitar](https://github.com/Dustin-Digitar) - \[docs] Fix typo in `Back to top` section in AppBar docs ([#&#8203;34479](https://github.com/mui/material-ui/issues/34479)) [@&#8203;Dustin-Digitar](https://github.com/Dustin-Digitar) - \[docs] Standardize all MUI Core "Installation" pages ([#&#8203;34168](https://github.com/mui/material-ui/issues/34168)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Fix webpack file name to the standard: `webpack.config.js` ([#&#8203;34446](https://github.com/mui/material-ui/issues/34446)) [@&#8203;CodingItWrong](https://github.com/CodingItWrong) - \[docs] Fix Select `onChange` call ([#&#8203;34408](https://github.com/mui/material-ui/issues/34408)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Notification for pickers blog - v5 stable ([#&#8203;34400](https://github.com/mui/material-ui/issues/34400)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - \[docs] Improve social sharing of docs pages ([#&#8203;34346](https://github.com/mui/material-ui/issues/34346)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Refine the use of MUI vs. Material UI ([#&#8203;34345](https://github.com/mui/material-ui/issues/34345)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Send feedback directly to a dedicated slack channel ([#&#8203;34196](https://github.com/mui/material-ui/issues/34196)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[website] Adds Bilal to about page ([#&#8203;34412](https://github.com/mui/material-ui/issues/34412)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi) - \[website] Add date range picker to pricing table ([#&#8203;34399](https://github.com/mui/material-ui/issues/34399)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) ##### Core - \[core] Document some types in [@&#8203;mui/styled-engine-sc](https://github.com/mui/styled-engine-sc) ([#&#8203;34413](https://github.com/mui/material-ui/issues/34413)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[core] Add yml support to prettier ([#&#8203;33980](https://github.com/mui/material-ui/issues/33980)) [@&#8203;Janpot](https://github.com/Janpot) All contributors of this release in alphabetical order: [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech), [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;CodingItWrong](https://github.com/CodingItWrong), [@&#8203;Dustin-Digitar](https://github.com/Dustin-Digitar), [@&#8203;garronej](https://github.com/garronej), [@&#8203;HexM7](https://github.com/HexM7), [@&#8203;howlettt](https://github.com/howlettt), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;kabernardes](https://github.com/kabernardes), [@&#8203;MBilalShafi](https://github.com/MBilalShafi), [@&#8203;Methuselah96](https://github.com/Methuselah96), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;prakhargupta1](https://github.com/prakhargupta1), [@&#8203;pratikkarad](https://github.com/pratikkarad), [@&#8203;ptrfrncsmrph](https://github.com/ptrfrncsmrph), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.10.6`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5106) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.5...v5.10.6) <!-- generated comparing v5.10.5..master --> *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` - \[TextField] Fix conflict with `Bootstrap` even when label is not defined ([#&#8203;34343](https://github.com/mui/material-ui/issues/34343)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/joy@5.0.0-alpha.46` ##### Breaking changes - \[button]\[joy] Replace `start/endIcon` prop with `start/endDecorator` ([#&#8203;34288](https://github.com/mui/material-ui/issues/34288)) [@&#8203;hbjORbj](https://github.com/hbjORbj) **BREAKING CHANGE**: replace `start/endIcon` with `start/endDecorator`. ```jsx // before <Button startIcon={...} endIcon={...} /> // after <Button startDecorator={...} endDecorator={...} /> ``` ##### Changes - \[Joy] Adjust the `Input` and `Textarea` styles ([#&#8203;34281](https://github.com/mui/material-ui/issues/34281)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[menu]\[joy] Set disablePortal default to false ([#&#8203;34283](https://github.com/mui/material-ui/issues/34283)) [@&#8203;tomasz-sodzawiczny](https://github.com/tomasz-sodzawiczny) ##### `@mui/base@5.0.0-alpha.98` ##### Breaking changes - \[Select]\[base] Add event parameter to the onChange callback ([#&#8203;34158](https://github.com/mui/material-ui/issues/34158)) [@&#8203;michaldudak](https://github.com/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. ```jsx // before <SelectUnstyled onChange={(newValue) => { /* ... */ }} /> // after <SelectUnstyled onChange={(event, newValue) => { /* ... */ }} /> ``` ##### Docs - \[blog] The Date Pickers gets a stable v5 release ([#&#8203;34152](https://github.com/mui/material-ui/issues/34152)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[blog] Improve image handling ([#&#8203;34222](https://github.com/mui/material-ui/issues/34222)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[blog] Correct 2021 survey data interpretation ([#&#8203;34291](https://github.com/mui/material-ui/issues/34291)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Remove expired AospExtended showcase [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Link the OpenSSF Best Practices card ([#&#8203;34331](https://github.com/mui/material-ui/issues/34331)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix 301 link to external projects [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Move 12 component names to Title Case ([#&#8203;34188](https://github.com/mui/material-ui/issues/34188)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix broken links ([#&#8203;34320](https://github.com/mui/material-ui/issues/34320)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[docs] Add notification for MUI Base announcement post ([#&#8203;34295](https://github.com/mui/material-ui/issues/34295)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[website] Fix MUI X subscribe email border style ([#&#8203;34330](https://github.com/mui/material-ui/issues/34330)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Improve security header [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - \[core] Lock file maintenance ([#&#8203;34161](https://github.com/mui/material-ui/issues/34161)) [@&#8203;renovate](https://github.com/renovate)\[bot] - \[core] Issue template: move reproduction steps to the top ([#&#8203;34279](https://github.com/mui/material-ui/issues/34279)) [@&#8203;Janpot](https://github.com/Janpot) - \[core] Create shared Next.js baseline config ([#&#8203;34259](https://github.com/mui/material-ui/issues/34259)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] In `typescript-to-proptypes`, respect the value pass to the generic ([#&#8203;34311](https://github.com/mui/material-ui/issues/34311)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) All contributors of this release in alphabetical order: [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;renovate](https://github.com/renovate)\[bot], [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;tomasz-sodzawiczny](https://github.com/tomasz-sodzawiczny), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.10.5`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5105) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.4...v5.10.5) <!-- generated comparing v5.10.4..master --> *Sep 12, 2022* A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨: - 🚀 [Blog post](https://mui.com/blog/introducing-mui-base/) for announcing the release of the MUI Base package is out thanks to [@&#8203;michaldudak](https://github.com/michaldudak). - 🚀 Added [`Alert`](https://mui.com/joy-ui/react-alert/), [`Modal`](https://mui.com/joy-ui/react-modal/), [`ListSubheader`](https://mui.com/joy-ui/react-list-subheader/), [`FormControl`](https://mui.com/joy-ui/react-form-control/), [`CircularProgress`](https://mui.com/joy-ui/react-circular-progress/) components to Joy UI ([#&#8203;33859](https://github.com/mui/material-ui/issues/33859)) [@&#8203;hbjORbj](https://github.com/hbjORbj) [@&#8203;siriwatknp](https://github.com/siriwatknp) - And more 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.10.5` - ​<!-- 05 -->\[ListItemText] Fix variant mapping in `primaryTypography` ([#&#8203;33880](https://github.com/mui/material-ui/issues/33880)) [@&#8203;iamxukai](https://github.com/iamxukai) - ​<!-- 03 -->\[Timeline] Add left and right aligned timeline demos in docs ([#&#8203;34156](https://github.com/mui/material-ui/issues/34156)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/joy@5.0.0-alpha.45` - ​<!-- 20 -->\[Joy UI] Add `CircularProgress` component ([#&#8203;33869](https://github.com/mui/material-ui/issues/33869)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 19 -->\[Joy UI] Add `FormControl` component ([#&#8203;34187](https://github.com/mui/material-ui/issues/34187)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 18 -->\[Joy UI] Add `ListSubheader` component ([#&#8203;34191](https://github.com/mui/material-ui/issues/34191)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 17 -->\[Joy UI] Add `Modal` component ([#&#8203;34043](https://github.com/mui/material-ui/issues/34043)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 10 -->\[Joy] Fix list value of false or 0 (zero) text is incorrectly grey ([#&#8203;34255](https://github.com/mui/material-ui/issues/34255)) [@&#8203;kushagra010](https://github.com/kushagra010) - ​<!-- 09 -->\[Joy] Adjust typography decorator margin ([#&#8203;34257](https://github.com/mui/material-ui/issues/34257)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 08 -->\[Joy] Miscellaneous fixes ([#&#8203;34193](https://github.com/mui/material-ui/issues/34193)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 07 -->\[Radio]\[joy] Integrate with form control ([#&#8203;34277](https://github.com/mui/material-ui/issues/34277)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 06 -->\[Joy]\[textarea] Pass `textarea` props from `componentsProps` ([#&#8203;34223](https://github.com/mui/material-ui/issues/34223)) [@&#8203;HexM7](https://github.com/HexM7) ##### Docs - ​<!-- 16 -->\[blog] Introducing MUI Base ([#&#8203;33778](https://github.com/mui/material-ui/issues/33778)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 13 -->\[docs] Fix spelling error ([#&#8203;34209](https://github.com/mui/material-ui/issues/34209)) [@&#8203;ChrystianDeMatos](https://github.com/ChrystianDeMatos) - ​<!-- 12 -->\[docs] Improve link to the security policy ([#&#8203;34219](https://github.com/mui/material-ui/issues/34219)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 11 -->\[docs] Fix typo in Joy UI's `Usage` docs ([#&#8203;34200](https://github.com/mui/material-ui/issues/34200)) [@&#8203;zillion504](https://github.com/zillion504) - ​<!-- 02 -->\[website] Add Lukas to the about page ([#&#8203;34284](https://github.com/mui/material-ui/issues/34284)) [@&#8203;LukasTy](https://github.com/LukasTy) - ​<!-- 01 -->\[website] Update diamond sponsor URL ([#&#8203;34256](https://github.com/mui/material-ui/issues/34256)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 04 -->\[test] Replace argos-cli with [@&#8203;argos-ci/core](https://github.com/argos-ci/core) ([#&#8203;34178](https://github.com/mui/material-ui/issues/34178)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 15 -->\[core] Create a script to generate codeowners ([#&#8203;34175](https://github.com/mui/material-ui/issues/34175)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 14 -->\[core] Add RFC GH issue template ([#&#8203;33871](https://github.com/mui/material-ui/issues/33871)) [@&#8203;bytasv](https://github.com/bytasv) All contributors of this release in alphabetical order: [@&#8203;bytasv](https://github.com/bytasv), [@&#8203;ChrystianDeMatos](https://github.com/ChrystianDeMatos), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;HexM7](https://github.com/HexM7), [@&#8203;iamxukai](https://github.com/iamxukai), [@&#8203;kushagra010](https://github.com/kushagra010), [@&#8203;LukasTy](https://github.com/LukasTy), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli), [@&#8203;zillion504](https://github.com/zillion504) ### [`v5.10.4`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5104) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.3...v5.10.4) <!-- generated comparing v5.10.3..master --> *Sep 5, 2022* A big thanks to the 11 contributors who made this release possible. Here are some highlights ✨: - 🚀 Added [`Alert`](https://mui.com/joy-ui/react-alert/) component to Joy UI ([#&#8203;33859](https://github.com/mui/material-ui/issues/33859)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements ##### `@mui/material@5.10.4` - ​<!-- 22 -->\[Avatar] Use structured / semantic markup for avatars and avatar groups ([#&#8203;33994](https://github.com/mui/material-ui/issues/33994)) [@&#8203;paulschreiber](https://github.com/paulschreiber) - ​<!-- 05 -->\[Steps] Use structured / semantic markup for steps and steppers ([#&#8203;34138](https://github.com/mui/material-ui/issues/34138)) [@&#8203;paulschreiber](https://github.com/paulschreiber) ##### `@mui/joy@5.0.0-alpha.44` - ​<!-- 23 -->\[Alert]\[joy] Add `Alert` component ([#&#8203;33859](https://github.com/mui/material-ui/issues/33859)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 08 -->\[Joy] Make the description of `componentsProps` generic ([#&#8203;34140](https://github.com/mui/material-ui/issues/34140)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 07 -->\[Joy] Add tests / classes for `Breadcrumbs` component ([#&#8203;33860](https://github.com/mui/material-ui/issues/33860)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 06 -->\[Select]\[joy] Fix forwarding listbox `component` prop ([#&#8203;34172](https://github.com/mui/material-ui/issues/34172)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/base@5.0.0-alpha.96` - ​<!-- 21 -->\[Select]\[base] Fix type issues that appeared with TS 4.8 ([#&#8203;34132](https://github.com/mui/material-ui/issues/34132)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Docs - ​<!-- 15 -->\[docs] Add `mui-color-input`, `mui-chips-input` and `mui-tel-input` into the related projects page ([#&#8203;34123](https://github.com/mui/material-ui/issues/34123)) [@&#8203;viclafouch](https://github.com/viclafouch) - ​<!-- 14 -->\[docs] Update sponsors ([#&#8203;34157](https://github.com/mui/material-ui/issues/34157)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 13 -->\[docs] Move 5 component names to Title Case ([#&#8203;34118](https://github.com/mui/material-ui/issues/34118)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 12 -->\[docs] Fix the color contrast on optional API methods ([#&#8203;34127](https://github.com/mui/material-ui/issues/34127)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 11 -->\[docs] Fix crash due to using wrong variable ([#&#8203;34171](https://github.com/mui/material-ui/issues/34171)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 10 -->\[docs] Fix a few Base typos ([#&#8203;33986](https://github.com/mui/material-ui/issues/33986)) [@&#8203;ropereraLK](https://github.com/ropereraLK) - ​<!-- 09 -->\[docs] Revise Joy UI "Overview" page copy ([#&#8203;34087](https://github.com/mui/material-ui/issues/34087)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 20 -->\[blog] Fix social cards ([#&#8203;34160](https://github.com/mui/material-ui/issues/34160)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 03 -->\[website] Allow deep linking to sponsors [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 02 -->\[website] Update job descriptions ([#&#8203;34134](https://github.com/mui/material-ui/issues/34134)) [@&#8203;DanailH](https://github.com/DanailH) - ​<!-- 01 -->\[website] Link Toolpad landing page [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 19 -->\[core] Move renovate config to the repository root ([#&#8203;34180](https://github.com/mui/material-ui/issues/34180)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 18 -->\[core] Reinstate react/no-unused-prop-types eslint rule ([#&#8203;34125](https://github.com/mui/material-ui/issues/34125)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 17 -->\[core] Do not append `types` field to packages without index.d.ts ([#&#8203;33952](https://github.com/mui/material-ui/issues/33952)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 16 -->\[core] Sanitize input in icon synonyms update script ([#&#8203;33989](https://github.com/mui/material-ui/issues/33989)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 04 -->\[test] Allow to pass options to `mousePress` function ([#&#8203;34124](https://github.com/mui/material-ui/issues/34124)) [@&#8203;cherniavskii](https://github.com/cherniavskii) All contributors of this release in alphabetical order: [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;DanailH](https://github.com/DanailH), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;paulschreiber](https://github.com/paulschreiber), [@&#8203;ropereraLK](https://github.com/ropereraLK), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;viclafouch](https://github.com/viclafouch) ### [`v5.10.3`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5103) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.2...v5.10.3) <!-- generated comparing v5.10.2..master --> *Aug 29, 2022* A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: - ⚡ [@&#8203;mnajdova](https://github.com/mnajdova) implemented an alternative to OverridableComponent to achieve better dev-time performance ([#&#8203;32735](https://github.com/mui/material-ui/issues/32735)) - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements ##### `@mui/material@5.10.3` - \[Autocomplete]\[material] Fix value overflow when `disableClearable` is used ([#&#8203;34053](https://github.com/mui/material-ui/issues/34053)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[Autocomplete] Update unstyled demo to not import Material UI ([#&#8203;34060](https://github.com/mui/material-ui/issues/34060)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[Slider] Remove SliderInput export from d.ts ([#&#8203;34055](https://github.com/mui/material-ui/issues/34055)) [@&#8203;pieetrus](https://github.com/pieetrus) - \[TablePagination] Fix select variant not working ([#&#8203;33974](https://github.com/mui/material-ui/issues/33974)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/system@5.10.3` - \[system] Fix mode blink when open multiple sessions ([#&#8203;33877](https://github.com/mui/material-ui/issues/33877)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/base@5.0.0-alpha.95` - \[Button]\[base] Prevent too many ref updates ([#&#8203;33882](https://github.com/mui/material-ui/issues/33882)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[Select]\[base] Fix typo in listbox blur event handler ([#&#8203;34120](https://github.com/mui/material-ui/issues/34120)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[TrapFocus] Improve tab test and simplify demo ([#&#8203;34008](https://github.com/mui/material-ui/issues/34008)) [@&#8203;EthanStandel](https://github.com/EthanStandel) ##### `@mui/joy@5.0.0-alpha.43` - \[Joy] Fix `role` proptypes ([#&#8203;34119](https://github.com/mui/material-ui/issues/34119)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Refine `componentsProps` for all components ([#&#8203;34077](https://github.com/mui/material-ui/issues/34077)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Radio]\[joy] support `componentsProps` as a function ([#&#8203;34022](https://github.com/mui/material-ui/issues/34022)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Select]\[joy] Improve the a11y on the select field demo ([#&#8203;34073](https://github.com/mui/material-ui/issues/34073)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[Textarea]\[joy] Add `Textarea` component ([#&#8203;33975](https://github.com/mui/material-ui/issues/33975)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - \[blog] Add Grid v2 announcement ([#&#8203;33926](https://github.com/mui/material-ui/issues/33926)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[blog] Making customizable components ([#&#8203;33183](https://github.com/mui/material-ui/issues/33183)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[blog] Improve SEO metadata ([#&#8203;33954](https://github.com/mui/material-ui/issues/33954)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Add introduction Base component demos & general uplift ([#&#8203;33896](https://github.com/mui/material-ui/issues/33896)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Fix Gatsby sample config in CSS variables ([#&#8203;34024](https://github.com/mui/material-ui/issues/34024)) [@&#8203;bicstone](https://github.com/bicstone) - \[docs] Fix 404 link from Joy to React Router ([#&#8203;34115](https://github.com/mui/material-ui/issues/34115)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix typo in `Select` component ([#&#8203;34091](https://github.com/mui/material-ui/issues/34091)) [@&#8203;HexM7](https://github.com/HexM7) - \[docs] Fix 301 links to tss's docs [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fixing Joy UI usage snippet ([#&#8203;34049](https://github.com/mui/material-ui/issues/34049)) [@&#8203;JonathanAsbury-SPS](https://github.com/JonathanAsbury-SPS) - \[docs] Fix missing JSX closing tag in Tooltip docs ([#&#8203;34064](https://github.com/mui/material-ui/issues/34064)) [@&#8203;hoangph271](https://github.com/hoangph271) - \[website] Add Toolpad to Navigation ([#&#8203;33937](https://github.com/mui/material-ui/issues/33937)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap) - \[website] Improve SEO meta description for MUI X [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Improve visual look of code demos ([#&#8203;34070](https://github.com/mui/material-ui/issues/34070)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Fix `DatePicker` component demo on the home page ([#&#8203;34054](https://github.com/mui/material-ui/issues/34054)) [@&#8203;NaveenPantra](https://github.com/NaveenPantra) ##### Core - \[core] Offer alternative to `OverridableComponent` via module augmentation for better performance ([#&#8203;32735](https://github.com/mui/material-ui/issues/32735)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[core] Fix prop-type warning in regression tests ([#&#8203;34086](https://github.com/mui/material-ui/issues/34086)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Specify code owners ([#&#8203;33995](https://github.com/mui/material-ui/issues/33995)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[core] Fix scroll restoration ([#&#8203;34037](https://github.com/mui/material-ui/issues/34037)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;bharatkashyap](https://github.com/bharatkashyap), [@&#8203;bicstone](https://github.com/bicstone), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;EthanStandel](https://github.com/EthanStandel), [@&#8203;HexM7](https://github.com/HexM7), [@&#8203;hoangph271](https://github.com/hoangph271), [@&#8203;JonathanAsbury-SPS](https://github.com/JonathanAsbury-SPS), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;NaveenPantra](https://github.com/NaveenPantra), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;pieetrus](https://github.com/pieetrus), [@&#8203;renovate](https://github.com/renovate)\[bot], [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.10.2`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5102) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.1...v5.10.2) <!-- generated comparing v5.10.1..master --> *Aug 22, 2022* A big thanks to the 11 contributors who made this release possible. Here are some highlights ✨: - ✨ [@&#8203;michaldudak](https://github.com/michaldudak) synced the Material Icons set with the latest from Google ([#&#8203;33988](https://github.com/mui/material-ui/issues/33988)).\ A couple of icons changed their appearance. See the difference [on this Argos build](https://app.argos-ci.com/mui/material-ui/builds/4428]). ##### `@mui/material@5.10.2` - ​<!-- 16 -->\[Autocomplete] Fix `keepMounted` Popper prop not working ([#&#8203;33957](https://github.com/mui/material-ui/issues/33957)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 10 -->\[IconButton] Fix hover effect when CSS Variables are enabled ([#&#8203;33971](https://github.com/mui/material-ui/issues/33971)) [@&#8203;TheUnlocked](https://github.com/TheUnlocked) - ​<!-- 07 -->\[LoadingButton] Add support for CSS variables ([#&#8203;34001](https://github.com/mui/material-ui/issues/34001)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 05 -->\[TimelineConnector] Add support for CSS variables ([#&#8203;34002](https://github.com/mui/material-ui/issues/34002)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 04 -->\[TimelineDot] Add support for CSS variables ([#&#8203;34003](https://github.com/mui/material-ui/issues/34003)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 03 -->\[TreeItem] Add support for CSS variables ([#&#8203;34004](https://github.com/mui/material-ui/issues/34004)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/system@5.10.2` - ​<!-- 06 -->\[system] catch localStorage errors ([#&#8203;34027](https://github.com/mui/material-ui/issues/34027)) [@&#8203;jsakas](https://github.com/jsakas) ##### `@mui/joy@5.0.0-alpha.42` - ​<!-- 08 -->\[Joy] Add missing global exports ([#&#8203;33982](https://github.com/mui/material-ui/issues/33982)) [@&#8203;tomasz-sodzawiczny](https://github.com/tomasz-sodzawiczny) ##### `@mui/icons-material@5.8.5` - ​<!-- 09 -->\[icons] Sync the Material Icons ([#&#8203;33988](https://github.com/mui/material-ui/issues/33988)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Docs - ​<!-- 21 -->\[docs] Fix typo in using-joy-ui-and-material-ui.md ([#&#8203;33997](https://github.com/mui/material-ui/issues/33997)) [@&#8203;djohalo2](https://github.com/djohalo2) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 20 -->\[docs] Fix typo in the Transition docs ([#&#8203;34040](https://github.com/mui/material-ui/issues/34040)) [@&#8203;alirezahekmati](https://github.com/alirezahekmati) - ​<!-- 19 -->\[docs] Typo fix in Joy UI Aspect Ratio doc ([#&#8203;33984](https://github.com/mui/material-ui/issues/33984)) [@&#8203;AjeetSingh2016](https://github.com/AjeetSingh2016) - ​<!-- 15 -->\[docs] Fix broken Joy UI codesandbox export ([#&#8203;34007](https://github.com/mui/material-ui/issues/34007)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 14 -->\[docs] Fix typos in `test` folder's README ([#&#8203;33976](https://github.com/mui/material-ui/issues/33976)) [@&#8203;ropereraLK](https://github.com/ropereraLK) - ​<!-- 13 -->\[docs] Fix interior section links in Base docs that feature hooks ([#&#8203;33948](https://github.com/mui/material-ui/issues/33948)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 12 -->\[docs] Fix typo in Joy UI's List Component docs ([#&#8203;33956](https://github.com/mui/material-ui/issues/33956)) [@&#8203;Cerebro92](https://github.com/Cerebro92) - ​<!-- 11 -->\[docs] Fix typo in Joy UI's docs ([#&#8203;33938](https://github.com/mui/material-ui/issues/33938)) [@&#8203;AjeetSingh2016](https://github.com/AjeetSingh2016) ##### Core - ​<!-- 18 -->\[website] Optimize meta description length ([#&#8203;34006](https://github.com/mui/material-ui/issues/34006)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 17 -->Revert "\[core] Replace `getInitialProps` with `getStaticProps`" ([#&#8203;33991](https://github.com/mui/material-ui/issues/33991)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 02 -->\[website] Move the React Engineer - X to next roles ([#&#8203;34030](https://github.com/mui/material-ui/issues/34030)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 01 -->\[website] Add Icons8 gold sponsor ([#&#8203;33978](https://github.com/mui/material-ui/issues/33978)) [@&#8203;michaldudak](https://github.com/michaldudak) All contributors of this release in alphabetical order: [@&#8203;AjeetSingh2016](https://github.com/AjeetSingh2016), [@&#8203;alirezahekmati](https://github.com/alirezahekmati), [@&#8203;Cerebro92](https://github.com/Cerebro92), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;djohalo2](https://github.com/djohalo2), [@&#8203;jsakas](https://github.com/jsakas), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;ropereraLK](https://github.com/ropereraLK), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;TheUnlocked](https://github.com/TheUnlocked), [@&#8203;tomasz-sodzawiczny](https://github.com/tomasz-sodzawiczny), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.10.1`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#v51011) [Compare Source](https://github.com/mui/material-ui/compare/v5.10.0...v5.10.1) <!-- generated comparing v5.10.10..master --> *Oct 25, 2022* A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨: - 🔧 Moved `components` to `slots` prop starting at MUI Base to create consistency across products - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements ##### `@mui/material@5.10.11` - \[InputBase] Fix `onInvalid` to use HTMLInputElement | HTMLTextAreaElement Element type ([#&#8203;33162](https://github.com/mui/material-ui/issues/33162)) [@&#8203;KuSh](https://github.com/KuSh) - \[Alert] Add `components` and `componentsProps` props to allow close action overrides ([#&#8203;33582](https://github.com/mui/material-ui/issues/33582)) [@&#8203;jake-collibra](https://github.com/jake-collibra) ##### `@mui/base@5.0.0-alpha.103` ##### BREAKING CHANGE - \[base] `components` -> `slots` API rename ([#&#8203;34693](https://github.com/mui/material-ui/issues/34693)) [@&#8203;michaldudak](https://github.com/michaldudak) - Change all occurrences of components and componentsProps props in Base components to slots and slotProps, respectively. - Change casing of slots' fields to camelCase ```diff -<SwitchUnstyled components={{Root: CustomRoot}} componentsProps={{rail: { className: 'custom-rail' }}} /> +<SwitchUnstyled slots={{root: CustomRoot}} slotProps={{rail: { className: 'custom-rail' }}} /> ``` - \[base] Make CSS class prefixes consistent ([#&#8203;33411](https://github.com/mui/material-ui/issues/33411)) [@&#8203;michaldudak](https://github.com/michaldudak) **This is a breaking change for anyone who depends on the class names applied to Base components.** If you use the `<component>UnstyledClasses` objects, you won't notice a difference. Only if you depend on the resulting class names (e.g. in CSS stylesheets), you'll have to adjust your code. ```diff -.ButtonUnstyled-root { ... }; +.MuiButton-root { ... }; ``` ##### Changes - \[test] Test all Base components with describeConformanceUnstyled ([#&#8203;34825](https://github.com/mui/material-ui/issues/34825)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.51` - \[CircularProgress]\[joy] Fix classnames and add test ([#&#8203;34806](https://github.com/mui/material-ui/issues/34806)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[Joy] Allow string type for `size` prop in components ([#&#8203;34805](https://github.com/mui/material-ui/issues/34805)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### Docs - Revert "\[docs] Fix search icons in other languages ([#&#8203;34823](https://github.com/mui/material-ui/issues/34823))" [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - Revert "\[core] Move SearchIcons to docs src folder ([#&#8203;34802](https://github.com/mui/material-ui/issues/34802))" [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - Revert "\[docs] Live demos ([#&#8203;34454](https://github.com/mui/material-ui/issues/34454))" [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - Update the order of operations for pagination example so that slicing takes place after sorting. ([#&#8203;34189](https://github.com/mui/material-ui/issues/34189)) [@&#8203;marceliwac](https://github.com/marceliwac) - \[docs] Gatsby Description in Joy dark-mode ([#&#8203;34702](https://github.com/mui/material-ui/issues/34702)) [@&#8203;pixelass](https://github.com/pixelass) - \[docs] Add notification for blogpost MUI X v6 alpha ([#&#8203;34809](https://github.com/mui/material-ui/issues/34809)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - \[docs] Polish Crowdin config ([#&#8203;34852](https://github.com/mui/material-ui/issues/34852)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix a few style standard deviations [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Enforce no trailing spaces ([#&#8203;34762](https://github.com/mui/material-ui/issues/34762)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Enforce correct git diff format ([#&#8203;34765](https://github.com/mui/material-ui/issues/34765)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix Toolpad docs 301 route ([#&#8203;34843](https://github.com/mui/material-ui/issues/34843)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap) - \[docs] Replace initial value with theme white ([#&#8203;34822](https://github.com/mui/material-ui/issues/34822)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Remove localization redirects ([#&#8203;34844](https://github.com/mui/material-ui/issues/34844)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Fix search icons in other languages ([#&#8203;34823](https://github.com/mui/material-ui/issues/34823)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix JavaScript capitalization [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Update new links to MD2 ([#&#8203;34848](https://github.com/mui/material-ui/issues/34848)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Update future work items on X landing page ([#&#8203;34810](https://github.com/mui/material-ui/issues/34810)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - \[website] Add Toolpad docs to navigation ([#&#8203;34749](https://github.com/mui/material-ui/issues/34749)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap) ##### Core - \[core] Remove dead files ([#&#8203;34850](https://github.com/mui/material-ui/issues/34850)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Fix revert conflict [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Fix a few CodeQL errors ([#&#8203;34766](https://github.com/mui/material-ui/issues/34766)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Harden GitHub Actions permissions ([#&#8203;34769](https://github.com/mui/material-ui/issues/34769)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Remove the codeowners file ([#&#8203;34876](https://github.com/mui/material-ui/issues/34876)) [@&#8203;michaldudak](https://github.com/michaldudak) All contributors of this release in alphabetical order: [@&#8203;bharatkashyap](https://github.com/bharatkashyap), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;jake-collibra](https://github.com/jake-collibra), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;KuSh](https://github.com/KuSh), [@&#8203;marceliwac](https://github.com/marceliwac), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;pixelass](https://github.com/pixelass), [@&#8203;siriwatknp](https://github.com/siriwatknp) ### [`v5.10.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;5100) [Compare Source](https://github.com/mui/material-ui/compare/v5.9.3...v5.10.0) <!-- generated comparing v5.9.3..master --> *Aug 8, 2022* A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: - ✨ [Stack](https://mui.com/system/react-stack/) component is added to MUI System and Joy UI [#&#8203;33760](https://github.com/mui/material-ui/issues/33760) [#&#8203;33800](https://github.com/mui/material-ui/issues/33800) [@&#8203;mnajdova](https://github.com/mnajdova) - ✨ [Breadcrumbs](https://mui.com/joy-ui/react-breadcrumbs/) component is added to Joy UI ([#&#8203;32697](https://github.com/mui/material-ui/issues/32697)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements ##### `@mui/material@5.10.0` - \[Grid] Prevent crash if spacing is set to zero in theme ([#&#8203;33777](https://github.com/mui/material-ui/issues/33777)) [@&#8203;PunitSoniME](https://github.com/PunitSoniME) - \[Grid] Export interface `RegularBreakpoints` to fix type error ([#&#8203;33751](https://github.com/mui/material-ui/issues/33751)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[Skeleton] Add `rounded` variant ([#&#8203;33687](https://github.com/mui/material-ui/issues/33687)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Stepper] Fix classes for icon container ([#&#8203;33734](https://github.com/mui/material-ui/issues/33734)) [@&#8203;pratikkarad](https://github.com/pratikkarad) - \[TableCell] Enable size prop overrides via module augmentation ([#&#8203;33816](https://github.com/mui/material-ui/issues/33816)) [@&#8203;brentertz](https://github.com/brentertz) - \[Tooltip] Fix tooltip arrow css var background ([#&#8203;33753](https://github.com/mui/material-ui/issues/33753)) [@&#8203;TimoWilhelm](https://github.com/TimoWilhelm) - \[useScrollTrigger] Add passive flag to scroll trigger event listener [#&#8203;32437](https://github.com/mui/material-ui/issues/32437) ([#&#8203;33749](https://github.com/mui/material-ui/issues/33749)) [@&#8203;Dsalazar1685](https://github.com/Dsalazar1685) ##### `@mui/system@5.10.0` - Fix unnecessary styles created from `sx` ([#&#8203;33752](https://github.com/mui/material-ui/issues/33752)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - Fix duplicated styles in Box ([#&#8203;33774](https://github.com/mui/material-ui/issues/33774)) [@&#8203;iamxukai](https://github.com/iamxukai) - Don't spread props to DOM for string tags ([#&#8203;33761](https://github.com/mui/material-ui/issues/33761)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - Add `Stack` component ([#&#8203;33760](https://github.com/mui/material-ui/issues/33760)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/joy@5.0.0-alpha.40` - \[Stack] Add new component ([#&#8203;33800](https://github.com/mui/material-ui/issues/33800)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[Breadcrumbs] Add `Breadcrumbs` component ([#&#8203;32697](https://github.com/mui/material-ui/issues/32697)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[Card] Fix wrong api description for `size` prop ([#&#8203;33862](https://github.com/mui/material-ui/issues/33862)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - Miscellaneous fixes ([#&#8203;33796](https://github.com/mui/material-ui/issues/33796), [#&#8203;33750](https://github.com/mui/material-ui/issues/33750)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - \[docs] Create, revise, and expand System "Getting started" docs ([#&#8203;33503](https://github.com/mui/material-ui/issues/33503)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Test new image best practice [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix typo in the ClickAwayListerner name ([#&#8203;33813](https://github.com/mui/material-ui/issues/33813)) [@&#8203;pawelsmigielski](https://github.com/pawelsmigielski) - \[docs] Fix link to `Basics` section in `Trap Focus` docs ([#&#8203;33772](https://github.com/mui/material-ui/issues/33772)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[docs] z-index added in popper when used by split button ([#&#8203;33763](https://github.com/mui/material-ui/issues/33763)) [@&#8203;PunitSoniME](https://github.com/PunitSoniME) - \[docs] Improve the guide for using [@&#8203;mui/base](https://github.com/mui/base) with Tailwind CSS ([#&#8203;33670](https://github.com/mui/material-ui/issues/33670)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Fix warnings related to Next.js' links ([#&#8203;33693](https://github.com/mui/material-ui/issues/33693)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Add notification to aggregation blogpost ([#&#8203;33745](https://github.com/mui/material-ui/issues/33745)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - \[docs] Add Grid version 2 docs ([#&#8203;33554](https://github.com/mui/material-ui/issues/33554)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[examples] Fix `NextLinkComposedProps` type error ([#&#8203;33842](https://github.com/mui/material-ui/issues/33842)) [@&#8203;adham618](https://github.com/adham618) ##### Core - \[blog] Add social card to Tenerife retreat post ([#&#8203;33764](https://github.com/mui/material-ui/issues/33764)) - \[blog] Fix blue outline bug ([#&#8203;33707](https://github.com/mui/material-ui/issues/33707)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[blog] Improve the width of the layout ([#&#8203;33706](https://github.com/mui/material-ui/issues/33706)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari)[@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[core] Remove unnecessary packageName attribute from pages ([#&#8203;33488](https://github.com/mui/material-ui/issues/33488)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[core] Remove duplicated CODE_OF_CONDUCT ([#&#8203;33702](https://github.com/mui/material-ui/issues/33702)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Update Playwright packages together ([#&#8203;33737](https://github.com/mui/material-ui/issues/33737)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[website] Fix notifications not being marked as read in production ([#&#8203;33756](https://github.com/mui/material-ui/issues/33756)) [@&#8203;cherniavskii](https://github.com/cherniavskii) All contributors of this release in alphabetical order: [@&#8203;adham618](https://github.com/adham618), [@&#8203;brentertz](https://github.com/brentertz), [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;Dsalazar1685](https://github.com/Dsalazar1685), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;iamxukai](https://github.com/iamxukai), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;pawelsmigielski](https://github.com/pawelsmigielski), [@&#8203;pratikkarad](https://github.com/pratikkarad), [@&#8203;PunitSoniME](https://github.com/PunitSoniME), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;TimoWilhelm](https://github.com/TimoWilhelm), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.9.3`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;593) [Compare Source](https://github.com/mui/material-ui/compare/v5.9.2...v5.9.3) <!-- generated comparing v5.9.2..master --> *Aug 1, 2022* A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨: - 🖼️ [@&#8203;garronej](https://github.com/garronej) worked on improving the support of Emotion packages in the System ([#&#8203;33205](https://github.com/mui/material-ui/issues/33205)) - Many other 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements ##### `@mui/material@5.9.3` - \[Chip] Assign classnames and associated styles for `filled` variant ([#&#8203;33587](https://github.com/mui/material-ui/issues/33587)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[Grid] Fix `columnSpacing` and `rowSpacing` props ignore higher breakpoints with 0 ([#&#8203;33480](https://github.com/mui/material-ui/issues/33480)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[Input] Add the readOnly state class ([#&#8203;33654](https://github.com/mui/material-ui/issues/33654)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[Stack] Responsive styles based on breakpoints should be in the correct order ([#&#8203;33552](https://github.com/mui/material-ui/issues/33552)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/system@5.9.3` - \[system] Make @&#8203;emotion/\* fully supported in the System ([#&#8203;33205](https://github.com/mui/material-ui/issues/33205)) [@&#8203;garronej](https://github.com/garronej) ##### `@mui/codemod@5.9.3` - \[codemod] Fix theme-spacing performance ([#&#8203;33691](https://github.com/mui/material-ui/issues/33691)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[codemod] Support [@&#8203;mui](https://github.com/mui) import for variant-prop ([#&#8203;33692](https://github.com/mui/material-ui/issues/33692)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/styled-engine-sc@5.9.3` - \[styled-engine-sc] Add missing [@&#8203;babel/runtime](https://github.com/babel/runtime) dependency ([#&#8203;33741](https://github.com/mui/material-ui/issues/33741)) [@&#8203;MonstraG](https://github.com/MonstraG) ##### `@mui/joy@5.0.0-alpha.38` - \[Joy] Add Tabs components ([#&#8203;33664](https://github.com/mui/material-ui/issues/33664)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Miscellaneous fixes ([#&#8203;33685](https://github.com/mui/material-ui/issues/33685)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Update read.me content ([#&#8203;33643](https://github.com/mui/material-ui/issues/33643)) [@&#8203;danilo-leal](https://github.com/danilo-leal) ##### Docs - \[blog] Add blog post about company retreat in Tenerife 🏝 ([#&#8203;33566](https://github.com/mui/material-ui/issues/33566)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[blog] Add blog post to announce the aggregation feature ([#&#8203;33595](https://github.com/mui/material-ui/issues/33595)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - \[blog] Fix horizontal scrollbar with code snippets ([#&#8203;33648](https://github.com/mui/material-ui/issues/33648)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - \[docs] Fix a typo in the code in `Sorting & selecting` Table demo ([#&#8203;33674](https://github.com/mui/material-ui/issues/33674)) [@&#8203;mracette](https://github.com/mracette) - \[docs] Fix en-US format in the Skeleton demo ([#&#8203;33699](https://github.com/mui/material-ui/issues/33699)) [@&#8203;husseinsaad98](https://github.com/husseinsaad98) - \[docs] Update module reference for `usePagination` ([#&#8203;33675](https://github.com/mui/material-ui/issues/33675)) [@&#8203;fullstackzach](https://github.com/fullstackzach) - \[docs] Fix code examples in `styled` API vs `sx` prop docs ([#&#8203;33665](https://github.com/mui/material-ui/issues/33665)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[docs]\[system] Throw an informative error when `theme.vars` is used in `createTheme` and mention this in the theming docs ([#&#8203;33619](https://github.com/mui/material-ui/issues/33619)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[website] Remove legacy redirect [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Add new legal pages ([#&#8203;33650](https://github.com/mui/material-ui/issues/33650)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Clarify when a license in development is required ([#&#8203;33668](https://github.com/mui/material-ui/issues/33668)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Update links to rows pages ([#&#8203;33739](https://github.com/mui/material-ui/issues/33739)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[website] Update pricing table to add aggregation and row pinning ([#&#8203;33659](https://github.com/mui/material-ui/issues/33659)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) ##### Core - \[core] Replace `getInitialProps` with `getStaticProps` ([#&#8203;33684](https://github.com/mui/material-ui/issues/33684)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[core] Remove accidentally added files ([#&#8203;33636](https://github.com/mui/material-ui/issues/33636)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[core] Update packages with security issues ([#&#8203;33679](https://github.com/mui/material-ui/issues/33679)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[core] Add React 17 nightly build ([#&#8203;33594](https://github.com/mui/material-ui/issues/33594)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[core] Update lerna to 5.2.0 ([#&#8203;33635](https://github.com/mui/material-ui/issues/33635)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[core] Prepare isolation of Next.js X app ([#&#8203;33649](https://github.com/mui/material-ui/issues/33649)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Remove thenify version override from package.json resolutions ([#&#8203;33638](https://github.com/mui/material-ui/issues/33638)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[core] Update Node.js to 14 on CircleCI, CodeSandbox, and Netlify ([#&#8203;33642](https://github.com/mui/material-ui/issues/33642)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[test] Replace istanbul-instrumenter-loader with babel-plugin-istanbul ([#&#8203;33666](https://github.com/mui/material-ui/issues/33666)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[test] Run TypeScript module augmentation tests for Joy UI in CI ([#&#8203;33667](https://github.com/mui/material-ui/issues/33667)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) All contributors of this release in alphabetical order: [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;fullstackzach](https://github.com/fullstackzach), [@&#8203;garronej](https://github.com/garronej), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;husseinsaad98](https://github.com/husseinsaad98), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;MonstraG](https://github.com/MonstraG), [@&#8203;mracette](https://github.com/mracette), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.9.2`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;592) [Compare Source](https://github.com/mui/material-ui/compare/v5.9.1...v5.9.2) <!-- generated comparing v5.9.1..master --> *Jul 25, 2022* A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: - 🧪 Ensure all Base components are `OverridableComponent` ([#&#8203;33506](https://github.com/mui/material-ui/issues/33506)) [@&#8203;michaldudak](https://github.com/michaldudak) - 🧪 Various improvements on the Material `Stack` component ([#&#8203;33548](https://github.com/mui/material-ui/issues/33548), [#&#8203;33588](https://github.com/mui/material-ui/issues/33588), [#&#8203;33549](https://github.com/mui/material-ui/issues/33549)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - Many other 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.9.2` - ​<!-- 34 -->Revert "\[Tooltip] Fix children mouse over detection ([#&#8203;32321](https://github.com/mui/material-ui/issues/32321))" [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 19 -->\[FormHelperText] Fix unable to create new variants ([#&#8203;33589](https://github.com/mui/material-ui/issues/33589)) [@&#8203;DinhBaoTran](https://github.com/DinhBaoTran) - ​<!-- 18 -->\[ImageList] Remove vertical spacing between items in masonry layout ([#&#8203;33593](https://github.com/mui/material-ui/issues/33593)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 13 -->\[LoadingButton] Refactor duplicate code ([#&#8203;33570](https://github.com/mui/material-ui/issues/33570)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 12 -->\[Modal] Explain the meaning of deprecation of the BackdropComponent prop ([#&#8203;33591](https://github.com/mui/material-ui/issues/33591)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 11 -->\[Stack] Fix unit test failure ([#&#8203;33588](https://github.com/mui/material-ui/issues/33588)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 10 -->\[Stack] Fix default `flexDirection` value with responsive prop ([#&#8203;33549](https://github.com/mui/material-ui/issues/33549)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 09 -->\[Stack] Ensure that `marginundefined` doesn't occur in styling ([#&#8203;33548](https://github.com/mui/material-ui/issues/33548)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 08 -->\[Tabs] Fix `indicatorColor` prop type ([#&#8203;33569](https://github.com/mui/material-ui/issues/33569)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 07 -->\[Tabs] Add TypeScript interface to augment tab indicator color in theme ([#&#8203;33333](https://github.com/mui/material-ui/issues/33333)) [@&#8203;AHeiming](https://github.com/AHeiming) ##### `@mui/base@5.0.0-alpha.91` - ​<!-- 33 -->\[Base] Make PopperUnstyled `component` overridable ([#&#8203;33573](https://github.com/mui/material-ui/issues/33573)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 32 -->\[Base] Ensure all components are OverridableComponent ([#&#8203;33506](https://github.com/mui/material-ui/issues/33506)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.38` - ​<!-- 17 -->\[Select] Add new component in Joy ([#&#8203;33630](https://github.com/mui/material-ui/issues/33630)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 15 -->\[Joy] Add Text field documentation ([#&#8203;33430](https://github.com/mui/material-ui/issues/33430), [#&#8203;33631](https://github.com/mui/material-ui/issues/33631)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 14 -->\[Joy] Add menu components ([#&#8203;31789](https://github.com/mui/material-ui/issues/31789)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 31 -->\[blog] Fix 404 link to Algolia docs search ([`dd4308d`](https://github.com/mui/material-ui/commit/dd4308d)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 28 -->\[docs] Add accessibility tips ([#&#8203;33633](https://github.com/mui/material-ui/issues/33633)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 27 -->\[docs] Fix production deploy of codesandboxes ([#&#8203;33608](https://github.com/mui/material-ui/issues/33608)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 26 -->\[docs] Show border on `palette.background.paper` in dark mode docs ([#&#8203;33611](https://github.com/mui/material-ui/issues/33611)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 25 -->\[docs] Fix typo in Joy UI dark mode page ([#&#8203;33620](https://github.com/mui/material-ui/issues/33620)) [@&#8203;bairamau](https://github.com/bairamau) - ​<!-- 24 -->\[docs] Final polish on Base docs - formatting and style consistency ([#&#8203;33156](https://github.com/mui/material-ui/issues/33156)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 23 -->\[docs] Fix `CssBaseline` import in example code ([#&#8203;33614](https://github.com/mui/material-ui/issues/33614)) [@&#8203;dd-ssc](https://github.com/dd-ssc) - ​<!-- 22 -->\[docs] Fix Toolpad docs redirection ([#&#8203;33524](https://github.com/mui/material-ui/issues/33524)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap) - ​<!-- 21 -->\[docs] Fix link to Snackbar customization section in Alert docs ([#&#8203;33586](https://github.com/mui/material-ui/issues/33586)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 20 -->\[docs] Fix `placement choices` typo in Tooltip docs ([#&#8203;33571](https://github.com/mui/material-ui/issues/33571)) [@&#8203;MonstraG](https://github.com/MonstraG) - ​<!-- 05 -->\[website] Update home page's sponsor grid ([#&#8203;33528](https://github.com/mui/material-ui/issues/33528)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 04 -->\[website] Add Vytautas to the about page ([#&#8203;33567](https://github.com/mui/material-ui/issues/33567)) [@&#8203;bytasv](https://github.com/bytasv) - ​<!-- 03 -->\[website] Improve newsletter input design ([#&#8203;33585](https://github.com/mui/material-ui/issues/33585)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 02 -->\[website] Add YouTube link to footer ([#&#8203;33580](https://github.com/mui/material-ui/issues/33580)) [@&#8203;gerdadesign](https://github.com/gerdadesign) - ​<!-- 01 -->\[website] Clarify scope of technical support ([#&#8203;33435](https://github.com/mui/material-ui/issues/33435)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) ##### Core - ​<!-- 30 -->\[core] Swallow ad blocker fetch fail ([#&#8203;33617](https://github.com/mui/material-ui/issues/33617)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 29 -->\[core] Fix dep security by resolving `thenify` to latest ([#&#8203;33612](https://github.com/mui/material-ui/issues/33612)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 06 -->\[test] Remove `view` option from Event in Snackbar tests ([#&#8203;33555](https://github.com/mui/material-ui/issues/33555)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) All contributors of this release in alphabetical order: [@&#8203;AHeiming](https://github.com/AHeiming), [@&#8203;bairamau](https://github.com/bairamau), [@&#8203;bharatkashyap](https://github.com/bharatkashyap), [@&#8203;bytasv](https://github.com/bytasv), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;dd-ssc](https://github.com/dd-ssc), [@&#8203;DinhBaoTran](https://github.com/DinhBaoTran), [@&#8203;gerdadesign](https://github.com/gerdadesign), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;MonstraG](https://github.com/MonstraG), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.9.1`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;591) [Compare Source](https://github.com/mui/material-ui/compare/v5.9.0...v5.9.1) <!-- generated comparing v5.9.0..master --> *Jul 18, 2022* A big thanks to the 17 contributors who made this release possible. This release is mainly about 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.9.1` - ​<!-- 24 -->\[Autocomplete] Fix disabling component crashing when focused ([#&#8203;31313](https://github.com/mui/material-ui/issues/31313)) [@&#8203;mzedel](https://github.com/mzedel) - ​<!-- 07 -->\[Grid] Avoid scrollbar in demo ([#&#8203;33527](https://github.com/mui/material-ui/issues/33527)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 05 -->\[Slider] Fix transition of tooltips on vertical slider ([#&#8203;33009](https://github.com/mui/material-ui/issues/33009)) [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech) - ​<!-- 01 -->\[TouchRipple] Fix crash on android where `event.touches` are an empty array ([#&#8203;32974](https://github.com/mui/material-ui/issues/32974)) [@&#8203;lukeggchapman](https://github.com/lukeggchapman) ##### `@mui/system@5.9.1` - ​<!-- 04 -->\[system] Add flag to switch negative margin approach in Grid ([#&#8203;33484](https://github.com/mui/material-ui/issues/33484)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 03 -->\[system] Remove needless optional chaining check in `createEmptyBreakpointObject` method ([#&#8203;33482](https://github.com/mui/material-ui/issues/33482)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/base@5.0.0-alpha.90` - ​<!-- 23 -->\[base] Export types used by components' props ([#&#8203;33522](https://github.com/mui/material-ui/issues/33522)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 22 -->\[base] Add missing type definitions in useControllableReducer ([#&#8203;33496](https://github.com/mui/material-ui/issues/33496)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 06 -->\[SelectUnstyled] Do not call onChange unnecessarily ([#&#8203;33408](https://github.com/mui/material-ui/issues/33408)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/lab@5.0.0-alpha.91` - ​<!-- 02 -->\[TimelineDot] Add TimelineDotPropsColorOverrides interface to extend color options ([#&#8203;33466](https://github.com/mui/material-ui/issues/33466)) [@&#8203;lolaignatova](https://github.com/lolaignatova) ##### Docs - ​<!-- 19 -->\[docs] Add note about CssBaseline in the dark mode page ([#&#8203;33108](https://github.com/mui/material-ui/issues/33108)) [@&#8203;GabrielaLokelani](https://github.com/GabrielaLokelani) - ​<!-- 18 -->\[docs] Fix typos in the Interoperability page ([#&#8203;33273](https://github.com/mui/material-ui/issues/33273)) [@&#8203;HexM7](https://github.com/HexM7) - ​<!-- 17 -->\[docs] Improve the `useTheme` documentation ([#&#8203;33508](https://github.com/mui/material-ui/issues/33508)) [@&#8203;rickstaa](https://github.com/rickstaa) - ​<!-- 16 -->\[docs] Fix 301 redirections ([#&#8203;33521](https://github.com/mui/material-ui/issues/33521)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 15 -->\[docs] Link the same codesandbox as in the docs ([#&#8203;33472](https://github.com/mui/material-ui/issues/33472)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 14 -->\[docs] Fix copy search false positives ([#&#8203;33438](https://github.com/mui/material-ui/issues/33438)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 13 -->\[docs] Fix typo ([#&#8203;33520](https://github.com/mui/material-ui/issues/33520)) [@&#8203;aravindpanicker](https://github.com/aravindpanicker) - ​<!-- 12 -->\[docs] Update Tailwind docs to include step about updating popover containers ([#&#8203;33315](https://github.com/mui/material-ui/issues/33315)) [@&#8203;ajhenry](https://github.com/ajhenry) - ​<!-- 11 -->\[docs] Add yarn command for Roboto font in Material UI's typography.md ([#&#8203;33485](https://github.com/mui/material-ui/issues/33485)) [@&#8203;anthonypz](https://github.com/anthonypz) - ​<!-- 10 -->\[docs] Add new community content to the Material UI Learn page ([#&#8203;32927](https://github.com/mui/material-ui/issues/32927)) [@&#8203;Nikhilthadani](https://github.com/Nikhilthadani) - ​<!-- 09 -->\[examples] Change createEmotionCache to use `insertionPoint` ([#&#8203;32104](https://github.com/mui/material-ui/issues/32104)) [@&#8203;ANTARES-KOR](https://github.com/ANTARES-KOR) - ​<!-- 08 -->\[examples] Fix error in Next.js example with [@&#8203;mui/styles](https://github.com/mui/styles) ([#&#8203;33456](https://github.com/mui/material-ui/issues/33456)) [@&#8203;paustria](https://github.com/paustria) ##### Core - ​<!-- 21 -->\[core] Cleanup experiments ([#&#8203;33547](https://github.com/mui/material-ui/issues/33547)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 20 -->\[core] Update CHANGELOG to include pickers breaking change ([#&#8203;33486](https://github.com/mui/material-ui/issues/33486)) [@&#8203;siriwatknp](https://github.com/siriwatknp) All contributors of this release in alphabetical order: [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech), [@&#8203;ajhenry](https://github.com/ajhenry), [@&#8203;ANTARES-KOR](https://github.com/ANTARES-KOR), [@&#8203;anthonypz](https://github.com/anthonypz), [@&#8203;aravindpanicker](https://github.com/aravindpanicker), [@&#8203;GabrielaLokelani](https://github.com/GabrielaLokelani), [@&#8203;HexM7](https://github.com/HexM7), [@&#8203;lolaignatova](https://github.com/lolaignatova), [@&#8203;lukeggchapman](https://github.com/lukeggchapman), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mzedel](https://github.com/mzedel), [@&#8203;Nikhilthadani](https://github.com/Nikhilthadani), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;paustria](https://github.com/paustria), [@&#8203;rickstaa](https://github.com/rickstaa), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.9.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;590) [Compare Source](https://github.com/mui/material-ui/compare/v5.8.7...v5.9.0) <!-- generated comparing v5.8.7..master --> *Jul 12, 2022* A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨: - 🧪 Exported Grid v2 as `Unstable_Grid2` ([#&#8203;33479](https://github.com/mui/material-ui/issues/33479)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - 📖 Added a guide for using Joy UI and Material UI together ([#&#8203;33396](https://github.com/mui/material-ui/issues/33396)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - 🐛 Fixed a few bugs in Material UI components. Thanks to [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli), [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming), and [@&#8203;joebingham-wk](https://github.com/joebingham-wk). - ⚠️ **\[BREAKING CHANGE]** Date pickers were removed from the lab. Learn how to migrate by visiting the [migration guide](https://mui.com/x/react-date-pickers/migration-lab/). ([#&#8203;33386](https://github.com/mui/material-ui/issues/33386)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - many other 🐛 bug fixes and 📚 documentation improvements - our documentation site is now running with React 18! ([#&#8203;33196](https://github.com/mui/material-ui/issues/33196)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/material@5.9.0` - \[CssBaseline] Fixes in overriding style ([#&#8203;33338](https://github.com/mui/material-ui/issues/33338)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[Autocomplete] Remove unnecessary `clsx` wrapper for single className ([#&#8203;33398](https://github.com/mui/material-ui/issues/33398)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[Grid] Export new grid as unstable ([#&#8203;33479](https://github.com/mui/material-ui/issues/33479)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Tooltip] Fix children mouse over detection ([#&#8203;32321](https://github.com/mui/material-ui/issues/32321)) [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming) - \[TypeScript] getCssVar autocomplete for Material UI ([#&#8203;33464](https://github.com/mui/material-ui/issues/33464)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[TypeScript] Fix theme options components types to use `Theme` ([#&#8203;33434](https://github.com/mui/material-ui/issues/33434)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[TypeScript] Reexports necessary types for module augmentation ([#&#8203;33397](https://github.com/mui/material-ui/issues/33397)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[ScopedCssBaseline] Add sx typings ([#&#8203;33474](https://github.com/mui/material-ui/issues/33474)) [@&#8203;joebingham-wk](https://github.com/joebingham-wk) ##### `@mui/system@5.9.0` - \[System] Add offset feature to Grid ([#&#8203;33415](https://github.com/mui/material-ui/issues/33415)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[system] Add new `Grid` implementation ([#&#8203;32746](https://github.com/mui/material-ui/issues/32746)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/lab@5.0.0-alpha.90` **⚠️ Breaking changes** - \[lab] Remove the pickers ([#&#8203;33386](https://github.com/mui/material-ui/issues/33386)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) The pickers are moved to MUI X, check out the [migration guide](https://mui.com/x/react-date-pickers/migration-lab/). **Changes** - \[Masonry] Support rem/em values for spacing prop ([#&#8203;33384](https://github.com/mui/material-ui/issues/33384)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/base@5.0.0-alpha.89` - \[Base] Change the order of class names merged in useSlotProps ([#&#8203;33383](https://github.com/mui/material-ui/issues/33383)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[ModalUnstyled] Accept callbacks in componentsProps ([#&#8203;33181](https://github.com/mui/material-ui/issues/33181)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[SelectUnstyled] Accept callbacks in componentsProps ([#&#8203;33197](https://github.com/mui/material-ui/issues/33197)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[TabsUnstyled] Accept callbacks in componentsProps ([#&#8203;33284](https://github.com/mui/material-ui/issues/33284)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.36` - \[Joy] Add guide about using Joy and Material UI together ([#&#8203;33396](https://github.com/mui/material-ui/issues/33396)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Fix variants color palette regressions ([#&#8203;33394](https://github.com/mui/material-ui/issues/33394)) [@&#8203;danilo-leal](https://github.com/danilo-leal) ##### Docs - \[docs] Correcting small grammatical error ([#&#8203;33393](https://github.com/mui/material-ui/issues/33393)) [@&#8203;robyyo](https://github.com/robyyo) - \[docs] Link to the correct package on Joy component pages ([#&#8203;33439](https://github.com/mui/material-ui/issues/33439)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[docs] Fix e2e tests ([#&#8203;33477](https://github.com/mui/material-ui/issues/33477)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix dead links ([#&#8203;33462](https://github.com/mui/material-ui/issues/33462)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Cleanup the migration ([#&#8203;33463](https://github.com/mui/material-ui/issues/33463)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix broken Sponsoring services links [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Improve repo README with light/dark logos, relative links and more ([#&#8203;33356](https://github.com/mui/material-ui/issues/33356)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Update links to MUI X Overview and Introduction pages ([#&#8203;33201](https://github.com/mui/material-ui/issues/33201)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Update to React 18 ([#&#8203;33196](https://github.com/mui/material-ui/issues/33196)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Simplify "Upload button" demo ([#&#8203;33326](https://github.com/mui/material-ui/issues/33326)) [@&#8203;baharalidurrani](https://github.com/baharalidurrani) - \[docs] Add "refine" demo to showcase ([#&#8203;33240](https://github.com/mui/material-ui/issues/33240)) [@&#8203;omeraplak](https://github.com/omeraplak) - \[docs] Add webpack alias for legacy utils package ([#&#8203;33376](https://github.com/mui/material-ui/issues/33376)) [@&#8203;jgbae](https://github.com/jgbae) - \[docs] Improve external link icons synonyms ([#&#8203;33257](https://github.com/mui/material-ui/issues/33257)) [@&#8203;davidgarciab](https://github.com/davidgarciab) - \[examples] Update MUI Base with Tailwind CSS to use the latest versions of the dependencies ([#&#8203;33401](https://github.com/mui/material-ui/issues/33401)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[examples] Add MUI base example ([#&#8203;33154](https://github.com/mui/material-ui/issues/33154)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Core - \[core] Fix [@&#8203;mui/monorepo](https://github.com/mui/monorepo) regression for the import of the docs infra ([#&#8203;33390](https://github.com/mui/material-ui/issues/33390)) [@&#8203;Janpot](https://github.com/Janpot) - \[core] Remove old babel resolve rule ([#&#8203;33432](https://github.com/mui/material-ui/issues/33432)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Shorten the plan descriptions on the pricing page ([#&#8203;32984](https://github.com/mui/material-ui/issues/32984)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - \[website] Link EULA in the license quantity section ([#&#8203;33292](https://github.com/mui/material-ui/issues/33292)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;baharalidurrani](https://github.com/baharalidurrani), [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;davidgarciab](https://github.com/davidgarciab), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;jgbae](https://github.com/jgbae), [@&#8203;joebingham-wk](https://github.com/joebingham-wk), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;omeraplak](https://github.com/omeraplak), [@&#8203;robyyo](https://github.com/robyyo), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.8.7`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;587) [Compare Source](https://github.com/mui/material-ui/compare/v5.8.6...v5.8.7) <!-- generated comparing v5.8.6..master --> *Jul 4, 2022* A big thanks to the 13 contributors who made this release possible. Here are some highlights ✨: - 🐛 Fixed an issue causing Typescript errors when building a project with Material UI v5.8.6 ([@&#8203;michaldudak](https://github.com/michaldudak)) - 🐛 Fixed a few bugs in Material UI components. Thanks [@&#8203;henriqueholtz](https://github.com/henriqueholtz), [@&#8203;jake-collibra](https://github.com/jake-collibra), [@&#8203;MattiasMartens](https://github.com/MattiasMartens) and [@&#8203;TimoWilhelm](https://github.com/TimoWilhelm)! - many other 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.8.7` - \[Autocomplete] Add some missing props in `useAutocomplete` ([#&#8203;33269](https://github.com/mui/material-ui/issues/33269)) [@&#8203;henriqueholtz](https://github.com/henriqueholtz) - \[Autocomplete] Extend `componentsProps` to include `popper` and `popupIndicator` slots ([#&#8203;33283](https://github.com/mui/material-ui/issues/33283)) [@&#8203;jake-collibra](https://github.com/jake-collibra) - \[Select] Annotate empty string as valid value prop ([#&#8203;33088](https://github.com/mui/material-ui/issues/33088)) [@&#8203;MattiasMartens](https://github.com/MattiasMartens) - \[SnackbarContent] Fix message text color with css var provider ([#&#8203;33285](https://github.com/mui/material-ui/issues/33285)) [@&#8203;TimoWilhelm](https://github.com/TimoWilhelm) ##### `@mui/styled-engine@5.8.7` - \[styled-engine] Add missing type dependency on csstype ([#&#8203;33310](https://github.com/mui/material-ui/issues/33310)) [@&#8203;Methuselah96](https://github.com/Methuselah96) ##### `@mui/system@5.8.7` - \[system] Simplify theme input types for `CssVarsProvider` ([#&#8203;33381](https://github.com/mui/material-ui/issues/33381)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[system] Export required types ([#&#8203;33324](https://github.com/mui/material-ui/issues/33324)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.35` - \[Joy] Add radio button documentation ([#&#8203;33254](https://github.com/mui/material-ui/issues/33254)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add switch documentation ([#&#8203;33302](https://github.com/mui/material-ui/issues/33302)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Batch a couple of documentation refinements ([#&#8203;33158](https://github.com/mui/material-ui/issues/33158)) - \[Joy] Enable Joy and Material UI compatibility ([#&#8203;33379](https://github.com/mui/material-ui/issues/33379)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/base@5.0.0-alpha.88` - \[base] Remove a type incompatible with Typescript 3.5 ([#&#8203;33361](https://github.com/mui/material-ui/issues/33361)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[BadgeUnstyled] Export BadgeUnstyledOwnProps interface to fix typescript compiler error ([#&#8203;33314](https://github.com/mui/material-ui/issues/33314)) [@&#8203;aaronlademann-wf](https://github.com/aaronlademann-wf) - \[TablePaginationUnstyled] Accept callbacks in componentsProps ([#&#8203;33309](https://github.com/mui/material-ui/issues/33309)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Docs - \[docs] Fix Link typings in the react-router example ([#&#8203;32308](https://github.com/mui/material-ui/issues/32308)) [@&#8203;aaarichter](https://github.com/aaarichter) - \[docs] Add caveat about class components with Tooltip ([#&#8203;33325](https://github.com/mui/material-ui/issues/33325)) [@&#8203;joshkel](https://github.com/joshkel) - \[docs] Fix SEO issues ([#&#8203;33288](https://github.com/mui/material-ui/issues/33288)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix Slider's "player" demo ([#&#8203;33267](https://github.com/mui/material-ui/issues/33267)) [@&#8203;xlianghang](https://github.com/xlianghang) - \[website] Link MUI Toolpad in mui.com ([#&#8203;33287](https://github.com/mui/material-ui/issues/33287)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;aaarichter](https://github.com/aaarichter), [@&#8203;aaronlademann-wf](https://github.com/aaronlademann-wf), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;henriqueholtz](https://github.com/henriqueholtz), [@&#8203;jake-collibra](https://github.com/jake-collibra), [@&#8203;joshkel](https://github.com/joshkel), [@&#8203;MattiasMartens](https://github.com/MattiasMartens), [@&#8203;Methuselah96](https://github.com/Methuselah96), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;TimoWilhelm](https://github.com/TimoWilhelm), [@&#8203;xlianghang](https://github.com/xlianghang) ### [`v5.8.6`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;586) [Compare Source](https://github.com/mui/material-ui/compare/v5.8.5...v5.8.6) <!-- generated comparing v5.8.5..master --> *Jun 27, 2022* A big thanks to the 13 contributors who made this release possible. Here are some highlights ✨: - ⚒️ Fixed React 18 issues in few components - 🚀 Improved the TypeScript augmentation when using CSS variables with `@mui/material` - many other 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.8.6` - ​<!-- 27 -->\[Alert] Add support for CSS vars ([#&#8203;32624](https://github.com/mui/material-ui/issues/32624)) [@&#8203;haneenmahd](https://github.com/haneenmahd) - ​<!-- 26 -->\[Alert] Use `getContrastText` for filled variant font color ([#&#8203;29813](https://github.com/mui/material-ui/issues/29813)) [@&#8203;SamoraMabuya](https://github.com/SamoraMabuya) Note: The color of the text in the warning contained `Alert` in dark mode was changed to black in order to improve the color contrast ratio - ​<!-- 11 -->\[OutlinedInput] Fix `ownerState` undefined in theme style overrides ([#&#8203;33241](https://github.com/mui/material-ui/issues/33241)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 08 -->\[Tabs] Fix crash when used with React 18 & Suspense ([#&#8203;33277](https://github.com/mui/material-ui/issues/33277)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 05 -->\[TypeScript] Add CSS vars type augmentation for Material UI ([#&#8203;33211](https://github.com/mui/material-ui/issues/33211)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/system@5.8.6` - ​<!-- 09 -->\[system] Add enableColorScheme option to getInitColorSchemeScript ([#&#8203;33261](https://github.com/mui/material-ui/issues/33261)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/utils@5.8.6` - ​<!-- 04 -->\[utils] Allow state prefix to be configurable ([#&#8203;32972](https://github.com/mui/material-ui/issues/32972)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/base@5.0.0-alpha.87` - ​<!-- 25 -->\[base] Improve the return type of useSlotProps ([#&#8203;33279](https://github.com/mui/material-ui/issues/33279)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 24 -->\[base] Improve some types ([#&#8203;33270](https://github.com/mui/material-ui/issues/33270)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 13 -->\[MenuUnstyled] Fix keyboard accessibility of menu items ([#&#8203;33145](https://github.com/mui/material-ui/issues/33145)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 12 -->\[ModalManager] Lock body scroll when container is inside shadow DOM ([#&#8203;33168](https://github.com/mui/material-ui/issues/33168)) [@&#8203;jacobweberbowery](https://github.com/jacobweberbowery) - ​<!-- 10 -->\[SliderUnstyled] Use useSlotProps ([#&#8203;33132](https://github.com/mui/material-ui/issues/33132)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 07 -->\[TextareaAutosize] Fix crash when used with React 18 & Suspense ([#&#8203;33238](https://github.com/mui/material-ui/issues/33238)) [@&#8203;howlettt](https://github.com/howlettt) - ​<!-- 06 -->\[TextareaAutosize] Fix warnings for too many renders in React 18 ([#&#8203;33253](https://github.com/mui/material-ui/issues/33253)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/joy@5.0.0-alpha.34` - ​<!-- 14 -->\[Joy] Add `Sheet` doc ([#&#8203;32820](https://github.com/mui/material-ui/issues/32820)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### Docs - ​<!-- 23 -->\[blog] Polish Why you should migrate to Material UI v5 today ([#&#8203;33244](https://github.com/mui/material-ui/issues/33244)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 21 -->\[docs] Add note in docs about `componentsProps.root` taking precedence ([#&#8203;33097](https://github.com/mui/material-ui/issues/33097)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 20 -->\[docs] Remove a note about Base components being reexported from Material UI ([#&#8203;33265](https://github.com/mui/material-ui/issues/33265)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 19 -->\[docs] Update code snippet in docs for custom color palette ([#&#8203;32946](https://github.com/mui/material-ui/issues/32946)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 18 -->\[docs] Fix the docs for production class generation ([#&#8203;31933](https://github.com/mui/material-ui/issues/31933)) [@&#8203;Fafruch](https://github.com/Fafruch) - ​<!-- 17 -->\[docs] Fix internal link in Box page ([#&#8203;33149](https://github.com/mui/material-ui/issues/33149)) [@&#8203;davidgarciab](https://github.com/davidgarciab) - ​<!-- 16 -->\[docs] Badge component link in Base docs should be under Data Display section ([#&#8203;33249](https://github.com/mui/material-ui/issues/33249)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 15 -->\[examples] Fix comment typo ([#&#8203;33256](https://github.com/mui/material-ui/issues/33256)) [@&#8203;WinmezzZ](https://github.com/WinmezzZ) ##### Core - ​<!-- 22 -->\[core] Remove dead code ([#&#8203;33243](https://github.com/mui/material-ui/issues/33243)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 03 -->\[website] Fix the scroll-top for all the website ([#&#8203;33215](https://github.com/mui/material-ui/issues/33215)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 02 -->\[website] List new core role [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 01 -->\[website] Fix navigation menu close behavior ([#&#8203;33203](https://github.com/mui/material-ui/issues/33203)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;davidgarciab](https://github.com/davidgarciab), [@&#8203;Fafruch](https://github.com/Fafruch), [@&#8203;haneenmahd](https://github.com/haneenmahd), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;howlettt](https://github.com/howlettt), [@&#8203;jacobweberbowery](https://github.com/jacobweberbowery), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;SamoraMabuya](https://github.com/SamoraMabuya), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;WinmezzZ](https://github.com/WinmezzZ), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.8.5`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;585) [Compare Source](https://github.com/mui/material-ui/compare/v5.8.4...v5.8.5) <!-- generated comparing v5.8.4..master --> *Jun 20, 2022* A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨: - 🚀 Added support for CSS variables in the `Avatar` component and the `SpeedDialAction` component respectively by [@&#8203;vicasas](https://github.com/vicasas) and [@&#8203;gin1314](https://github.com/gin1314) - many other 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.8.5` - ​<!-- 30 -->\[Avatar] Add support for CSS variables ([#&#8203;32499](https://github.com/mui/material-ui/issues/32499)) [@&#8203;vicasas](https://github.com/vicasas) - ​<!-- 19 -->\[Dialog] Fix broken styles if `maxWidth` is set to `false` ([#&#8203;32987](https://github.com/mui/material-ui/issues/32987)) [@&#8203;kmurgic](https://github.com/kmurgic) - ​<!-- 04 -->\[SpeedDialAction] Add support for CSS variables ([#&#8203;32608](https://github.com/mui/material-ui/issues/32608)) [@&#8203;gin1314](https://github.com/gin1314) - ​<!-- 02 -->\[Tabs] Increment scroll of the minimum amount possible ([#&#8203;33103](https://github.com/mui/material-ui/issues/33103)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### `@mui/codemod@5.8.5` - ​<!-- 24 -->\[codemod] Preserve comments within jss-to-tss-react ([#&#8203;33170](https://github.com/mui/material-ui/issues/33170)) [@&#8203;ryancogswell](https://github.com/ryancogswell) ##### `@mui/lab@5.0.0-alpha.87` - ​<!-- 06 -->\[Masonry] Fix flickering when used with React 18 ([#&#8203;33163](https://github.com/mui/material-ui/issues/33163)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/base@5.0.0-alpha.86` - ​<!-- 29 -->\[BadgeUnstyled] Accept callbacks in componentsProps ([#&#8203;33176](https://github.com/mui/material-ui/issues/33176)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 25 -->\[ButtonUnstyled] Use useSlotProps ([#&#8203;33096](https://github.com/mui/material-ui/issues/33096)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 11 -->\[FormControlUnstyled] Accept callbacks in componentsProps ([#&#8203;33180](https://github.com/mui/material-ui/issues/33180)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 10 -->\[InputUnstyled] Use useSlotProps ([#&#8203;33094](https://github.com/mui/material-ui/issues/33094)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 05 -->\[ModalUnstyled] Define ownerState and slot props' types ([#&#8203;32901](https://github.com/mui/material-ui/issues/32901)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 03 -->\[SwitchUnstyled] Use useSlotProps ([#&#8203;33174](https://github.com/mui/material-ui/issues/33174)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.33` - ​<!-- 09 -->\[Joy] Add Checkbox documentation ([#&#8203;33171](https://github.com/mui/material-ui/issues/33171)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 08 -->\[Joy] Add List documentation ([#&#8203;33120](https://github.com/mui/material-ui/issues/33120)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 07 -->\[Joy] Make slider displays Joy classname ([#&#8203;33051](https://github.com/mui/material-ui/issues/33051)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 28 -->\[blog] Update Blogpost to clear confusion on "no impact" disclaimer. ([#&#8203;33131](https://github.com/mui/material-ui/issues/33131)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - ​<!-- 27 -->\[blog] Add post about v5 Migration guide update ([#&#8203;33063](https://github.com/mui/material-ui/issues/33063)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 26 -->\[blog] Fix display on Safari ([#&#8203;33102](https://github.com/mui/material-ui/issues/33102)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 18 -->\[docs] Add guide on how to use MUI Base with Tailwind CSS ([#&#8203;33100](https://github.com/mui/material-ui/issues/33100)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 17 -->\[docs] Improve Joy template UX ([#&#8203;33159](https://github.com/mui/material-ui/issues/33159)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 16 -->\[docs] Update Shadow DOM guide ([#&#8203;33160](https://github.com/mui/material-ui/issues/33160)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - ​<!-- 15 -->\[docs] Fix SEO regressions ([#&#8203;33106](https://github.com/mui/material-ui/issues/33106)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 14 -->\[docs] Add job ad in table of content ([#&#8203;33143](https://github.com/mui/material-ui/issues/33143)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 13 -->\[docs] Add customization as a value proposition ([#&#8203;33014](https://github.com/mui/material-ui/issues/33014)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 12 -->\[examples] Add example using nextjs & [@&#8203;mui/styles](https://github.com/mui/styles) as a starter for the migration to v5 ([#&#8203;33005](https://github.com/mui/material-ui/issues/33005)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 01 -->\[website] Replace Airtable with Ashby links for applying to a opened position ([#&#8203;33193](https://github.com/mui/material-ui/issues/33193)) [@&#8203;DanailH](https://github.com/DanailH) ##### Core - ​<!-- 31 -->\[core] Add CSS variables support for Material UI components ([#&#8203;32835](https://github.com/mui/material-ui/issues/32835)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 23 -->\[core] Add name to workspace root package.json ([#&#8203;33226](https://github.com/mui/material-ui/issues/33226)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 22 -->\[core] Update bug template with generic instruction ([#&#8203;33153](https://github.com/mui/material-ui/issues/33153)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - ​<!-- 21 -->\[core] Remove dead and redundant code ([#&#8203;33125](https://github.com/mui/material-ui/issues/33125)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 20 -->\[core] Improve inline code rendering within the details tag ([#&#8203;33086](https://github.com/mui/material-ui/issues/33086)) [@&#8203;Harmouch101](https://github.com/Harmouch101) All contributors of this release in alphabetical order: [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;DanailH](https://github.com/DanailH), [@&#8203;gin1314](https://github.com/gin1314), [@&#8203;Harmouch101](https://github.com/Harmouch101), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;kmurgic](https://github.com/kmurgic), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;ryancogswell](https://github.com/ryancogswell), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;vicasas](https://github.com/vicasas) ### [`v5.8.4`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;584) [Compare Source](https://github.com/mui/material-ui/compare/v5.8.3...v5.8.4) <!-- generated comparing v5.8.3..master --> *Jun 14, 2022* A big thanks to the 24 contributors who made this release possible. Here are some highlights ✨: - 🚀 Added support for custom breakpoints in the `Grid` component by [@&#8203;boutahlilsoufiane](https://github.com/boutahlilsoufiane) - 📚 Added guide on how to use Material UI with Shadow DOM by [@&#8203;cherniavskii](https://github.com/cherniavskii) - many other 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.8.4` - ​<!-- 36 -->\[Button] Add missing classes in `ButtonClasses` type ([#&#8203;33040](https://github.com/mui/material-ui/issues/33040)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 20 -->\[Grid] Fix prop-type key regression ([#&#8203;33123](https://github.com/mui/material-ui/issues/33123)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 19 -->\[Grid] Support custom breakpoints ([#&#8203;31998](https://github.com/mui/material-ui/issues/31998)) [@&#8203;boutahlilsoufiane](https://github.com/boutahlilsoufiane) - ​<!-- 18 -->\[Grow] Limit CSS transition bug workaround to Safari 15.4 only ([#&#8203;32996](https://github.com/mui/material-ui/issues/32996)) [@&#8203;igordanchenko](https://github.com/igordanchenko) - ​<!-- 17 -->\[Hidden] Remove dependency on hoist-non-react-statics ([#&#8203;33015](https://github.com/mui/material-ui/issues/33015)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 12 -->\[Link] Add support for CSS variables ([#&#8203;33036](https://github.com/mui/material-ui/issues/33036)) [@&#8203;winderica](https://github.com/winderica) - ​<!-- 07 -->\[Popover] Export `getOffsetTop` & `getOffsetLeft` from Popover's index and add typings ([#&#8203;32959](https://github.com/mui/material-ui/issues/32959)) [@&#8203;rart](https://github.com/rart) - ​<!-- 06 -->\[Slider] Fix SliderValueLabelProps type ([#&#8203;32895](https://github.com/mui/material-ui/issues/32895)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 05 -->\[Snackbar] Remove `RTL` direction specific logic ([#&#8203;32808](https://github.com/mui/material-ui/issues/32808)) [@&#8203;aaarichter](https://github.com/aaarichter) - ​<!-- 04 -->\[StepIcon] Fix text centering when changing browser font size ([#&#8203;32706](https://github.com/mui/material-ui/issues/32706)) [@&#8203;alansouzati](https://github.com/alansouzati) - ​<!-- 02 -->\[Tabs] Scroll by width of the first visible tab if only one tab is partially visible ([#&#8203;32778](https://github.com/mui/material-ui/issues/32778)) [@&#8203;frankkluijtmans](https://github.com/frankkluijtmans) ##### `@mui/system@5.8.4` - ​<!-- 38 -->\[Stack, system] Apply correct responsive styles if any custom breakpoints are provided ([#&#8203;32913](https://github.com/mui/material-ui/issues/32913)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 03 -->\[system] Fix missing typings for ColorFormat ([#&#8203;32417](https://github.com/mui/material-ui/issues/32417)) [@&#8203;l-zoy](https://github.com/l-zoy) ##### `@mui/codemod@5.8.4` - ​<!-- 35 -->\[codemod] Add support for `@mui/styles/makeStyles` imports ([#&#8203;32962](https://github.com/mui/material-ui/issues/32962)) [@&#8203;joshkel](https://github.com/joshkel) ##### `@mui/lab@5.0.0-alpha.86` - ​<!-- 08 -->\[pickers] Fix broken ref forwarding ([#&#8203;33107](https://github.com/mui/material-ui/issues/33107)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 13 -->\[lab] Fix React's `forwardRef` warning when importing from the index ([#&#8203;33134](https://github.com/mui/material-ui/issues/33134)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/base@5.0.0-alpha.85` - ​<!-- 11 -->\[MenuUnstyled] Accept callbacks in componentsProps ([#&#8203;32997](https://github.com/mui/material-ui/issues/32997)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 10 -->\[ModalUnstyled] Fix errors from the W3C validator about incorrect aria-hidden attribute on some elements ([#&#8203;30920](https://github.com/mui/material-ui/issues/30920)) [@&#8203;mkrtchian](https://github.com/mkrtchian) - ​<!-- 09 -->\[ModalUnstyled] Fix behavior of not respecting props ariaHidden value ([#&#8203;32055](https://github.com/mui/material-ui/issues/32055)) [@&#8203;tech-meppem](https://github.com/tech-meppem) ##### `@mui/joy@5.0.0-alpha.32` - ​<!-- 16 -->\[Joy] Miscellaneous card fixes ([#&#8203;33129](https://github.com/mui/material-ui/issues/33129)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 15 -->\[Joy] Miscellaneous fixes ([#&#8203;33073](https://github.com/mui/material-ui/issues/33073)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 14 -->\[Joy] Add typography and link docs ([#&#8203;33047](https://github.com/mui/material-ui/issues/33047)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 40 -->\[Contributing.md] Local install instructions ([#&#8203;32975](https://github.com/mui/material-ui/issues/32975)) [@&#8203;Moizsohail](https://github.com/Moizsohail) - ​<!-- 32 -->\[docs] Add responsive AppBar with drawer ([#&#8203;32769](https://github.com/mui/material-ui/issues/32769)) [@&#8203;dvlprAlamin](https://github.com/dvlprAlamin) - ​<!-- 31 -->\[docs] Move codesandbox to MUI org ([#&#8203;33122](https://github.com/mui/material-ui/issues/33122)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 30 -->\[docs] Add Shadow DOM guide ([#&#8203;33007](https://github.com/mui/material-ui/issues/33007)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - ​<!-- 29 -->\[docs] Fix typo in Material UI overview page ([#&#8203;33087](https://github.com/mui/material-ui/issues/33087)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 28 -->\[docs] Miscellaneous fixes in `MUI Base` docs ([#&#8203;33091](https://github.com/mui/material-ui/issues/33091)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 27 -->\[docs] Fix GitHub capitalization ([#&#8203;33071](https://github.com/mui/material-ui/issues/33071)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 26 -->\[docs] Fix a typo in `InputUnstyled` docs ([#&#8203;33077](https://github.com/mui/material-ui/issues/33077)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 25 -->\[docs] Add notification for Joy blog post ([#&#8203;33059](https://github.com/mui/material-ui/issues/33059)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 24 -->\[docs] Improve aspect ratio docs and integration ([#&#8203;33065](https://github.com/mui/material-ui/issues/33065)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 34 -->\[docs] Update code block copy label ([#&#8203;33128](https://github.com/mui/material-ui/issues/33128)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 23 -->\[docs] Fix typo in Autocomplete CSS API ([#&#8203;32838](https://github.com/mui/material-ui/issues/32838)) [@&#8203;KeaghanKennedy](https://github.com/KeaghanKennedy) - ​<!-- 22 -->\[docs] Improvements for Radio Group Rating Docs ([#&#8203;32843](https://github.com/mui/material-ui/issues/32843)) [@&#8203;Kai-W](https://github.com/Kai-W) - ​<!-- 21 -->\[docs] Enable Joy pages ([#&#8203;33064](https://github.com/mui/material-ui/issues/33064)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 02 -->\[website] Add Joy UI to the pricing page ([#&#8203;33099](https://github.com/mui/material-ui/issues/33099)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 01 -->\[website] Clarify the pricing a bit ([#&#8203;33069](https://github.com/mui/material-ui/issues/33069)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 39 -->yarn proptypes [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 34 -->\[core] Update dependencies to fix security vulnerabilities ([#&#8203;33095](https://github.com/mui/material-ui/issues/33095)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 33 -->\[core] Import new line convention ([#&#8203;33068](https://github.com/mui/material-ui/issues/33068)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 37 -->\[core] Make repository configurable in changelog script ([#&#8203;33130](https://github.com/mui/material-ui/issues/33130)) [@&#8203;Janpot](https://github.com/Janpot) All contributors of this release in alphabetical order: [@&#8203;aaarichter](https://github.com/aaarichter), [@&#8203;alansouzati](https://github.com/alansouzati), [@&#8203;boutahlilsoufiane](https://github.com/boutahlilsoufiane), [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;dvlprAlamin](https://github.com/dvlprAlamin), [@&#8203;frankkluijtmans](https://github.com/frankkluijtmans), [@&#8203;igordanchenko](https://github.com/igordanchenko), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;joshkel](https://github.com/joshkel), [@&#8203;Kai-W](https://github.com/Kai-W), [@&#8203;KeaghanKennedy](https://github.com/KeaghanKennedy), [@&#8203;l-zoy](https://github.com/l-zoy), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mkrtchian](https://github.com/mkrtchian), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;Moizsohail](https://github.com/Moizsohail), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;pushys](https://github.com/pushys), [@&#8203;rart](https://github.com/rart), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;tech-meppem](https://github.com/tech-meppem), [@&#8203;winderica](https://github.com/winderica), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.8.3`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;583) [Compare Source](https://github.com/mui/material-ui/compare/v5.8.2...v5.8.3) <!-- generated comparing v5.8.2..master --> *Jun 7, 2022* A big thanks to the 15 contributors who made this release possible. This release is mostly about 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.8.3` - \[Alert] Constrain message width and allow overflow ([#&#8203;32747](https://github.com/mui/material-ui/issues/32747)) [@&#8203;Janpot](https://github.com/Janpot) - \[Checkbox] Add support for CSS variables ([#&#8203;32579](https://github.com/mui/material-ui/issues/32579)) [@&#8203;haneenmahd](https://github.com/haneenmahd) - \[Slider] Fix positioning of tooltips on vertical slider ([#&#8203;32919](https://github.com/mui/material-ui/issues/32919)) [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech) ##### `@mui/system@5.8.3` - \[system] Configurable attributes for libraries ([#&#8203;32971](https://github.com/mui/material-ui/issues/32971)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/codemod@5.8.3` - \[codemod] Fix infinite loop in jss-to-tss-react and add TODO ([#&#8203;33048](https://github.com/mui/material-ui/issues/33048)) [@&#8203;ryancogswell](https://github.com/ryancogswell) ##### `@mui/lab@5.0.0-alpha.85` - \[pickers] Add deprecations when importing pickers from the lab ([#&#8203;32950](https://github.com/mui/material-ui/issues/32950)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### `@mui/joy@5.0.0-alpha.31` - \[Joy] Add `Slider` component and demos ([#&#8203;32694](https://github.com/mui/material-ui/issues/32694)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[Joy] Add articles about customization approaches ([#&#8203;32887](https://github.com/mui/material-ui/issues/32887)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add automatic adjustment page to core features ([#&#8203;32980](https://github.com/mui/material-ui/issues/32980)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add docs about dark mode ([#&#8203;33002](https://github.com/mui/material-ui/issues/33002)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add template UIs & first look blog post ([#&#8203;32791](https://github.com/mui/material-ui/issues/32791)) [@&#8203;danilo-leal](https://github.com/danilo-leal) ##### `@mui/base@5.0.0-alpha.84` - \[base] Remove [@&#8203;mui/system](https://github.com/mui/system) in tests ([#&#8203;32945](https://github.com/mui/material-ui/issues/32945)) [@&#8203;kevinji](https://github.com/kevinji) - \[ButtonUnstyled] Accept callbacks in componentsProps ([#&#8203;32991](https://github.com/mui/material-ui/issues/32991)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[SwitchUnstyled] Accept callbacks in componentsProps ([#&#8203;32993](https://github.com/mui/material-ui/issues/32993)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[TablePaginationUnstyled] Define ownerState and slot props' types ([#&#8203;32905](https://github.com/mui/material-ui/issues/32905)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[TabPanelUnstyled] Define ownerState and slot props' types ([#&#8203;32928](https://github.com/mui/material-ui/issues/32928)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[TabsListUnstyled] Define ownerState and slot props' types ([#&#8203;32925](https://github.com/mui/material-ui/issues/32925)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Docs - \[blog] Fix anchor link scroll ([#&#8203;32994](https://github.com/mui/material-ui/issues/32994)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Add "Migration" section to sidebar and revise v4-v5 content ([#&#8203;32740](https://github.com/mui/material-ui/issues/32740)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Add What doesn't count as a breaking change? ([#&#8203;32850](https://github.com/mui/material-ui/issues/32850)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix 301 link [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix icon color in `BadgeUnstyled` docs ([#&#8203;32976](https://github.com/mui/material-ui/issues/32976)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[docs] Improve product identifier ([#&#8203;32707](https://github.com/mui/material-ui/issues/32707)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Improve UX with back to top ([#&#8203;32896](https://github.com/mui/material-ui/issues/32896)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Polish overview page to Material UI ([#&#8203;32954](https://github.com/mui/material-ui/issues/32954)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Redirect older URLs ([#&#8203;33037](https://github.com/mui/material-ui/issues/33037)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Remove pickers page from the Lab section ([#&#8203;32961](https://github.com/mui/material-ui/issues/32961)) [@&#8203;DanailH](https://github.com/DanailH) - \[docs] Show product identifier on updated MUI X Introduction pages ([#&#8203;32966](https://github.com/mui/material-ui/issues/32966)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Throw on 301 links ([#&#8203;32939](https://github.com/mui/material-ui/issues/32939)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Add Gerda to the about page ([#&#8203;33038](https://github.com/mui/material-ui/issues/33038)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[website] Polish the pricing page ([#&#8203;32811](https://github.com/mui/material-ui/issues/32811)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Remove unnecessary `address` dependency ([#&#8203;32957](https://github.com/mui/material-ui/issues/32957)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Core - \[core] Improve icon synonyms ([#&#8203;32742](https://github.com/mui/material-ui/issues/32742)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Prepare Next.js config for React 18 ([#&#8203;32963](https://github.com/mui/material-ui/issues/32963)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[core] Remove dead logic ([#&#8203;32940](https://github.com/mui/material-ui/issues/32940)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Update dependencies to fix security vulnerabilities ([#&#8203;32947](https://github.com/mui/material-ui/issues/32947)) [@&#8203;michaldudak](https://github.com/michaldudak) - Add security link to README for Tidelift [@&#8203;mbrookes](https://github.com/mbrookes) All contributors of this release in alphabetical order: [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech), [@&#8203;DanailH](https://github.com/DanailH), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;haneenmahd](https://github.com/haneenmahd), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;kevinji](https://github.com/kevinji), [@&#8203;mbrookes](https://github.com/mbrookes), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;ryancogswell](https://github.com/ryancogswell), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.8.2`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;582) [Compare Source](https://github.com/mui/material-ui/compare/v5.8.1...v5.8.2) <!-- generated comparing v5.8.1..master --> *May 30, 2022* A big thanks to the 8 contributors who made this release possible. Here are some highlights ✨: - 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/system@5.8.2` - ​<!-- 04 -->\[system] Add `getColorSchemeSelector` util ([#&#8203;32868](https://github.com/mui/material-ui/issues/32868)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/lab@5.0.0-alpha.84` - ​<!-- 07 -->\[Masonry] Place items to the left when there are less objects than specified in `column` prop ([#&#8203;32873](https://github.com/mui/material-ui/issues/32873)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/base@5.0.0-alpha.83` - ​<!-- 24 -->\[BadgeUnstyled] Define ownerState and slot props' types ([#&#8203;32750](https://github.com/mui/material-ui/issues/32750)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 06 -->\[SliderUnstyled] Define ownerState and slot props' types ([#&#8203;32739](https://github.com/mui/material-ui/issues/32739)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 05 -->\[SwitchUnstyled] Define ownerState and slot props' types ([#&#8203;32573](https://github.com/mui/material-ui/issues/32573)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 03 -->\[TabsUnstyled] Define ownerState and slot props' types ([#&#8203;32918](https://github.com/mui/material-ui/issues/32918)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 02 -->\[TabUnstyled] Define ownerState and slot props' types ([#&#8203;32915](https://github.com/mui/material-ui/issues/32915)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.30` - ​<!-- 13 -->\[Joy] use `textColor` prop for Typography and Link ([#&#8203;32938](https://github.com/mui/material-ui/issues/32938)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 12 -->\[Joy] Make variants for more flexible ([#&#8203;32931](https://github.com/mui/material-ui/issues/32931)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 11 -->\[Joy] Improve automatic adjustment ([#&#8203;32923](https://github.com/mui/material-ui/issues/32923)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 10 -->\[Joy] Add `Chip` doc ([#&#8203;32819](https://github.com/mui/material-ui/issues/32819)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 09 -->\[Joy] Add `AspectRatio` demos ([#&#8203;32848](https://github.com/mui/material-ui/issues/32848)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 08 -->\[Joy] Fix wrong urls ([#&#8203;32883](https://github.com/mui/material-ui/issues/32883)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 24 -->\[docs] Iterate on the job ad for React engineer in Core ([#&#8203;32900](https://github.com/mui/material-ui/issues/32900)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 23 -->\[blog] Fix avatar image resolution ([#&#8203;32890](https://github.com/mui/material-ui/issues/32890)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 19 -->\[docs] Link the first page of the product ([#&#8203;32943](https://github.com/mui/material-ui/issues/32943)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 18 -->\[docs] Batch small changes ([#&#8203;32170](https://github.com/mui/material-ui/issues/32170)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 17 -->\[docs] Allow function prop to return undefined ([#&#8203;32766](https://github.com/mui/material-ui/issues/32766)) [@&#8203;m4theushw](https://github.com/m4theushw) - ​<!-- 16 -->\[docs] Fix wrong link to Material Icons ([#&#8203;32847](https://github.com/mui/material-ui/issues/32847)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 15 -->\[docs] Fix ClassNameGenerator content ([#&#8203;32800](https://github.com/mui/material-ui/issues/32800)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 14 -->\[docs] Fix navigation links ([#&#8203;32851](https://github.com/mui/material-ui/issues/32851)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 14 -->\[docs] Document the `size` prop for InputLabel ([#&#8203;32936](https://github.com/mui/material-ui/issues/32936)) [@&#8203;romelperez](https://github.com/romelperez) - ​<!-- 21 -->\[docs] Add note about transparent background on the outlined Alert variant ([#&#8203;32810](https://github.com/mui/material-ui/issues/32810)) [@&#8203;aaarichter](https://github.com/aaarichter) - ​<!-- 01 -->\[website] Update the careers's page with the new roles ([#&#8203;32535](https://github.com/mui/material-ui/issues/32535)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 22 -->\[core] Improve the incomplete issues workflow ([#&#8203;32878](https://github.com/mui/material-ui/issues/32878)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 21 -->\[core] Add CI check that the PR has label ([#&#8203;32886](https://github.com/mui/material-ui/issues/32886)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 20 -->\[core] Avoid leaking [@&#8203;babel/runtime](https://github.com/babel/runtime) ([#&#8203;32874](https://github.com/mui/material-ui/issues/32874)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;aaarichter](https://github.com/aaarichter), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;m4theushw](https://github.com/m4theushw), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;romelperez](https://github.com/romelperez), [@&#8203;siriwatknp](https://github.com/siriwatknp) ### [`v5.8.1`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;581) [Compare Source](https://github.com/mui/material-ui/compare/v5.8.0...v5.8.1) <!-- generated comparing v5.8.0..master --> *May 23, 2022* A big thanks to the 21 contributors who made this release possible. Here are some highlights ✨: - 💅 Added CSS variables support for two more Material UI components by [@&#8203;diggis00](https://github.com/diggis00) and [@&#8203;alisasanib](https://github.com/alisasanib) - And more 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.8.1` - ​<!-- 33 -->\[Alert] Fix missing `ownerState` on the `action` slot ([#&#8203;32801](https://github.com/mui/material-ui/issues/32801)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 20 -->\[Fab] Make the `color` prop type extendable ([#&#8203;31830](https://github.com/mui/material-ui/issues/31830)) [@&#8203;paales](https://github.com/paales) - ​<!-- 14 -->\[ListItemButton] Render as link if href specified ([#&#8203;32403](https://github.com/mui/material-ui/issues/32403)) [@&#8203;o-dubrovskyi](https://github.com/o-dubrovskyi) - ​<!-- 13 -->\[Paper] Add support for CSS variables ([#&#8203;32570](https://github.com/mui/material-ui/issues/32570)) [@&#8203;diggis00](https://github.com/diggis00) - ​<!-- 11 -->\[Radio] Add support for CSS variables ([#&#8203;32599](https://github.com/mui/material-ui/issues/32599)) [@&#8203;alisasanib](https://github.com/alisasanib) - ​<!-- 10 -->\[Slider] Prevent rendering for marks that are out of the min & max bounds ([#&#8203;32436](https://github.com/mui/material-ui/issues/32436)) [@&#8203;abriginets](https://github.com/abriginets) - ​<!-- 09 -->\[Slider] Slider having marks should be customizable in theme ([#&#8203;32816](https://github.com/mui/material-ui/issues/32816)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 03 -->\[TouchRipple] Allows call imperative methods without event ([#&#8203;31955](https://github.com/mui/material-ui/issues/31955)) [@&#8203;alexfauquette](https://github.com/alexfauquette) ##### `@mui/system@5.8.1` - ​<!-- 07 -->\[system] Simplify stylesheet injection logic ([#&#8203;32869](https://github.com/mui/material-ui/issues/32869)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 06 -->\[system] Fix color scheme specificity ([#&#8203;32628](https://github.com/mui/material-ui/issues/32628)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 05 -->\[system] Fix `borderRadius` errors when used inside `CssVarsProvider` ([#&#8203;32817](https://github.com/mui/material-ui/issues/32817)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 04 -->\[system] Fix toolbar media query mixin getting merged in wrong order ([#&#8203;32713](https://github.com/mui/material-ui/issues/32713)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/lab@5.0.0-alpha.83` - ​<!-- 15 -->\[lab] Add missing `peerDependencies` ([#&#8203;32623](https://github.com/mui/material-ui/issues/32623)) [@&#8203;nate-summercook](https://github.com/nate-summercook) - ​<!-- 12 -->\[pickers] Update [@&#8203;mui/x-date-pickers](https://github.com/mui/x-date-pickers) to be usable with React 18 ([#&#8203;32828](https://github.com/mui/material-ui/issues/32828)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### `@mui/base@5.0.0-alpha.82` - ​<!-- 08 -->\[SliderUnstyled] Fix `disabledSwap` not being respected in `onChangeCommitted` ([#&#8203;32647](https://github.com/mui/material-ui/issues/32647)) [@&#8203;JeanPetrov](https://github.com/JeanPetrov) ##### `@mui/joy@5.0.0-alpha.29` - ​<!-- 19 -->\[Joy] Show Joy pages on master ([#&#8203;32866](https://github.com/mui/material-ui/issues/32866)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 18 -->\[Joy] Add an overview page ([#&#8203;32836](https://github.com/mui/material-ui/issues/32836)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 17 -->\[Joy] Add doc for the card components ([#&#8203;32825](https://github.com/mui/material-ui/issues/32825)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 16 -->\[Joy] Miscellaneous fixes ([#&#8203;32815](https://github.com/mui/material-ui/issues/32815)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 31 -->\[docs] Simplify header DOM structure ([#&#8203;32844](https://github.com/mui/material-ui/issues/32844)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 30 -->\[docs] Fix CodeSandbox & StackBlitz generation ([#&#8203;32726](https://github.com/mui/material-ui/issues/32726)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 29 -->\[docs] Fix urls to columns pages in pricing table ([#&#8203;32842](https://github.com/mui/material-ui/issues/32842)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - ​<!-- 28 -->\[docs] Fix Tailwind CSS integration docs ([#&#8203;32512](https://github.com/mui/material-ui/issues/32512)) [@&#8203;robertwt7](https://github.com/robertwt7) - ​<!-- 27 -->\[docs] Fixed wrong command for the `link-underline-hover` codemod ([#&#8203;32793](https://github.com/mui/material-ui/issues/32793)) [@&#8203;veronikaslc](https://github.com/veronikaslc) - ​<!-- 26 -->\[docs] Fixed broken link on the icons page ([#&#8203;32780](https://github.com/mui/material-ui/issues/32780)) [@&#8203;SamuelMaddox](https://github.com/SamuelMaddox) - ​<!-- 25 -->\[docs] Add "back to top" button ([#&#8203;30441](https://github.com/mui/material-ui/issues/30441)) [@&#8203;VibhorJaiswal](https://github.com/VibhorJaiswal) - ​<!-- 24 -->\[docs] Fix typo in notifications [@&#8203;mbrookes](https://github.com/mbrookes) - ​<!-- 32 -->\[docs] New WAI-ARIA guidelines location ([#&#8203;32865](https://github.com/mui/material-ui/issues/32865)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 23 -->\[docs] Mention the ESLint plugin for detecting unused classes in tss-react ([#&#8203;32666](https://github.com/mui/material-ui/issues/32666)) [@&#8203;garronej](https://github.com/garronej) - ​<!-- 22 -->\[docs] Update `useAutocomplete` demos to use `Mui-focused` class ([#&#8203;32757](https://github.com/mui/material-ui/issues/32757)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 21 -->\[examples] Fix `NextLinkComposedProps` gives a TypeScript error ([#&#8203;32655](https://github.com/mui/material-ui/issues/32655)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 01 -->\[website] Add Pedro to About Us page ([#&#8203;32803](https://github.com/mui/material-ui/issues/32803)) [@&#8203;apedroferreira](https://github.com/apedroferreira) ##### Core - ​<!-- 32 -->\[core] Upgrade MUI X dependency ([#&#8203;32824](https://github.com/mui/material-ui/issues/32824)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 02 -->\[typescript] Allow module augmentation for `Mixins` ([#&#8203;32798](https://github.com/mui/material-ui/issues/32798)) [@&#8203;mnajdova](https://github.com/mnajdova) All contributors of this release in alphabetical order: [@&#8203;abriginets](https://github.com/abriginets), [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;alisasanib](https://github.com/alisasanib), [@&#8203;apedroferreira](https://github.com/apedroferreira), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;diggis00](https://github.com/diggis00), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;garronej](https://github.com/garronej), [@&#8203;JeanPetrov](https://github.com/JeanPetrov), [@&#8203;mbrookes](https://github.com/mbrookes), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;nate-summercook](https://github.com/nate-summercook), [@&#8203;o-dubrovskyi](https://github.com/o-dubrovskyi), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;paales](https://github.com/paales), [@&#8203;robertwt7](https://github.com/robertwt7), [@&#8203;SamuelMaddox](https://github.com/SamuelMaddox), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;veronikaslc](https://github.com/veronikaslc), [@&#8203;VibhorJaiswal](https://github.com/VibhorJaiswal), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.8.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;580) [Compare Source](https://github.com/mui/material-ui/compare/v5.7.0...v5.8.0) <!-- generated comparing v5.7.0..master --> *May 17, 2022* A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨: - 🚀 [Blog post](https://mui.com/blog/premium-plan-release/) for announcing the release of the Premium plan of MUI X is out thanks to [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas). - Codemod for `jss` to `tss-react` migration is out thanks to [@&#8203;ryancogswell](https://github.com/ryancogswell) - And more 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.8.0` - ​<!-- 37 -->\[Autocomplete] Fix `getInputProps` TypeScript return type ([#&#8203;32730](https://github.com/mui/material-ui/issues/32730)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 36 -->\[Autocomplete] Forward props to renderTags() ([#&#8203;32637](https://github.com/mui/material-ui/issues/32637)) [@&#8203;emlai](https://github.com/emlai) - ​<!-- 35 -->\[Badge] Fix TypeScript error when adding style overrides for Badge ([#&#8203;32745](https://github.com/mui/material-ui/issues/32745)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 09 -->\[Menu] Fix context menu open position ([#&#8203;32661](https://github.com/mui/material-ui/issues/32661)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### `@mui/system@5.8.0` - ​<!-- 05 -->\[system] Add `Container` component and `createContainer` factory ([#&#8203;32263](https://github.com/mui/material-ui/issues/32263)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/base@5.0.0-alpha.81` - ​<!-- 15 -->\[InputUnstyled] Support callbacks in componentsProps ([#&#8203;32271](https://github.com/mui/material-ui/issues/32271)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 14 -->\[InputUnstyled] Define ownerState and slot props' types ([#&#8203;32491](https://github.com/mui/material-ui/issues/32491)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 08 -->\[MenuUnstyled] Demos improvements ([#&#8203;32714](https://github.com/mui/material-ui/issues/32714)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 07 -->\[OptionUnstyled] Define ownerState and slot props' types ([#&#8203;32717](https://github.com/mui/material-ui/issues/32717)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.28` - ​<!-- 13 -->\[Joy] Add Badge doc ([#&#8203;32790](https://github.com/mui/material-ui/issues/32790)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 12 -->\[Joy] Add global variant feature page ([#&#8203;32695](https://github.com/mui/material-ui/issues/32695)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 11 -->\[Joy] Add avatar page ([#&#8203;32711](https://github.com/mui/material-ui/issues/32711)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/codemod@5.8.0` - ​<!-- 33 -->\[codemod] Add jss to tss-react codemod ([#&#8203;31802](https://github.com/mui/material-ui/issues/31802)) [@&#8203;ryancogswell](https://github.com/ryancogswell) ##### Docs - ​<!-- 34 -->\[blog] Add release post for MUI X Premium ([#&#8203;32720](https://github.com/mui/material-ui/issues/32720)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - ​<!-- 29 -->\[docs] Fix wrong code snippet for overriding styles in theme with a callback value ([#&#8203;32781](https://github.com/mui/material-ui/issues/32781)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 28 -->\[docs] Update Crowdin logo ([#&#8203;32782](https://github.com/mui/material-ui/issues/32782)) [@&#8203;andrii-bodnar](https://github.com/andrii-bodnar) - ​<!-- 27 -->\[docs] Improve callouts design ([#&#8203;32709](https://github.com/mui/material-ui/issues/32709)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 26 -->\[docs] Revise the "Understanding MUI packages" article ([#&#8203;32382](https://github.com/mui/material-ui/issues/32382)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 25 -->\[docs] Fix link to the material icons ([#&#8203;32771](https://github.com/mui/material-ui/issues/32771)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 24 -->\[docs] Add notification for Premium release blog post ([#&#8203;32728](https://github.com/mui/material-ui/issues/32728)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - ​<!-- 23 -->\[docs] Base Portal style revisions and final review ([#&#8203;32157](https://github.com/mui/material-ui/issues/32157)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 22 -->\[docs] Add joy to docs package.json ([#&#8203;32744](https://github.com/mui/material-ui/issues/32744)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 21 -->\[docs] Fix TOC-related styles not being applied when disableAd=true ([#&#8203;32733](https://github.com/mui/material-ui/issues/32733)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - ​<!-- 20 -->\[docs] Add TypeScript guide on the polymorphic components ([#&#8203;32168](https://github.com/mui/material-ui/issues/32168)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 19 -->\[docs] Fix warning mode pass to React.Fragment ([#&#8203;32729](https://github.com/mui/material-ui/issues/32729)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 18 -->\[docs] Revise Showcase copy for clarity + audit appList ([#&#8203;31946](https://github.com/mui/material-ui/issues/31946)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 17 -->\[examples] Update remix example's tsconfig with required values ([#&#8203;32723](https://github.com/mui/material-ui/issues/32723)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 16 -->\[examples] Update to use React 18's createRoot ([#&#8203;32506](https://github.com/mui/material-ui/issues/32506)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 10 -->\[l10n] Fix typos and translations on arSD and arEG locales ([#&#8203;31848](https://github.com/mui/material-ui/issues/31848)) [@&#8203;shadigaafar](https://github.com/shadigaafar) - ​<!-- 04 -->\[website] Improve communication about MUI X components that are still wip ([#&#8203;32708](https://github.com/mui/material-ui/issues/32708)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 03 -->\[website] Remove scrollbar on x-axis ([#&#8203;32291](https://github.com/mui/material-ui/issues/32291)) [@&#8203;MrHBS](https://github.com/MrHBS) - ​<!-- 02 -->\[website] Update the pricing page for the MUI X premium plan release ([#&#8203;32458](https://github.com/mui/material-ui/issues/32458)) [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas) - ​<!-- 01 -->\[website] Update sponsors ([#&#8203;32725](https://github.com/mui/material-ui/issues/32725)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 32 -->\[core] Enabled Renovate's lockfile maintenance ([#&#8203;32635](https://github.com/mui/material-ui/issues/32635)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 31 -->\[core] Extract `MuiPage` interface to separate file ([#&#8203;32715](https://github.com/mui/material-ui/issues/32715)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - ​<!-- 30 -->\[core] Remove unnecessary `spacing` parameter from `createMixins` method ([#&#8203;32690](https://github.com/mui/material-ui/issues/32690)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 06 -->\[private-classnames] Remove package and move everything to utils ([#&#8203;32758](https://github.com/mui/material-ui/issues/32758)) [@&#8203;mnajdova](https://github.com/mnajdova) All contributors of this release in alphabetical order: [@&#8203;andrii-bodnar](https://github.com/andrii-bodnar), [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;emlai](https://github.com/emlai), [@&#8203;joserodolfofreitas](https://github.com/joserodolfofreitas), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;MrHBS](https://github.com/MrHBS), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;ryancogswell](https://github.com/ryancogswell), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;shadigaafar](https://github.com/shadigaafar), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.7.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;570) [Compare Source](https://github.com/mui/material-ui/compare/v5.6.4...v5.7.0) <!-- generated comparing v5.6.4..master --> *May 10, 2022* A big thanks to the 27 contributors who made this release possible. Here are some highlights ✨: 🛠 This release is all about supporting CSS variables in many Material UI components. Kudos to all contributors! ##### `@mui/material@5.7.0` - \[StepLabel, StepIcon] Add support for CSS variables ([#&#8203;32609](https://github.com/mui/material-ui/issues/32609)) [@&#8203;vicasas](https://github.com/vicasas) - \[Table, TableRow] Add support for CSS variables ([#&#8203;32614](https://github.com/mui/material-ui/issues/32614)) [@&#8203;vicasas](https://github.com/vicasas) - \[AppBar] Add a logo component for the responsive app bar demo ([#&#8203;32374](https://github.com/mui/material-ui/issues/32374)) [@&#8203;ameetmadan](https://github.com/ameetmadan) - \[Autocomplete] Fix clearing single array values ([#&#8203;32626](https://github.com/mui/material-ui/issues/32626)) [@&#8203;mikepricedev](https://github.com/mikepricedev) - \[Autocomplete] Fix keep listbox open on left/right keys when inputValue is not empty ([#&#8203;31407](https://github.com/mui/material-ui/issues/31407)) [@&#8203;alisasanib](https://github.com/alisasanib) - \[Autocomplete] Add support for CSS variables ([#&#8203;32598](https://github.com/mui/material-ui/issues/32598)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[Autocomplete] Render `endAdornment` only when necessary ([#&#8203;32386](https://github.com/mui/material-ui/issues/32386)) [@&#8203;g1eny0ung](https://github.com/g1eny0ung) - \[ButtonGroup] Add support for CSS variables ([#&#8203;32498](https://github.com/mui/material-ui/issues/32498)) [@&#8203;vicasas](https://github.com/vicasas) - \[CardActionArea] Add support for CSS variables ([#&#8203;32554](https://github.com/mui/material-ui/issues/32554)) [@&#8203;vicasas](https://github.com/vicasas) - \[ClickAwayListener] Allow pointer up/down events to event handler ([#&#8203;32264](https://github.com/mui/material-ui/issues/32264)) [@&#8203;vladjerca](https://github.com/vladjerca) - \[CssBaseline] Add support for CSS vars ([#&#8203;32618](https://github.com/mui/material-ui/issues/32618)) [@&#8203;haneenmahd](https://github.com/haneenmahd) - \[Dialog] Add support for CSS variables ([#&#8203;32555](https://github.com/mui/material-ui/issues/32555)) [@&#8203;vicasas](https://github.com/vicasas) - \[Divider] Add support for CSS variables ([#&#8203;32519](https://github.com/mui/material-ui/issues/32519)) [@&#8203;vicasas](https://github.com/vicasas) - \[Drawer] Add support for CSS variables ([#&#8203;32565](https://github.com/mui/material-ui/issues/32565)) [@&#8203;nghiamvt](https://github.com/nghiamvt) - \[Fab] Add support for CSS variables ([#&#8203;32564](https://github.com/mui/material-ui/issues/32564)) [@&#8203;alisasanib](https://github.com/alisasanib) - \[FormControlLabel] Add support for CSS variables ([#&#8203;32588](https://github.com/mui/material-ui/issues/32588)) [@&#8203;elliefoote](https://github.com/elliefoote) - \[FormHelperText] Add support for CSS variables ([#&#8203;32596](https://github.com/mui/material-ui/issues/32596)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[FormLabel] Add support for CSS variables ([#&#8203;32602](https://github.com/mui/material-ui/issues/32602)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[Icon] Add support for CSS variables ([#&#8203;32595](https://github.com/mui/material-ui/issues/32595)) [@&#8203;Jamaalwbrown](https://github.com/Jamaalwbrown) - \[IconButton] Add support for CSS variables ([#&#8203;32590](https://github.com/mui/material-ui/issues/32590)) [@&#8203;Ariyapong](https://github.com/Ariyapong) - \[ImageListItemBar] Add support for CSS variables ([#&#8203;32578](https://github.com/mui/material-ui/issues/32578)) [@&#8203;vicasas](https://github.com/vicasas) - \[Input] Support CSS variables ([#&#8203;32128](https://github.com/mui/material-ui/issues/32128)) [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming) - \[InputAdornment] Add support CSS variables ([#&#8203;32607](https://github.com/mui/material-ui/issues/32607)) [@&#8203;vicasas](https://github.com/vicasas) - \[Link] Fix style overrides color prop ([#&#8203;32653](https://github.com/mui/material-ui/issues/32653)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[ListItem] Add support for CSS variables ([#&#8203;32580](https://github.com/mui/material-ui/issues/32580)) [@&#8203;dan-mba](https://github.com/dan-mba) - \[ListItemButton] Add support for CSS variables ([#&#8203;32582](https://github.com/mui/material-ui/issues/32582)) [@&#8203;dan-mba](https://github.com/dan-mba) - \[ListItemIcon] Add support for CSS variables ([#&#8203;32583](https://github.com/mui/material-ui/issues/32583)) [@&#8203;dan-mba](https://github.com/dan-mba) - \[ListSubheader] Add support for CSS variables ([#&#8203;32584](https://github.com/mui/material-ui/issues/32584)) [@&#8203;dan-mba](https://github.com/dan-mba) - \[MenuItem] Add support for CSS variables ([#&#8203;32561](https://github.com/mui/material-ui/issues/32561)) [@&#8203;nghiamvt](https://github.com/nghiamvt) - \[MobileStepper] Add support for CSS vars ([#&#8203;32606](https://github.com/mui/material-ui/issues/32606)) [@&#8203;haneenmahd](https://github.com/haneenmahd) - \[Modal] Add support for CSS variables ([#&#8203;32605](https://github.com/mui/material-ui/issues/32605)) [@&#8203;haneenmahd](https://github.com/haneenmahd) - \[PaginationItem] Add support for CSS vars ([#&#8203;32612](https://github.com/mui/material-ui/issues/32612)) [@&#8203;haneenmahd](https://github.com/haneenmahd) - \[Rating] Add support for CSS variables ([#&#8203;32556](https://github.com/mui/material-ui/issues/32556)) [@&#8203;vicasas](https://github.com/vicasas) - \[Snackbar] Add support for CSS variables ([#&#8203;32603](https://github.com/mui/material-ui/issues/32603)) [@&#8203;gin1314](https://github.com/gin1314) - \[SpeedDial] Add support for CSS variables ([#&#8203;32613](https://github.com/mui/material-ui/issues/32613)) [@&#8203;alisasanib](https://github.com/alisasanib) - \[Stepper] Export useStepperContext ([#&#8203;31398](https://github.com/mui/material-ui/issues/31398)) [@&#8203;pzi](https://github.com/pzi) - \[SvgIcon] Add support for CSS variables ([#&#8203;32610](https://github.com/mui/material-ui/issues/32610)) [@&#8203;vicasas](https://github.com/vicasas) - \[TablePagination] Add support for CSS variables ([#&#8203;32615](https://github.com/mui/material-ui/issues/32615)) [@&#8203;haneenmahd](https://github.com/haneenmahd) - \[TableSortLabel]: Add support for CSS vars ([#&#8203;32616](https://github.com/mui/material-ui/issues/32616)) [@&#8203;haneenmahd](https://github.com/haneenmahd) - \[Tabs] Add support for CSS variables ([#&#8203;32547](https://github.com/mui/material-ui/issues/32547)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[ToggleButton] Add support for CSS variables ([#&#8203;32600](https://github.com/mui/material-ui/issues/32600)) [@&#8203;Ariyapong](https://github.com/Ariyapong) - \[ToggleButtonGroup] Add support for CSS variables ([#&#8203;32617](https://github.com/mui/material-ui/issues/32617)) [@&#8203;haneenmahd](https://github.com/haneenmahd) - \[Tooltip] Add support for CSS variables ([#&#8203;32594](https://github.com/mui/material-ui/issues/32594)) [@&#8203;gin1314](https://github.com/gin1314) ##### `@mui/system@5.7.0` - \[System] Support CSS variables for iframes & custom nodes ([#&#8203;32496](https://github.com/mui/material-ui/issues/32496)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/base@5.0.0-alpha.80` - \[ButtonUnstyled] Fix keyboard navigation on customized elements ([#&#8203;32204](https://github.com/mui/material-ui/issues/32204)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/private-classnames@5.7.0` - \[classnames] Add new package for classnames utils ([#&#8203;32502](https://github.com/mui/material-ui/issues/32502)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### Docs - \[docs] Correct links to prevent 301 redirects ([#&#8203;32692](https://github.com/mui/material-ui/issues/32692)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[docs] Move, split, and revise "Unstyled components" page ([#&#8203;32562](https://github.com/mui/material-ui/issues/32562)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Nest `ListItemButton` in `ListItem` in the Drawer examples ([#&#8203;31987](https://github.com/mui/material-ui/issues/31987)) [@&#8203;stefanprobst](https://github.com/stefanprobst) - \[docs] Apply callouts in the Material UI docs ([#&#8203;32567](https://github.com/mui/material-ui/issues/32567)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Show product identifier on new X pages ([#&#8203;32657](https://github.com/mui/material-ui/issues/32657)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[docs] Fix copy button childNode not found ([#&#8203;32652](https://github.com/mui/material-ui/issues/32652)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Split install commands in isolated code blocks ([#&#8203;32566](https://github.com/mui/material-ui/issues/32566)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Base Switch style revisions and final review ([#&#8203;32376](https://github.com/mui/material-ui/issues/32376)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Adds Badge link to Base doc nav ([#&#8203;32619](https://github.com/mui/material-ui/issues/32619)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Base Installation style revisions and final review ([#&#8203;32483](https://github.com/mui/material-ui/issues/32483)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Fix broken redirection ([#&#8203;32581](https://github.com/mui/material-ui/issues/32581)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Allows to use `import '<library name>'` in demonstrations ([#&#8203;32492](https://github.com/mui/material-ui/issues/32492)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[docs] Hide copy button on search icon dialog ([#&#8203;32577](https://github.com/mui/material-ui/issues/32577)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Use full API link for ThemeProvider ([#&#8203;32549](https://github.com/mui/material-ui/issues/32549)) [@&#8203;jcvidiri](https://github.com/jcvidiri) - \[Joy] Add principles page ([#&#8203;32648](https://github.com/mui/material-ui/issues/32648)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add Button page ([#&#8203;32576](https://github.com/mui/material-ui/issues/32576)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add "Quick start" and "Tutorial" pages ([#&#8203;32383](https://github.com/mui/material-ui/issues/32383)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[website] Add store to the footer and "hiring" chip adjustment ([#&#8203;32650](https://github.com/mui/material-ui/issues/32650)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[website] Optimize conversion to store ([#&#8203;32646](https://github.com/mui/material-ui/issues/32646)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Remove copy button on marketing pages ([#&#8203;32649](https://github.com/mui/material-ui/issues/32649)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[website] Add missing space in copy label ([#&#8203;32638](https://github.com/mui/material-ui/issues/32638)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### Core - \[core] Security updates ([#&#8203;32636](https://github.com/mui/material-ui/issues/32636)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[core] Fix `docs:dev` not working after upgrading `next` to 12.1.0 ([#&#8203;32552](https://github.com/mui/material-ui/issues/32552)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[core] Update minimist to fix security vulnerability ([#&#8203;32575](https://github.com/mui/material-ui/issues/32575)) [@&#8203;michaldudak](https://github.com/michaldudak) All contributors of this release in alphabetical order: [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;alisasanib](https://github.com/alisasanib), [@&#8203;ameetmadan](https://github.com/ameetmadan), [@&#8203;Ariyapong](https://github.com/Ariyapong), [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;dan-mba](https://github.com/dan-mba), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;elliefoote](https://github.com/elliefoote), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;g1eny0ung](https://github.com/g1eny0ung), [@&#8203;gin1314](https://github.com/gin1314), [@&#8203;haneenmahd](https://github.com/haneenmahd), [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming), [@&#8203;Jamaalwbrown](https://github.com/Jamaalwbrown), [@&#8203;jcvidiri](https://github.com/jcvidiri), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mikepricedev](https://github.com/mikepricedev), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;nghiamvt](https://github.com/nghiamvt), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;pzi](https://github.com/pzi), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;stefanprobst](https://github.com/stefanprobst), [@&#8203;vicasas](https://github.com/vicasas), [@&#8203;vladjerca](https://github.com/vladjerca), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.6.4`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;564) [Compare Source](https://github.com/mui/material-ui/compare/v5.6.3...v5.6.4) <!-- generated comparing v5.6.3..master --> *May 2, 2022* A big thanks to the 13 contributors who made this release possible. Here are some highlights ✨: - 💅 5 Material UI components were updated to support CSS variables by [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) & [@&#8203;vicasas](https://github.com/vicasas) - And more 🐛 bug fixes and 📚 improvements. ##### `@mui/material@5.6.4` - ​<!-- 37 -->\[Accordion] Add support for CSS variables ([#&#8203;32542](https://github.com/mui/material-ui/issues/32542)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 36 -->\[AvatarGroup] Add support for CSS variables ([#&#8203;32507](https://github.com/mui/material-ui/issues/32507)) [@&#8203;vicasas](https://github.com/vicasas) - ​<!-- 35 -->\[Badge] Add support for CSS variables ([#&#8203;32516](https://github.com/mui/material-ui/issues/32516)) [@&#8203;vicasas](https://github.com/vicasas) - ​<!-- 34 -->\[BottomNavigation] Add support for CSS variables ([#&#8203;32517](https://github.com/mui/material-ui/issues/32517)) [@&#8203;vicasas](https://github.com/vicasas) - ​<!-- 33 -->\[CircularProgress] Add support for CSS variables ([#&#8203;32543](https://github.com/mui/material-ui/issues/32543)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 07 -->\[FilledInput] Fix type error from undefined `color` ([#&#8203;32258](https://github.com/mui/material-ui/issues/32258)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 02 -->\[l10n] Fix typo in csCZ translation of Pagination component ([#&#8203;32509](https://github.com/mui/material-ui/issues/32509)) [@&#8203;Martin005](https://github.com/Martin005) - ​<!-- 01 -->\[Tabs] Fix `TabIndicatorProps` prop missing `sx` prop ([#&#8203;32503](https://github.com/mui/material-ui/issues/32503)) [@&#8203;b-novikov-ipersonality](https://github.com/b-novikov-ipersonality) ##### `@mui/codemod@5.6.4` - ​<!-- 32 -->\[codemod] Leave numeric arguments to breakpoints functions unchanged ([#&#8203;32426](https://github.com/mui/material-ui/issues/32426)) [@&#8203;ryancogswell](https://github.com/ryancogswell) - ​<!-- 31 -->\[codemod] Allow for line breaks within theme.spacing parentheses ([#&#8203;32432](https://github.com/mui/material-ui/issues/32432)) [@&#8203;ryancogswell](https://github.com/ryancogswell) ##### `@mui/joy@5.0.0-alpha.26` - ​<!-- 06 -->\[Joy] Miscellaneous fixes ([#&#8203;32541](https://github.com/mui/material-ui/issues/32541)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 05 -->\[Joy] Add `extendSxProp` to Link ([#&#8203;32505](https://github.com/mui/material-ui/issues/32505)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 04 -->\[Joy] Rename variants ([#&#8203;32489](https://github.com/mui/material-ui/issues/32489)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 03 -->\[Joy] Add `extendTheme` ([#&#8203;32450](https://github.com/mui/material-ui/issues/32450)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 30 -->\[docs] SEO fixes ([#&#8203;32515](https://github.com/mui/material-ui/issues/32515)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 29 -->\[docs] Replace `Overriding nested component styles` anchor link with text ([#&#8203;32487](https://github.com/mui/material-ui/issues/32487)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 28 -->\[docs] Update the list of external domains ([#&#8203;32514](https://github.com/mui/material-ui/issues/32514)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 27 -->\[docs] Update Material UI code snippets for React 18 ([#&#8203;32361](https://github.com/mui/material-ui/issues/32361)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 26 -->\[docs] Base TextareaAutosize style revisions and final review ([#&#8203;32481](https://github.com/mui/material-ui/issues/32481)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 25 -->\[docs] Base ClickAwayListener style revisions and final review ([#&#8203;32156](https://github.com/mui/material-ui/issues/32156)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 24 -->\[docs] Base Button style revisions and final review ([#&#8203;32380](https://github.com/mui/material-ui/issues/32380)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 23 -->\[docs] Base NoSsr style revisions and final review ([#&#8203;32254](https://github.com/mui/material-ui/issues/32254)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 22 -->\[docs] Correctly capitalize Ctrl [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 21 -->\[docs] Fix styling in `Basic Popper` demo on the MUI Base docs ([#&#8203;32488](https://github.com/mui/material-ui/issues/32488)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 20 -->\[docs] Add "Overview" page to Base docs ([#&#8203;32310](https://github.com/mui/material-ui/issues/32310)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 19 -->\[docs] Add copy button to code block ([#&#8203;32390](https://github.com/mui/material-ui/issues/32390)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 18 -->\[docs] Base Tabs style revisions and final review ([#&#8203;32423](https://github.com/mui/material-ui/issues/32423)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 17 -->\[docs] Base Popper style revisions and final review ([#&#8203;32412](https://github.com/mui/material-ui/issues/32412)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 16 -->\[docs] Improve sidenav for MUI X ([#&#8203;32435](https://github.com/mui/material-ui/issues/32435)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 15 -->\[docs] Don't redirect on deploy preview ([#&#8203;32399](https://github.com/mui/material-ui/issues/32399)) [@&#8203;m4theushw](https://github.com/m4theushw) - ​<!-- 14 -->\[docs] A few SEO fixes ([#&#8203;32431](https://github.com/mui/material-ui/issues/32431)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 13 -->\[docs] Update links to the new Group & Pivot pages ([#&#8203;32410](https://github.com/mui/material-ui/issues/32410)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - ​<!-- 12 -->\[docs] Support callouts ([#&#8203;32402](https://github.com/mui/material-ui/issues/32402)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 11 -->\[docs] Fix import path in the Snackbar article [#&#8203;32462](https://github.com/mui/material-ui/issues/32462) [@&#8203;mongolyy](https://github.com/mongolyy) - ​<!-- 10 -->\[docs] Fix grammar mistake in shadows.md ([#&#8203;32454](https://github.com/mui/material-ui/issues/32454)) [@&#8203;HexM7](https://github.com/HexM7) - ​<!-- 09 -->\[docs] Improve unstyled button docs ([#&#8203;32429](https://github.com/mui/material-ui/issues/32429)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 08 -->\[experiment] Add template for testing Material UI components with CSS variables ([#&#8203;32500](https://github.com/mui/material-ui/issues/32500)) [@&#8203;siriwatknp](https://github.com/siriwatknp) All contributors of this release in alphabetical order: [@&#8203;b-novikov-ipersonality](https://github.com/b-novikov-ipersonality), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;HexM7](https://github.com/HexM7), [@&#8203;m4theushw](https://github.com/m4theushw), [@&#8203;Martin005](https://github.com/Martin005), [@&#8203;mongolyy](https://github.com/mongolyy), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;ryancogswell](https://github.com/ryancogswell), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;vicasas](https://github.com/vicasas), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.6.3`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;563) [Compare Source](https://github.com/mui/material-ui/compare/v5.6.2...v5.6.3) <!-- generated comparing v5.6.2..master --> *Apr 25, 2022* A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨: - 🛠 Fixed TypeScript issue when the `fill` CSS property is used in the system ([#&#8203;32355](https://github.com/mui/material-ui/issues/32355)) [@&#8203;valerii15298](https://github.com/valerii15298) - And more 🐛 bug fixes and 📚 improvements. ##### `@mui/material@5.6.3` - \[BottomNavigation] Action icon `padding` fix ([#&#8203;32030](https://github.com/mui/material-ui/issues/32030)) [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech) - \[Dialog] Fix `component` prop is not available in `DialogTitleProps` ([#&#8203;32389](https://github.com/mui/material-ui/issues/32389)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[StepContent] Fix TypeScript type of `TransitionComponent` prop ([#&#8203;32314](https://github.com/mui/material-ui/issues/32314)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/system@5.6.3` - \[system] Fix prop types when the `fill` CSS property is used ([#&#8203;32355](https://github.com/mui/material-ui/issues/32355)) [@&#8203;valerii15298](https://github.com/valerii15298) - \[system] Fix broken behavior when theme value is `zero` ([#&#8203;32365](https://github.com/mui/material-ui/issues/32365)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/base@5.0.0-alpha.78` - \[InputUnstyled] `multiline` property should not log DOM warnings for `maxRows` and `minRows` props ([#&#8203;32401](https://github.com/mui/material-ui/issues/32401)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/joy@5.0.0-alpha.25` - \[Joy] Improve theme focus to be more flexible ([#&#8203;32405](https://github.com/mui/material-ui/issues/32405)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add `Radio`, `RadioGroup` components ([#&#8203;32279](https://github.com/mui/material-ui/issues/32279)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add `Chip` component ([#&#8203;31983](https://github.com/mui/material-ui/issues/31983)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[Joy] Improve controls ([#&#8203;32267](https://github.com/mui/material-ui/issues/32267)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Set up docs ([#&#8203;32370](https://github.com/mui/material-ui/issues/32370)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - \[docs] Enable row reordering on the pricing page ([#&#8203;31875](https://github.com/mui/material-ui/issues/31875)) [@&#8203;DanailH](https://github.com/DanailH) - \[blog] A few improvements on date picker change ([#&#8203;32325](https://github.com/mui/material-ui/issues/32325)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Emphasize how to avoid failing tests when migrating from v4 to v5 ([#&#8203;32159](https://github.com/mui/material-ui/issues/32159)) [@&#8203;dwjohnston](https://github.com/dwjohnston) - \[docs] Revise the related projects page ([#&#8203;32180](https://github.com/mui/material-ui/issues/32180)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Cleanup remaining [@&#8203;mui/styles](https://github.com/mui/styles) usages ([#&#8203;32313](https://github.com/mui/material-ui/issues/32313)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Fix sidenav mobile color ([#&#8203;32324](https://github.com/mui/material-ui/issues/32324)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Base TrapFocus style revisions and final review ([#&#8203;32364](https://github.com/mui/material-ui/issues/32364)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Update the README.md to better cover the different products ([#&#8203;32360](https://github.com/mui/material-ui/issues/32360)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Improve the propTypes generation and API demos' links ([#&#8203;32295](https://github.com/mui/material-ui/issues/32295)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Add ability to display a plan icon next to a page link in nav bar ([#&#8203;32393](https://github.com/mui/material-ui/issues/32393)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[docs] Change label on `FormControlLabelPlacement` ([#&#8203;32322](https://github.com/mui/material-ui/issues/32322)) [@&#8203;ainatenhi](https://github.com/ainatenhi) - \[website] Update Diamond sponsors list ([#&#8203;32433](https://github.com/mui/material-ui/issues/32433)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Add privacy policy link to website's footer ([#&#8203;32080](https://github.com/mui/material-ui/issues/32080)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[website] Remove the designer role ([#&#8203;32384](https://github.com/mui/material-ui/issues/32384)) [@&#8203;danilo-leal](https://github.com/danilo-leal) ##### Core - \[core] `yarn prettier` write [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Fix changelog warning message ([#&#8203;32240](https://github.com/mui/material-ui/issues/32240)) [@&#8203;praveen001](https://github.com/praveen001) - \[core] Update the proptypes scripts to support components in [@&#8203;mui/system](https://github.com/mui/system) ([#&#8203;32456](https://github.com/mui/material-ui/issues/32456)) [@&#8203;mnajdova](https://github.com/mnajdova) All contributors of this release in alphabetical order: [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech), [@&#8203;ainatenhi](https://github.com/ainatenhi), [@&#8203;DanailH](https://github.com/DanailH), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;dwjohnston](https://github.com/dwjohnston), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;praveen001](https://github.com/praveen001), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;valerii15298](https://github.com/valerii15298), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.6.2`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;562) [Compare Source](https://github.com/mui/material-ui/compare/v5.6.1...v5.6.2) <!-- generated comparing v5.6.1..master --> *Apr 18, 2022* A big thanks to the 11 contributors who made this release possible. This release is mostly about 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.6.2` - ​<!-- 29 -->\[Autocomplete] Explain how to use getOptionLabel in free solo mode and update getOptionLabel type ([#&#8203;32165](https://github.com/mui/material-ui/issues/32165)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 28 -->\[Badge] Fix customization of classes ([#&#8203;32185](https://github.com/mui/material-ui/issues/32185)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 03 -->\[TextField] Add a workaround for Safari CSS transition scale bug ([#&#8203;32188](https://github.com/mui/material-ui/issues/32188)) [@&#8203;igordanchenko](https://github.com/igordanchenko) ##### `@mui/system@5.6.2` - ​<!-- 05 -->\[system] Update style function to use vars automatically if available ([#&#8203;32244](https://github.com/mui/material-ui/issues/32244)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/base@5.0.0-alpha.77` - ​<!-- 08 -->\[FormControlUnstyled] Revise API ([#&#8203;32134](https://github.com/mui/material-ui/issues/32134)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.24` - ​<!-- 07 -->\[Joy] Add `Badge` component ([#&#8203;31401](https://github.com/mui/material-ui/issues/31401)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 06 -->\[Joy] Fix misuse variable in `Input` ([#&#8203;32268](https://github.com/mui/material-ui/issues/32268)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 27 -->\[blog] Fix images for the docs separation post ([#&#8203;32257](https://github.com/mui/material-ui/issues/32257)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 25 -->\[docs] Base Form Control style revisions and final review ([#&#8203;32309](https://github.com/mui/material-ui/issues/32309)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 24 -->\[docs] Base TablePagination style revisions and final review ([#&#8203;32178](https://github.com/mui/material-ui/issues/32178)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 23 -->\[docs] Revise the dark mode article ([#&#8203;32179](https://github.com/mui/material-ui/issues/32179)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 22 -->\[docs] Add `aria-label` for `IconButton` ([#&#8203;32276](https://github.com/mui/material-ui/issues/32276)) [@&#8203;SiarheiBobryk](https://github.com/SiarheiBobryk) - ​<!-- 21 -->\[docs] Fix `borderRadius` in the docs example ([#&#8203;32347](https://github.com/mui/material-ui/issues/32347)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 20 -->\[docs] Fix 404 link in the code ([#&#8203;32323](https://github.com/mui/material-ui/issues/32323)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 19 -->\[docs] Sync h1 with side nav label ([#&#8203;32235](https://github.com/mui/material-ui/issues/32235)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 18 -->\[docs] Fix SEO issues ([#&#8203;32282](https://github.com/mui/material-ui/issues/32282)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 17 -->\[docs] Fix broken link in the test contributing guide ([#&#8203;32283](https://github.com/mui/material-ui/issues/32283)) [@&#8203;sirartemis](https://github.com/sirartemis) - ​<!-- 16 -->\[docs] Update "How to customize" page anchor links [#&#8203;32315](https://github.com/mui/material-ui/issues/32315) [@&#8203;abaker93](https://github.com/abaker93) - ​<!-- 15 -->\[docs] Mark `onBackdropClick` prop as deprecated in `Dialog`, `Modal` and `ModalUnstyled` components ([#&#8203;32297](https://github.com/mui/material-ui/issues/32297)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 14 -->\[docs] Link to advanced components page ([#&#8203;32290](https://github.com/mui/material-ui/issues/32290)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 13 -->\[docs] Sync package description with the docs ([#&#8203;32211](https://github.com/mui/material-ui/issues/32211)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 12 -->\[docs] Revise "Component theming" and "How to customize" guides ([#&#8203;31997](https://github.com/mui/material-ui/issues/31997)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 11 -->\[docs] Add note in the Contributing guide about linking issues to a PR ([#&#8203;32174](https://github.com/mui/material-ui/issues/32174)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 10 -->\[docs] Update RTL guide ([#&#8203;32242](https://github.com/mui/material-ui/issues/32242)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 09 -->\[docs] Uniformize capitalization ([#&#8203;32238](https://github.com/mui/material-ui/issues/32238)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 02 -->\[website] Improve new role template [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 01 -->\[website] Remove a gold sponsor ([#&#8203;32261](https://github.com/mui/material-ui/issues/32261)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 24 -->\[website] Mark DataGrid Column spanning done on Pricing page ([#&#8203;32305](https://github.com/mui/material-ui/issues/32305)) [@&#8203;cherniavskii](https://github.com/cherniavskii) ##### Core - ​<!-- 31 -->\[core] Remove unecessary div ([#&#8203;32237](https://github.com/mui/material-ui/issues/32237)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 30 -->\[core] Revert [#&#8203;32229](https://github.com/mui/material-ui/issues/32229) ([#&#8203;32262](https://github.com/mui/material-ui/issues/32262)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 04 -->\[test] Fix running unit tests on Windows ([#&#8203;32260](https://github.com/mui/material-ui/issues/32260)) [@&#8203;michaldudak](https://github.com/michaldudak) All contributors of this release in alphabetical order: [@&#8203;abaker93](https://github.com/abaker93), [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;igordanchenko](https://github.com/igordanchenko), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;SiarheiBobryk](https://github.com/SiarheiBobryk), [@&#8203;sirartemis](https://github.com/sirartemis), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.6.1`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;561) [Compare Source](https://github.com/mui/material-ui/compare/v5.6.0...v5.6.1) <!-- generated comparing v5.6.0..master --> *Apr 11, 2022* A big thanks to the 8 contributors who made this release possible. This release is mostly about 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.6.1` - \[Grow] Extend Safari CSS transition bug workaround on WebKit browsers ([#&#8203;32202](https://github.com/mui/material-ui/issues/32202)) [@&#8203;igordanchenko](https://github.com/igordanchenko) - \[Link] Fix style overrides 5.6.0 regression ([#&#8203;32182](https://github.com/mui/material-ui/issues/32182)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Select] Bug when the first child is a ListSubheader ([#&#8203;27299](https://github.com/mui/material-ui/issues/27299)) [@&#8203;DouglasPds](https://github.com/DouglasPds) ##### `@mui/base@5.0.0-alpha.76` - \[ButtonUnstyled] Allow receiving focus when disabled ([#&#8203;32090](https://github.com/mui/material-ui/issues/32090)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Docs - \[blog] Share what's changed about the new docs structure ([#&#8203;32044](https://github.com/mui/material-ui/issues/32044)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Format number icons search ([#&#8203;32239](https://github.com/mui/material-ui/issues/32239)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix small external links issue ([#&#8203;32212](https://github.com/mui/material-ui/issues/32212)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Make sidenav crawlable ([#&#8203;32241](https://github.com/mui/material-ui/issues/32241)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Base Badge style revisions and final review ([#&#8203;32098](https://github.com/mui/material-ui/issues/32098)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[docs] Fix wrong url ([#&#8203;32208](https://github.com/mui/material-ui/issues/32208)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix date-pickers redirects ([#&#8203;32207](https://github.com/mui/material-ui/issues/32207)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Add notification for the doc restructure and date pickers update ([#&#8203;32195](https://github.com/mui/material-ui/issues/32195)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix 404 from `ahrefs` report ([#&#8203;32206](https://github.com/mui/material-ui/issues/32206)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Remove notifications temporary ([#&#8203;32192](https://github.com/mui/material-ui/issues/32192)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Redirect to new urls ([#&#8203;32048](https://github.com/mui/material-ui/issues/32048)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Update Learn page copy and resource list ([#&#8203;31989](https://github.com/mui/material-ui/issues/31989)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[website] Fix wrong MUI X installation instruction link [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Revise homepage copy below the hero section ([#&#8203;31283](https://github.com/mui/material-ui/issues/31283)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[website] Revise homepage Hero copy for more clarity ([#&#8203;31212](https://github.com/mui/material-ui/issues/31212)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - \[website] Give up on promoting roles in our docs [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - \[core] Fix misleading types range ([#&#8203;32236](https://github.com/mui/material-ui/issues/32236)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Small polish on the product name ([#&#8203;32199](https://github.com/mui/material-ui/issues/32199)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;DouglasPds](https://github.com/DouglasPds), [@&#8203;igordanchenko](https://github.com/igordanchenko), [@&#8203;l10nbot](https://github.com/l10nbot), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp) ### [`v5.6.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;560) [Compare Source](https://github.com/mui/material-ui/compare/v5.5.3...v5.6.0) <!-- generated comparing v5.5.3..master --> *Apr 5, 2022* A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨: - 🧰 Update peer dependencies to support React 18 ([#&#8203;32063](https://github.com/mui/material-ui/issues/32063)) [@&#8203;eps1lon](https://github.com/eps1lon) - 🚀 Added the experimental `CssVarsProvider` in `@mui/material` for generating theme CSS variables ([#&#8203;31138](https://github.com/mui/material-ui/issues/31138)) [@&#8203;mnajdova](https://github.com/mnajdova) - 📣 Moved date and time pickers from the lab to MUI X ([#&#8203;31984](https://github.com/mui/material-ui/issues/31984)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - Several 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.6.0` - ​<!-- 25 -->\[CssVarsProvider] Add experimental CssVarsProvider in [@&#8203;mui/material](https://github.com/mui/material) ([#&#8203;31138](https://github.com/mui/material-ui/issues/31138)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 06 -->\[Link] Fix `sx` color to support callback ([#&#8203;32123](https://github.com/mui/material-ui/issues/32123)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 05 -->\[Link] Fix color transformation ([#&#8203;32045](https://github.com/mui/material-ui/issues/32045)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 04 -->\[ListItemButton] Specified width so that text would ellide ([#&#8203;32083](https://github.com/mui/material-ui/issues/32083)) [@&#8203;MatthijsMud](https://github.com/MatthijsMud) - ​<!-- 03 -->\[TablePagination] Fixed the etEE locale ([#&#8203;32052](https://github.com/mui/material-ui/issues/32052)) [@&#8203;raigoinabox](https://github.com/raigoinabox) ##### `@mui/base@5.0.0-alpha.75` - ​<!-- 31 -->\[Badge] Simplify unstyled API ([#&#8203;31974](https://github.com/mui/material-ui/issues/31974)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/codemod@5.6.0` - ​<!-- 29 -->\[codemod] Add v5.0.0/date-pickers-moved-to-x codemod ([#&#8203;31373](https://github.com/mui/material-ui/issues/31373)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### `@mui/lab@5.0.0-alpha.76` - ​<!-- 24 -->\[DatePicker] Remove date and time pickers from the lab ([#&#8203;31984](https://github.com/mui/material-ui/issues/31984)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### `@mui/joy@5.0.0-alpha.22` - ​<!-- 07 -->\[Joy] Add `Card` components ([#&#8203;32027](https://github.com/mui/material-ui/issues/32027)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 30 -->\[blog] New article for the date pickers migration to X ([#&#8203;31831](https://github.com/mui/material-ui/issues/31831)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - ​<!-- 33 -->\[docs] Base Menu style revisions and final review ([#&#8203;32097](https://github.com/mui/material-ui/issues/32097)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 32 -->\[docs] Base Select style revisions and final review ([#&#8203;32095](https://github.com/mui/material-ui/issues/32095)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 31 -->\[docs] Base Input style revisions and final review ([#&#8203;32096](https://github.com/mui/material-ui/issues/32096)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 30 -->\[docs] Base Slider style revisions and final review ([#&#8203;32140](https://github.com/mui/material-ui/issues/32140)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 29 -->\[docs] Base Modal style revisions and final review ([#&#8203;32093](https://github.com/mui/material-ui/issues/32093)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 28 -->\[docs] Add page for CSS variables support in [@&#8203;mui/material](https://github.com/mui/material) ([#&#8203;32050](https://github.com/mui/material-ui/issues/32050)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 27 -->\[docs] Add TSS support for theme style overrides ([#&#8203;31918](https://github.com/mui/material-ui/issues/31918)) [@&#8203;garronej](https://github.com/garronej) - ​<!-- 23 -->\[docs] Simplify customization examples in ButtonUnstyled demos ([#&#8203;32092](https://github.com/mui/material-ui/issues/32092)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 22 -->\[docs] Fix linking issues for the redirects ([#&#8203;32101](https://github.com/mui/material-ui/issues/32101)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 21 -->\[docs] Create the FormControl page ([#&#8203;32073](https://github.com/mui/material-ui/issues/32073)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 20 -->\[docs] Remove trap-focus from the navigation ([#&#8203;32079](https://github.com/mui/material-ui/issues/32079)) [@&#8203;psjishnu](https://github.com/psjishnu) - ​<!-- 19 -->\[docs] Add date-pickers product identifier ([#&#8203;32076](https://github.com/mui/material-ui/issues/32076)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 18 -->\[docs] Move SwitchUnstyled docs to the Base space ([#&#8203;31964](https://github.com/mui/material-ui/issues/31964)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 17 -->\[docs] Add docs page for unstyled popper ([#&#8203;31813](https://github.com/mui/material-ui/issues/31813)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 16 -->\[docs] Copy TextareaAutosize docs to Base ([#&#8203;32034](https://github.com/mui/material-ui/issues/32034)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 15 -->\[docs] Add react-hook-form-mui to Complementary projects [#&#8203;32015](https://github.com/mui/material-ui/issues/32015) [@&#8203;TkaczykAdam](https://github.com/TkaczykAdam) - ​<!-- 14 -->\[docs] Improve the translation experience ([#&#8203;32021](https://github.com/mui/material-ui/issues/32021)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 13 -->\[docs] Add small size Select demo ([#&#8203;32060](https://github.com/mui/material-ui/issues/32060)) [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming) - ​<!-- 12 -->\[docs] Correct typos ([#&#8203;32029](https://github.com/mui/material-ui/issues/32029)) [@&#8203;apeltop](https://github.com/apeltop) - ​<!-- 11 -->\[docs] Create SliderUnstyled docs ([#&#8203;31850](https://github.com/mui/material-ui/issues/31850)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 10 -->\[docs] Create TablePaginationUnstyled docs ([#&#8203;32018](https://github.com/mui/material-ui/issues/32018)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 09 -->\[docs] Move SelectUnstyled docs to the Base space ([#&#8203;31816](https://github.com/mui/material-ui/issues/31816)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 08 -->\[docs] Create the TabsUnstyled docs ([#&#8203;32023](https://github.com/mui/material-ui/issues/32023)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 02 -->\[website] The studio finally has a name, use it ([#&#8203;32105](https://github.com/mui/material-ui/issues/32105)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 01 -->\[website] Disable job ad [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 28 -->\[core] Update peer deps to support React 18 ([#&#8203;32063](https://github.com/mui/material-ui/issues/32063)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 27 -->\[core] Fix running docs:api on Windows ([#&#8203;32091](https://github.com/mui/material-ui/issues/32091)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 26 -->\[core] Fix api build script for MUI Base ([#&#8203;32081](https://github.com/mui/material-ui/issues/32081)) [@&#8203;siriwatknp](https://github.com/siriwatknp) All contributors of this release in alphabetical order: [@&#8203;apeltop](https://github.com/apeltop), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;garronej](https://github.com/garronej), [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming), [@&#8203;m4theushw](https://github.com/m4theushw), [@&#8203;MatthijsMud](https://github.com/MatthijsMud), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;psjishnu](https://github.com/psjishnu), [@&#8203;raigoinabox](https://github.com/raigoinabox), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;TkaczykAdam](https://github.com/TkaczykAdam) ### [`v5.5.3`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;553) [Compare Source](https://github.com/mui/material-ui/compare/v5.5.2...v5.5.3) <!-- generated comparing v5.5.2..master --> *Mar 28, 2022* A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨: - ♿️ improved the a11y on some docs demos - Several 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.5.3` - ​<!-- 32 -->\[ButtonBase] Start ripple only after mount ([#&#8203;31950](https://github.com/mui/material-ui/issues/31950)) [@&#8203;m4theushw](https://github.com/m4theushw) - ​<!-- 11 -->\[FormControlLabel] Fix label prop type to be in-line with other label prop types ([#&#8203;31139](https://github.com/mui/material-ui/issues/31139)) [@&#8203;jannes-io](https://github.com/jannes-io) - ​<!-- 10 -->\[Grow] Add a workaround for Safari 15.4 CSS transition bug ([#&#8203;31975](https://github.com/mui/material-ui/issues/31975)) [@&#8203;igordanchenko](https://github.com/igordanchenko) ##### `@mui/codemod@5.5.3` - ​<!-- 31 -->\[codemod] Fix variant prop placement ([#&#8203;31990](https://github.com/mui/material-ui/issues/31990)) [@&#8203;ryancogswell](https://github.com/ryancogswell) ##### `@mui/utils@5.5.3` - ​<!-- 02 -->\[utils] Improve type inference of useForkRef ([#&#8203;31845](https://github.com/mui/material-ui/issues/31845)) [@&#8203;eps1lon](https://github.com/eps1lon) ##### `@mui/base@5.0.0-alpha.74` ##### Breaking changes - ​<!-- 34 -->\[base] Remove `BackdropUnstyled` component ([#&#8203;31923](https://github.com/mui/material-ui/issues/31923)) [@&#8203;mnajdova](https://github.com/mnajdova) The `BackdropUnstyled` component was removed from the `@mui/base` package, as it did not have any specific logic, except adding an `aria-hidden` attribute on the div it rendered. This is not enough to justify it's existence in the base package. Here is an example alternative component you can use: ```tsx const BackdropUnstyled = React.forwardRef<HTMLDivElement, { open?: boolean; className: string }>( (props, ref) => { const { open, className, ...other } = props; return <div className={clsx({ 'MuiBackdrop-open': open }, className)} ref={ref} {...other} />; }, ); ``` - ​<!-- 03 -->\[TrapFocus] Move docs to Base and drop the Unstyled prefix ([#&#8203;31954](https://github.com/mui/material-ui/issues/31954)) [@&#8203;michaldudak](https://github.com/michaldudak) Removed the `Unstyled_` prefix from the Base export (it remains in the Material UI export, though). ```diff -import { Unstyled_TrapFocus } from '@&#8203;mui/base'; +import { TrapFocus } from '@&#8203;mui/base'; // or -import TrapFocus from '@&#8203;mui/base/Unstyled_TrapFocus'; +import TrapFocus from '@&#8203;mui/base/TrapFocus'; ``` ##### Changes - ​<!-- 33 -->\[base] Add [@&#8203;mui/types](https://github.com/mui/types) to dependencies ([#&#8203;31951](https://github.com/mui/material-ui/issues/31951)) [@&#8203;bicstone](https://github.com/bicstone) ##### `@mui/joy@5.0.0-alpha.21` - ​<!-- 09 -->\[Joy] Add `AvatarGroup` component ([#&#8203;31980](https://github.com/mui/material-ui/issues/31980)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 07 -->\[Joy] Miscellaneous fixes ([#&#8203;31873](https://github.com/mui/material-ui/issues/31873)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 08 -->\[Joy] Miscellaneous fixes 2 ([#&#8203;31971](https://github.com/mui/material-ui/issues/31971)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 27 -->\[docs] Improve the a11y on the hover rating demo ([#&#8203;31970](https://github.com/mui/material-ui/issues/31970)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 26 -->\[docs] Improve a11y on the `SplitButton` demo ([#&#8203;31969](https://github.com/mui/material-ui/issues/31969)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 25 -->\[docs] Improve the color description in the API pages ([#&#8203;30976](https://github.com/mui/material-ui/issues/30976)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 24 -->\[docs] Add docs page for unstyled Modal ([#&#8203;31417](https://github.com/mui/material-ui/issues/31417)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 23 -->\[docs] Add InputUnstyled docs ([#&#8203;31881](https://github.com/mui/material-ui/issues/31881)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 22 -->\[docs] Remove "Work in biotech" from the showcase ([#&#8203;31942](https://github.com/mui/material-ui/issues/31942)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 21 -->\[docs] Fix in-house ad for the design kits ([#&#8203;31965](https://github.com/mui/material-ui/issues/31965)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 20 -->\[docs] Fix the documentation for filterOptions in Autocomplete API page ([#&#8203;31416](https://github.com/mui/material-ui/issues/31416)) [@&#8203;santhoshbala0178](https://github.com/santhoshbala0178) - ​<!-- 19 -->\[docs] Update href for 'TypeScript guide on theme customization' ([#&#8203;31880](https://github.com/mui/material-ui/issues/31880)) [@&#8203;NickFoden](https://github.com/NickFoden) - ​<!-- 18 -->\[docs] Fix the CSS modules example in the Interoperability page ([#&#8203;31935](https://github.com/mui/material-ui/issues/31935)) [@&#8203;WilsonNet](https://github.com/WilsonNet) - ​<!-- 17 -->\[docs] Fix small typo in the `styled()` utility page ([#&#8203;31967](https://github.com/mui/material-ui/issues/31967)) [@&#8203;jason1985](https://github.com/jason1985) - ​<!-- 16 -->\[docs] Update mui-x on material-ui navigation ([#&#8203;31810](https://github.com/mui/material-ui/issues/31810)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 15 -->\[docs] Copy ClickAwayListener docs to Base ([#&#8203;31878](https://github.com/mui/material-ui/issues/31878)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 14 -->\[docs] Refine the redirects ([#&#8203;31939](https://github.com/mui/material-ui/issues/31939)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 13 -->\[docs] Fix TOC layout for large screen ([#&#8203;31953](https://github.com/mui/material-ui/issues/31953)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 12 -->\[examples] Update remix example to not use NODE_ENV guard for `LiveReload` ([#&#8203;31269](https://github.com/mui/material-ui/issues/31269)) [@&#8203;eswarclynn](https://github.com/eswarclynn) - ​<!-- 06 -->\[NoSsr] Copy docs to the Base space ([#&#8203;31956](https://github.com/mui/material-ui/issues/31956)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 05 -->\[Portal] Copy Portal docs to the Base space ([#&#8203;31959](https://github.com/mui/material-ui/issues/31959)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 01 -->\[website] Remove X-Frame-Options [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 35 -->Revert "\[website] Remove X-Frame-Options" [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 30 -->\[core] Fixes error in changelog generator for item sorting/padding ([#&#8203;30088](https://github.com/mui/material-ui/issues/30088)) [@&#8203;dimitropoulos](https://github.com/dimitropoulos) - ​<!-- 29 -->\[core] Fix typo in issue template [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 28 -->\[core] Replace deprecated String.prototype.substr() ([#&#8203;31806](https://github.com/mui/material-ui/issues/31806)) [@&#8203;CommanderRoot](https://github.com/CommanderRoot) - ​<!-- 04 -->\[test] Add tests for component using `StandardProps` and polymorphic components ([#&#8203;31945](https://github.com/mui/material-ui/issues/31945)) [@&#8203;mnajdova](https://github.com/mnajdova) All contributors of this release in alphabetical order: [@&#8203;bicstone](https://github.com/bicstone), [@&#8203;CommanderRoot](https://github.com/CommanderRoot), [@&#8203;dimitropoulos](https://github.com/dimitropoulos), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;eswarclynn](https://github.com/eswarclynn), [@&#8203;igordanchenko](https://github.com/igordanchenko), [@&#8203;jannes-io](https://github.com/jannes-io), [@&#8203;jason1985](https://github.com/jason1985), [@&#8203;m4theushw](https://github.com/m4theushw), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;NickFoden](https://github.com/NickFoden), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;ryancogswell](https://github.com/ryancogswell), [@&#8203;santhoshbala0178](https://github.com/santhoshbala0178), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;WilsonNet](https://github.com/WilsonNet) ### [`v5.5.2`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;552) [Compare Source](https://github.com/mui/material-ui/compare/v5.5.1...v5.5.2) <!-- generated comparing v5.5.1..master --> *Mar 21, 2022* A big thanks to the 7 contributors who made this release possible. This is a small release focused on some 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.5.2` - ​<!-- 04 -->\[Popper] Expose the `sx` prop ([#&#8203;31833](https://github.com/mui/material-ui/issues/31833)) [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming) ##### `@mui/joy@5.0.0-alpha.20` - ​<!-- 06 -->\[Joy] Add default color to `Input` and `ListItemButton` ([#&#8203;31826](https://github.com/mui/material-ui/issues/31826)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 05 -->\[Joy] Add Avatar component ([#&#8203;31303](https://github.com/mui/material-ui/issues/31303)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/base@5.0.0-alpha.73` - ​<!-- 03 -->\[SliderUnstyled] Fix dragging on disabled sliders ([#&#8203;31882](https://github.com/mui/material-ui/issues/31882)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/styled-engine-sc@5.5.2` - ​<!-- 02 -->\[styled-engine-sc] GlobalStylesProps inconsistent between the different packages ([#&#8203;31814](https://github.com/mui/material-ui/issues/31814)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### Docs - ​<!-- 15 -->\[data-grid] Fix print export feature ([#&#8203;31807](https://github.com/mui/material-ui/issues/31807)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 14 -->\[docs] Move BadgeUnstyled docs to Base space ([#&#8203;31872](https://github.com/mui/material-ui/issues/31872)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 13 -->\[docs] Solve duplication of content ([#&#8203;31917](https://github.com/mui/material-ui/issues/31917)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 12 -->\[docs] Fix side nav capitalization of API ([#&#8203;31916](https://github.com/mui/material-ui/issues/31916)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 11 -->\[docs] Use TypeScript demos by default ([#&#8203;31808](https://github.com/mui/material-ui/issues/31808)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 10 -->\[docs] New search experience for multiple products ([#&#8203;31811](https://github.com/mui/material-ui/issues/31811)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 09 -->\[docs] Make LTS searchable ([#&#8203;31804](https://github.com/mui/material-ui/issues/31804)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 08 -->\[docs] Fix demo filename on zh markdown ([#&#8203;31790](https://github.com/mui/material-ui/issues/31790)) [@&#8203;nnmax](https://github.com/nnmax) - ​<!-- 01 -->\[website] Highlight the date picker ([#&#8203;31889](https://github.com/mui/material-ui/issues/31889)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 07 -->\[core] Add tests for Avatar component ([#&#8203;31829](https://github.com/mui/material-ui/issues/31829)) [@&#8203;hbjORbj](https://github.com/hbjORbj) All contributors of this release in alphabetical order: [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;ivan-ngchakming](https://github.com/ivan-ngchakming), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;nnmax](https://github.com/nnmax), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;siriwatknp](https://github.com/siriwatknp) ### [`v5.5.1`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;551) [Compare Source](https://github.com/mui/material-ui/compare/v5.5.0...v5.5.1) <!-- generated comparing v5.5.0..master --> *Mar 14, 2022* A big thanks to the 23 contributors who made this release possible. Here are some highlights ✨: - 📊 2021 survey results post by [@&#8203;danilo-leal](https://github.com/danilo-leal) ([#&#8203;30999](https://github.com/mui/material-ui/issues/30999)) - Several 🐛 bug fixes and 📚 documentation improvements ##### [@&#8203;mui/material](https://github.com/mui/material)[@&#8203;5](https://github.com/5).5.1 - \[Fab] Add z-index ([#&#8203;30842](https://github.com/mui/material-ui/issues/30842)) [@&#8203;issamElmohadeb098](https://github.com/issamElmohadeb098) - \[Grid] Fix columns of nested container ([#&#8203;31340](https://github.com/mui/material-ui/issues/31340)) [@&#8203;boutahlilsoufiane](https://github.com/boutahlilsoufiane) - \[i10n] Update italian locale ([#&#8203;30974](https://github.com/mui/material-ui/issues/30974)) [@&#8203;SalvatoreMazzullo](https://github.com/SalvatoreMazzullo) - \[Pagination] Fix type of UsePaginationItem\["page"] ([#&#8203;31295](https://github.com/mui/material-ui/issues/31295)) [@&#8203;aaronadamsCA](https://github.com/aaronadamsCA) - \[Popper] Allow setting default props in a theme ([#&#8203;30118](https://github.com/mui/material-ui/issues/30118)) [@&#8203;hafley66](https://github.com/hafley66) - \[TextField] fix disappearing border in Safari ([#&#8203;31406](https://github.com/mui/material-ui/issues/31406)) [@&#8203;krysia1](https://github.com/krysia1) ##### [@&#8203;mui/joy](https://github.com/mui/joy)[@&#8203;5](https://github.com/5).0.0-alpha.19 - \[Joy] Support horizontal List ([#&#8203;31620](https://github.com/mui/material-ui/issues/31620)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add icon & label `Switch` examples ([#&#8203;31359](https://github.com/mui/material-ui/issues/31359)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add `TextField` component ([#&#8203;31299](https://github.com/mui/material-ui/issues/31299)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add `--Icon-fontSize` to components ([#&#8203;31360](https://github.com/mui/material-ui/issues/31360)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Add `Checkbox` component ([#&#8203;31273](https://github.com/mui/material-ui/issues/31273)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - \[blog] 2021 survey results post ([#&#8203;30999](https://github.com/mui/material-ui/issues/30999)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Add Macedonian translation ([#&#8203;31402](https://github.com/mui/material-ui/issues/31402)) [@&#8203;theCuriousOne](https://github.com/theCuriousOne) - \[docs] Fix API page table styles in Safari ([#&#8203;31696](https://github.com/mui/material-ui/issues/31696)) [@&#8203;aaarichter](https://github.com/aaarichter) - \[docs] Fix SEO issues ([#&#8203;31505](https://github.com/mui/material-ui/issues/31505)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix Link leak of Next.js props ([#&#8203;31418](https://github.com/mui/material-ui/issues/31418)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Add "Work in biotech" to showcase ([#&#8203;31711](https://github.com/mui/material-ui/issues/31711)) [@&#8203;klyburke](https://github.com/klyburke) - \[docs] Fix docs site crash on iOS Safari 12 ([#&#8203;31458](https://github.com/mui/material-ui/issues/31458)) [@&#8203;badalsaibo](https://github.com/badalsaibo) - \[docs] Fix search icons crash ([#&#8203;31651](https://github.com/mui/material-ui/issues/31651)) [@&#8203;juanpc10](https://github.com/juanpc10) - \[docs] Remove unnecessary await in e2e-tests ([#&#8203;31767](https://github.com/mui/material-ui/issues/31767)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix source code links on the Templates page ([#&#8203;31425](https://github.com/mui/material-ui/issues/31425)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Adjust Stack's basic usage demo ([#&#8203;31423](https://github.com/mui/material-ui/issues/31423)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Migrate button demos to base ([#&#8203;31395](https://github.com/mui/material-ui/issues/31395)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix y-axis unit used in the responsive font sizes chart ([#&#8203;31424](https://github.com/mui/material-ui/issues/31424)) [@&#8203;aaarichter](https://github.com/aaarichter) - \[docs] Remove joy mockup pages ([#&#8203;31412](https://github.com/mui/material-ui/issues/31412)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix the statement that styleOverrides are added by default ([#&#8203;31257](https://github.com/mui/material-ui/issues/31257)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Refine the product identifier menu ([#&#8203;31262](https://github.com/mui/material-ui/issues/31262)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Fix Search crash ([#&#8203;31386](https://github.com/mui/material-ui/issues/31386)) [@&#8203;reckter](https://github.com/reckter) - \[docs] Update TextField multiline description ([#&#8203;31291](https://github.com/mui/material-ui/issues/31291)) [@&#8203;jontewks](https://github.com/jontewks) - \[docs] Add gap theme mapping in the System properties table ([#&#8203;31382](https://github.com/mui/material-ui/issues/31382)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Test products search ([#&#8203;31351](https://github.com/mui/material-ui/issues/31351)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix GitHub source links in the demo toolbar ([#&#8203;31339](https://github.com/mui/material-ui/issues/31339)) [@&#8203;PunitSoniME](https://github.com/PunitSoniME) - \[docs] Add Algolia verification code to robot.txt ([#&#8203;31356](https://github.com/mui/material-ui/issues/31356)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[examples] Ignore tsbuildinfo with Next.js ([#&#8203;31460](https://github.com/mui/material-ui/issues/31460)) [@&#8203;B0und](https://github.com/B0und) - \[website] Add new gold sponsor ([#&#8203;31354](https://github.com/mui/material-ui/issues/31354)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[website] Update Ukraine support link ([#&#8203;31378](https://github.com/mui/material-ui/issues/31378)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) ##### Core - \[core] Simplify anchor link ([#&#8203;31419](https://github.com/mui/material-ui/issues/31419)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Revert unrelated changes in [#&#8203;31354](https://github.com/mui/material-ui/issues/31354) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[test] Upgrade CircleCI convenience image ([#&#8203;31394](https://github.com/mui/material-ui/issues/31394)) [@&#8203;m4theushw](https://github.com/m4theushw) - \[typescript] Simplify display of slot props types ([#&#8203;31240](https://github.com/mui/material-ui/issues/31240)) [@&#8203;michaldudak](https://github.com/michaldudak) All contributors of this release in alphabetical order: [@&#8203;aaarichter](https://github.com/aaarichter), [@&#8203;aaronadamsCA](https://github.com/aaronadamsCA), [@&#8203;B0und](https://github.com/B0und), [@&#8203;badalsaibo](https://github.com/badalsaibo), [@&#8203;boutahlilsoufiane](https://github.com/boutahlilsoufiane), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;hafley66](https://github.com/hafley66), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;issamElmohadeb098](https://github.com/issamElmohadeb098), [@&#8203;jontewks](https://github.com/jontewks), [@&#8203;juanpc10](https://github.com/juanpc10), [@&#8203;klyburke](https://github.com/klyburke), [@&#8203;krysia1](https://github.com/krysia1), [@&#8203;m4theushw](https://github.com/m4theushw), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;PunitSoniME](https://github.com/PunitSoniME), [@&#8203;reckter](https://github.com/reckter), [@&#8203;SalvatoreMazzullo](https://github.com/SalvatoreMazzullo), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;theCuriousOne](https://github.com/theCuriousOne) ### [`v5.5.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;550) [Compare Source](https://github.com/mui/material-ui/compare/v5.4.4...v5.5.0) <!-- generated comparing v5.4.4..master --> *Mar 7, 2022* A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: - ♿️ made the `Autocomplete` conform to [ARIA 1.2 combobox](https://www.w3.org/TR/wai-aria-1.2/#combobox) ([#&#8203;30601](https://github.com/mui/material-ui/issues/30601)) [@&#8203;EdmundMai](https://github.com/EdmundMai) - Several 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.5.0` ##### Breaking change - ​<!-- 24 -->\[ClassNameGenerator] Prevent all `base` imports ([#&#8203;31297](https://github.com/mui/material-ui/issues/31297)) [@&#8203;siriwatknp](https://github.com/siriwatknp) `unstable_ClassNameGenerator` has been moved from `utils` to `className` folder to prevent all MUI Base module imports. If you use the module, please update the import as suggested in the diff below: ```diff -import { unstable_ClassNameGenerator } from '@&#8203;mui/material/utils'; +import { unstable_ClassNameGenerator } from '@&#8203;mui/material/className'; ``` ##### Changes - ​<!-- 28 -->\[Autocomplete] Fix failing unit tests ([#&#8203;31302](https://github.com/mui/material-ui/issues/31302)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 27 -->\[Autocomplete] Have the screen reader announce when autocomplete is open and closed ([#&#8203;30601](https://github.com/mui/material-ui/issues/30601)) [@&#8203;EdmundMai](https://github.com/EdmundMai) - ​<!-- 26 -->\[AvatarGroup] Fix misalignment with non-default spacing ([#&#8203;31165](https://github.com/mui/material-ui/issues/31165)) [@&#8203;sjdemartini](https://github.com/sjdemartini) - ​<!-- 15 -->\[Drawer] Adjustments to the mini variant to improve UI/UX ([#&#8203;31267](https://github.com/mui/material-ui/issues/31267)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 04 -->\[Select] Add extending `OutlinedInputProps` by SelectProps ([#&#8203;31209](https://github.com/mui/material-ui/issues/31209)) [@&#8203;jrozbicki](https://github.com/jrozbicki) ##### `@mui/icons-material@5.5.0` - ​<!-- 13 -->\[icons] Sync new Google Material Icons ([#&#8203;30766](https://github.com/mui/material-ui/issues/30766)) [@&#8203;simonecervini](https://github.com/simonecervini) ##### `@mui/codemod@5.5.0` - ​<!-- 23 -->\[codemod] Fix top level imports codemod ([#&#8203;31308](https://github.com/mui/material-ui/issues/31308)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/lab@5.0.0-alpha.72` - ​<!-- 07 -->\[LoadingButton] Fix padding of loading icon in small button ([#&#8203;31113](https://github.com/mui/material-ui/issues/31113)) [@&#8203;PunitSoniME](https://github.com/PunitSoniME) ##### `@mui/base@5.0.0-alpha.71` - ​<!-- 05 -->\[MenuUnstyled] Create MenuUnstyled and useMenu ([#&#8203;30961](https://github.com/mui/material-ui/issues/30961)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 03 -->\[SelectUnstyled] Prevent window scrolling after opening ([#&#8203;31237](https://github.com/mui/material-ui/issues/31237)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.18` - ​<!-- 12 -->\[Joy] Make Icon `fontSize` adaptable to its parent ([#&#8203;31268](https://github.com/mui/material-ui/issues/31268)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 11 -->\[Joy] Add `Link` component ([#&#8203;31175](https://github.com/mui/material-ui/issues/31175)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 10 -->\[Joy] Improve `Sheet` tests ([#&#8203;31241](https://github.com/mui/material-ui/issues/31241)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 09 -->\[Joy] Improve SvgIcon tests ([#&#8203;31242](https://github.com/mui/material-ui/issues/31242)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/material-next@6.0.0-alpha.26` - ​<!-- 06 -->\[material-next] Mark [@&#8203;mui/material](https://github.com/mui/material) as a dependency ([#&#8203;31270](https://github.com/mui/material-ui/issues/31270)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 21 -->\[docs] Remove career pages from translation ([#&#8203;31346](https://github.com/mui/material-ui/issues/31346)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 20 -->\[docs] Fix JS files overloading ([#&#8203;31341](https://github.com/mui/material-ui/issues/31341)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 19 -->\[docs] Add banner in solidarity of Ukraine ([#&#8203;31275](https://github.com/mui/material-ui/issues/31275)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 18 -->\[docs] Fix maxWidth of scrollable Tabs demos ([#&#8203;31285](https://github.com/mui/material-ui/issues/31285)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 17 -->\[docs] Fix icon linking implementation concurrent safe ([#&#8203;30428](https://github.com/mui/material-ui/issues/30428)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 16 -->\[docs] Follow up new doc space issues ([#&#8203;31251](https://github.com/mui/material-ui/issues/31251)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 29 -->\[examples] Add `@types/node` to nextjs typescript starter ([#&#8203;30918](https://github.com/mui/material-ui/issues/30918)) [@&#8203;Daggy1234](https://github.com/Daggy1234) - ​<!-- 14 -->\[examples] Fix import ThemeProvider from correct package in remix-wit… ([#&#8203;30981](https://github.com/mui/material-ui/issues/30981)) [@&#8203;nnecec](https://github.com/nnecec) - ​<!-- 25 -->\[blog] Simplify the labels ([#&#8203;30921](https://github.com/mui/material-ui/issues/30921)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 08 -->\[l10n] Add Croatian (hr-HR) and Serbian (sr-RS) translation ([#&#8203;30906](https://github.com/mui/material-ui/issues/30906)) [@&#8203;m14d3n](https://github.com/m14d3n) ##### Core - ​<!-- 23 -->\[core] Fix running markdownlint on Windows ([#&#8203;31352](https://github.com/mui/material-ui/issues/31352)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 22 -->\[core] Fix the stylelint script on Windows ([#&#8203;31281](https://github.com/mui/material-ui/issues/31281)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 02 -->\[test] Fix buildApiUtils tests on Windows ([#&#8203;31304](https://github.com/mui/material-ui/issues/31304)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 01 -->\[test] Remove legacyRoot option from test renderer ([#&#8203;31284](https://github.com/mui/material-ui/issues/31284)) [@&#8203;eps1lon](https://github.com/eps1lon) All contributors of this release in alphabetical order: [@&#8203;Daggy1234](https://github.com/Daggy1234), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;EdmundMai](https://github.com/EdmundMai), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;jrozbicki](https://github.com/jrozbicki), [@&#8203;m14d3n](https://github.com/m14d3n), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;nnecec](https://github.com/nnecec), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;PunitSoniME](https://github.com/PunitSoniME), [@&#8203;simonecervini](https://github.com/simonecervini), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;sjdemartini](https://github.com/sjdemartini) ### [`v5.4.4`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;544) [Compare Source](https://github.com/mui/material-ui/compare/v5.4.3...v5.4.4) <!-- generated comparing v5.4.3..master --> *Feb 28, 2022* A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨: - ✨ New `Input` and `Sheet` components were added in the experimental Joy design system by [@&#8203;hbjORbj](https://github.com/hbjORbj) ([#&#8203;31124](https://github.com/mui/material-ui/issues/31124), [#&#8203;31086](https://github.com/mui/material-ui/issues/31086)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - Several 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.4.4` - ​<!-- 28 -->\[Autocomplete] Have Autocomplete with multiline textfield log a warning instead of an error ([#&#8203;30680](https://github.com/mui/material-ui/issues/30680)) [@&#8203;iclaude3](https://github.com/iclaude3) - ​<!-- 27 -->\[Chip] Fix ellipsis when the children is too long ([#&#8203;31087](https://github.com/mui/material-ui/issues/31087)) [@&#8203;PunitSoniME](https://github.com/PunitSoniME) - ​<!-- 14 -->\[Input] Export InputBase's classes from the classes const ([#&#8203;31186](https://github.com/mui/material-ui/issues/31186)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 29 -->\[TextField] Fix Horizontal scroll when label too long ([#&#8203;31187](https://github.com/mui/material-ui/issues/31187)) [@&#8203;RedHeadphone](https://github.com/RedHeadphone) - ​<!-- 08 -->\[styles] Fix typo in import error ([#&#8203;31167](https://github.com/mui/material-ui/issues/31167)) [@&#8203;davwheat](https://github.com/davwheat) ##### `@mui/system@5.4.4` - ​<!-- 07 -->\[system] Fix executing server-side Emotion component as function interpolation 2 ([#&#8203;31024](https://github.com/mui/material-ui/issues/31024)) [@&#8203;Andarist](https://github.com/Andarist) - ​<!-- 06 -->\[system] Fix sx prop types when CSS variables are used with nested selectors ([#&#8203;31163](https://github.com/mui/material-ui/issues/31163)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 05 -->\[system] Fix `CssVarsProvider` theme mutation ([#&#8203;31148](https://github.com/mui/material-ui/issues/31148)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/codemod@5.4.4` - ​<!-- 26 -->\[codemods] Add v5.0.0/top-level-imports codemod ([#&#8203;31195](https://github.com/mui/material-ui/issues/31195)) [@&#8203;greengiraffe](https://github.com/greengiraffe) ##### `@mui/base@5.0.0-alpha.70` - ​<!-- 31 -->\[SelectUnstyled, MultiSelectUnstyled, ButtonUnstyled] Export additional types to make customization easier ([#&#8203;31172](https://github.com/mui/material-ui/issues/31172)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/joy@5.0.0-alpha.17` - ​<!-- 13 -->\[Joy] Add nested list components ([#&#8203;31159](https://github.com/mui/material-ui/issues/31159)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 12 -->\[Joy] Improve color customization on `Switch` ([#&#8203;31137](https://github.com/mui/material-ui/issues/31137)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 11 -->\[Joy] Add `Sheet` component ([#&#8203;31124](https://github.com/mui/material-ui/issues/31124)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 10 -->\[Joy] add `Input` component ([#&#8203;31086](https://github.com/mui/material-ui/issues/31086)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 09 -->\[Joy] Fix Button missing slot type ([#&#8203;31166](https://github.com/mui/material-ui/issues/31166)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 22 -->\[docs] Fix 404 link to the blog ([#&#8203;31234](https://github.com/mui/material-ui/issues/31234)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 21 -->\[docs] Use `material-ui` for product name ([#&#8203;31200](https://github.com/mui/material-ui/issues/31200)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 20 -->\[docs] Add Base installation page ([#&#8203;30969](https://github.com/mui/material-ui/issues/30969)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 19 -->\[docs] Use new Algolia app for new structure ([#&#8203;31178](https://github.com/mui/material-ui/issues/31178)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 18 -->\[docs] Typo in the `FormControl` API documentation ([#&#8203;31169](https://github.com/mui/material-ui/issues/31169)) [@&#8203;bonellia](https://github.com/bonellia) - ​<!-- 17 -->\[docs] Fix typo in Stack documentation ([#&#8203;31176](https://github.com/mui/material-ui/issues/31176)) [@&#8203;adriancampos](https://github.com/adriancampos) - ​<!-- 16 -->\[docs] Update interoperability.md broken tailwind links ([#&#8203;31182](https://github.com/mui/material-ui/issues/31182)) [@&#8203;robertwt7](https://github.com/robertwt7) - ​<!-- 15 -->\[docs] Add missing import into tss-react migration guide ([#&#8203;31162](https://github.com/mui/material-ui/issues/31162)) [@&#8203;sviande](https://github.com/sviande) - ​<!-- 03 -->\[website] The role is filled ([#&#8203;31216](https://github.com/mui/material-ui/issues/31216)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 02 -->\[website] Revise the row grouping blog post ([#&#8203;31101](https://github.com/mui/material-ui/issues/31101)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) - ​<!-- 01 -->\[website] Fix a few SEO issues ([#&#8203;31150](https://github.com/mui/material-ui/issues/31150)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 30 -->\[core] Add group for the [@&#8203;fortawesome](https://github.com/fortawesome) dependencies ([#&#8203;31193](https://github.com/mui/material-ui/issues/31193)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 25 -->\[core] Update playwright docker to match the specified version ([#&#8203;31236](https://github.com/mui/material-ui/issues/31236)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 24 -->\[core] Remove parallel on buildTypes ([#&#8203;31189](https://github.com/mui/material-ui/issues/31189)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 23 -->\[core] Fix propTypes generation for optional any props ([#&#8203;31141](https://github.com/mui/material-ui/issues/31141)) [@&#8203;m4theushw](https://github.com/m4theushw) - ​<!-- 04 -->\[typescript] Remove variants deprecation ([#&#8203;31239](https://github.com/mui/material-ui/issues/31239)) [@&#8203;siriwatknp](https://github.com/siriwatknp) All contributors of this release in alphabetical order: [@&#8203;adriancampos](https://github.com/adriancampos), [@&#8203;Andarist](https://github.com/Andarist), [@&#8203;bonellia](https://github.com/bonellia), [@&#8203;davwheat](https://github.com/davwheat), [@&#8203;greengiraffe](https://github.com/greengiraffe), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;iclaude3](https://github.com/iclaude3), [@&#8203;m4theushw](https://github.com/m4theushw), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;PunitSoniME](https://github.com/PunitSoniME), [@&#8203;RedHeadphone](https://github.com/RedHeadphone), [@&#8203;robertwt7](https://github.com/robertwt7), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;sviande](https://github.com/sviande) ### [`v5.4.3`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;543) [Compare Source](https://github.com/mui/material-ui/compare/v5.4.2...v5.4.3) <!-- generated comparing v5.4.2..master --> *Feb 21, 2022* A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨: - 🛠 [@&#8203;hbjORbj](https://github.com/hbjORbj) made components use theme duration/easing values by default ([#&#8203;30894](https://github.com/mui/material-ui/issues/30894)) - A meaningful number of 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.4.3` - ​<!-- 18 -->\[ButtonBase] Fix typo ([#&#8203;31135](https://github.com/mui/material-ui/issues/31135)) [@&#8203;Jastor11](https://github.com/Jastor11) - ​<!-- 05 -->\[Stepper] Export useStepContext ([#&#8203;31021](https://github.com/mui/material-ui/issues/31021)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 04 -->\[Transitions] Some components do not use transition duration/easing values from theme ([#&#8203;30894](https://github.com/mui/material-ui/issues/30894)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/icons-material@5.4.3` - ​<!-- 11 -->\[icons] Add "circle" icon synonyms ([#&#8203;31118](https://github.com/mui/material-ui/issues/31118)) [@&#8203;gnowland](https://github.com/gnowland) ##### `@mui/joy@5.0.0-alpha.16` - ​<!-- 10 -->\[Joy] `List` second iteration ([#&#8203;31134](https://github.com/mui/material-ui/issues/31134)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 09 -->\[Joy] Fix typings ([#&#8203;31120](https://github.com/mui/material-ui/issues/31120)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 08 -->\[Joy] Add initial `List` components ([#&#8203;30987](https://github.com/mui/material-ui/issues/30987)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 19 -->\[website] Improve full-stack role job description ([#&#8203;31160](https://github.com/mui/material-ui/issues/31160)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 14 -->\[docs] Fix typo of migration guides v4 ([#&#8203;31136](https://github.com/mui/material-ui/issues/31136)) [@&#8203;pppp606](https://github.com/pppp606) - ​<!-- 13 -->\[docs] Update on the support page to account for v4 LTS support ([#&#8203;31029](https://github.com/mui/material-ui/issues/31029)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 12 -->\[docs] Fix small typo in chips.md ([#&#8203;31092](https://github.com/mui/material-ui/issues/31092)) [@&#8203;cameliaben](https://github.com/cameliaben) - ​<!-- 07 -->\[l10n] Add it-IT translation for labelDisplayedRows ([#&#8203;31131](https://github.com/mui/material-ui/issues/31131)) [@&#8203;frab90](https://github.com/frab90) - ​<!-- 06 -->\[l10n] Add pl-PL translation for labelDisplayedRows ([#&#8203;31088](https://github.com/mui/material-ui/issues/31088)) [@&#8203;ThomasTheHuman](https://github.com/ThomasTheHuman) - ​<!-- 03 -->\[website] Sync MUI X table feature ([#&#8203;30913](https://github.com/mui/material-ui/issues/30913)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - ​<!-- 02 -->\[website] Prefill source in job application links ([#&#8203;31036](https://github.com/mui/material-ui/issues/31036)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 01 -->\[website] Fix a grammar mistake ([#&#8203;31099](https://github.com/mui/material-ui/issues/31099)) [@&#8203;huyenltnguyen](https://github.com/huyenltnguyen) ##### Core - ​<!-- 17 -->\[core] Add jsx, html, css and prisma to prettier extensions ([#&#8203;31161](https://github.com/mui/material-ui/issues/31161)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 16 -->\[core] Allow to run material-ui.com/store alongside mui.com/store ([#&#8203;31065](https://github.com/mui/material-ui/issues/31065)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 15 -->\[core] Polish design tokens ([#&#8203;31095](https://github.com/mui/material-ui/issues/31095)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;cameliaben](https://github.com/cameliaben), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;frab90](https://github.com/frab90), [@&#8203;gnowland](https://github.com/gnowland), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;huyenltnguyen](https://github.com/huyenltnguyen), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;Jastor11](https://github.com/Jastor11), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;pppp606](https://github.com/pppp606), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ThomasTheHuman](https://github.com/ThomasTheHuman) ### [`v5.4.2`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;542) [Compare Source](https://github.com/mui/material-ui/compare/v5.4.1...v5.4.2) *Feb 15, 2022* A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: - 🛠 [@&#8203;sydneyjodon-wk](https://github.com/sydneyjodon-wk) improved propTypes of the ToggleButton components ([#&#8203;30883](https://github.com/mui/material-ui/issues/30883)) - Several 🐛 bug fixes and 📚 documentation improvements ##### `@mui/material@5.4.2` - \[Select] Allow customizing Select based on its variant ([#&#8203;30788](https://github.com/mui/material-ui/issues/30788)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[Portal] Re-export 'Portal' in material ([#&#8203;31003](https://github.com/mui/material-ui/issues/31003)) [@&#8203;liradb2000](https://github.com/liradb2000) - \[ToggleButton] Add prop types for `onClick` and `onChange` ([#&#8203;30883](https://github.com/mui/material-ui/issues/30883)) [@&#8203;sydneyjodon-wk](https://github.com/sydneyjodon-wk) - \[typescript] Added TypeText declaration to the exports file ([#&#8203;30890](https://github.com/mui/material-ui/issues/30890)) [@&#8203;agauravdev](https://github.com/agauravdev) ##### `@mui/system@5.4.2` - \[system] Fix broken behavior when breakpoints input are not ordered ([#&#8203;30996](https://github.com/mui/material-ui/issues/30996)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/lab@5.0.0-alpha.69` - \[DatePicker] Fix passing clearable prop ([#&#8203;30786](https://github.com/mui/material-ui/issues/30786)) [@&#8203;alisasanib](https://github.com/alisasanib) ##### `@mui/joy@5.0.0-alpha.15` - \[Joy] Improve variant customization experience ([#&#8203;30878](https://github.com/mui/material-ui/issues/30878)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[Joy] Make `sx` prop work in Joy ([#&#8203;30955](https://github.com/mui/material-ui/issues/30955)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Framer - \[design] Remove framer components ([#&#8203;30983](https://github.com/mui/material-ui/issues/30983)) [@&#8203;mbrookes](https://github.com/mbrookes) - \[design] Remove framer leftovers ([#&#8203;31070](https://github.com/mui/material-ui/issues/31070)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Docs - \[docs] Update installation guide of the icons package ([#&#8203;31026](https://github.com/mui/material-ui/issues/31026)) [@&#8203;huyenltnguyen](https://github.com/huyenltnguyen) - \[docs] Improve the indication for the legacy APIs ([#&#8203;30995](https://github.com/mui/material-ui/issues/30995)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Specify which props are added in the default `shouldForwardProp` option ([#&#8203;30978](https://github.com/mui/material-ui/issues/30978)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Fix layout shift on loading ([#&#8203;31017](https://github.com/mui/material-ui/issues/31017)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Increase scroll affordance in wide tables ([#&#8203;30713](https://github.com/mui/material-ui/issues/30713)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Fix look & feel of the Masonry demos ([#&#8203;30971](https://github.com/mui/material-ui/issues/30971)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Improve Base component demos ([#&#8203;30884](https://github.com/mui/material-ui/issues/30884)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] Use full product names (Material UI, MUI System) ([#&#8203;30960](https://github.com/mui/material-ui/issues/30960)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Prefer useEnhancedEffect to avoid server side warnings ([#&#8203;30977](https://github.com/mui/material-ui/issues/30977)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[docs] Fix force redirection to a different locale ([#&#8203;30967](https://github.com/mui/material-ui/issues/30967)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Add live Tailwind CSS demo ([#&#8203;30966](https://github.com/mui/material-ui/issues/30966)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Add banner for promoting priority open roles ([#&#8203;31076](https://github.com/mui/material-ui/issues/31076)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[website] Open Full-stack Engineer role for studio ([#&#8203;31038](https://github.com/mui/material-ui/issues/31038)) [@&#8203;prakhargupta1](https://github.com/prakhargupta1) - \[website] Minor security improvements ([#&#8203;31062](https://github.com/mui/material-ui/issues/31062)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Improve title of open roles ([#&#8203;30963](https://github.com/mui/material-ui/issues/30963)) [@&#8203;DanailH](https://github.com/DanailH) - \[website] Add BIMI avatar ([#&#8203;30444](https://github.com/mui/material-ui/issues/30444)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Add Sycamore to About page ([#&#8203;31000](https://github.com/mui/material-ui/issues/31000)) [@&#8203;samuelsycamore](https://github.com/samuelsycamore) ##### Core - \[benchmark] Add missing dependency ([#&#8203;30994](https://github.com/mui/material-ui/issues/30994)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[core] Bump date-io version ([#&#8203;31016](https://github.com/mui/material-ui/issues/31016)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[core] Fix typo in useSlider ([#&#8203;31061](https://github.com/mui/material-ui/issues/31061)) [@&#8203;ryohey](https://github.com/ryohey) - \[core] Remove unused draft-js types package ([#&#8203;30993](https://github.com/mui/material-ui/issues/30993)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[test] Test if certain Base members are exported from Material UI ([#&#8203;31067](https://github.com/mui/material-ui/issues/31067)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[core] Remove dead code ([#&#8203;31064](https://github.com/mui/material-ui/issues/31064)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;agauravdev](https://github.com/agauravdev), [@&#8203;alisasanib](https://github.com/alisasanib), [@&#8203;DanailH](https://github.com/DanailH), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;huyenltnguyen](https://github.com/huyenltnguyen), [@&#8203;l10nbot](https://github.com/l10nbot), [@&#8203;liradb2000](https://github.com/liradb2000), [@&#8203;mbrookes](https://github.com/mbrookes), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;prakhargupta1](https://github.com/prakhargupta1), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;ryohey](https://github.com/ryohey), [@&#8203;samuelsycamore](https://github.com/samuelsycamore), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;sydneyjodon-wk](https://github.com/sydneyjodon-wk) ### [`v5.4.1`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;541) [Compare Source](https://github.com/mui/material-ui/compare/v5.4.0...v5.4.1) <!-- generated comparing v5.4.0..master --> *Feb 8, 2022* A big thanks to the 24 contributors who made this release possible. Here are some highlights ✨: - ♿️ Snackbar messages are now announced by NVDA when using Firefox ([#&#8203;30774](https://github.com/mui/material-ui/issues/30774)) [@&#8203;eps1lon](https://github.com/eps1lon) - Several 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.4.1` - ​<!-- 37 -->\[AvatarGroup] Enable targeting of additional Avatar when max props is passed ([#&#8203;30794](https://github.com/mui/material-ui/issues/30794)) [@&#8203;mogrady88](https://github.com/mogrady88) - ​<!-- 36 -->\[Badge] Fix showzero and invisible condition ([#&#8203;30899](https://github.com/mui/material-ui/issues/30899)) [@&#8203;alisasanib](https://github.com/alisasanib) - ​<!-- 35 -->\[ButtonBase] Expose ref to TouchRipple ([#&#8203;30901](https://github.com/mui/material-ui/issues/30901)) [@&#8203;m4theushw](https://github.com/m4theushw) - ​<!-- 15 -->\[Fab] Add support for the default theme colors ([#&#8203;30846](https://github.com/mui/material-ui/issues/30846)) [@&#8203;alisasanib](https://github.com/alisasanib) - ​<!-- 11 -->\[SelectInput] Only attach click handler to label if a labelId is passed ([#&#8203;30239](https://github.com/mui/material-ui/issues/30239)) [@&#8203;johsunds](https://github.com/johsunds) - ​<!-- 09 -->\[Snackbar] Ensure messages are announced in NVDA+FF ([#&#8203;30774](https://github.com/mui/material-ui/issues/30774)) [@&#8203;eps1lon](https://github.com/eps1lon) ##### `@mui/base@5.0.0-alpha.68` - ​<!-- 10 -->\[SelectUnstyled] Improve exported types ([#&#8203;30895](https://github.com/mui/material-ui/issues/30895)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/lab@5.0.0-alpha.68` - ​<!-- 12 -->\[Pickers] Fix `onDismiss` handler in `MobileDatePicker` ([#&#8203;30768](https://github.com/mui/material-ui/issues/30768)) [@&#8203;Ashish2097](https://github.com/Ashish2097) - ​<!-- 06 -->\[TimePicker] Add font family for clock numbers ([#&#8203;30738](https://github.com/mui/material-ui/issues/30738)) [@&#8203;alisasanib](https://github.com/alisasanib) ##### `@mui/joy@5.0.0-alpha.14` - ​<!-- 14 -->\[Joy] Add `IconButton` component ([#&#8203;30864](https://github.com/mui/material-ui/issues/30864)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 13 -->\[Joy] Use icon inside a Button ([#&#8203;30803](https://github.com/mui/material-ui/issues/30803)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 16 -->\[examples] Fix vitejs example and improve HMR ([#&#8203;30897](https://github.com/mui/material-ui/issues/30897)) [@&#8203;mihailgaberov](https://github.com/mihailgaberov) - ​<!-- 33 -->\[docs] Improve autocomplete "limit tags" demo ([#&#8203;30910](https://github.com/mui/material-ui/issues/30910)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 34 -->\[docs] Sync translations with Crowdin ([#&#8203;30950](https://github.com/mui/material-ui/issues/30950)) [@&#8203;l10nbot](https://github.com/l10nbot) - ​<!-- 38 -->\[docs] Improve description of the disableRestoreFocus prop of the `TrapFocus` ([#&#8203;30912](https://github.com/mui/material-ui/issues/30912)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - ​<!-- 32 -->\[docs] Remove ul with div children and replace with nav element ([#&#8203;30534](https://github.com/mui/material-ui/issues/30534)) [@&#8203;joeframbach](https://github.com/joeframbach) - ​<!-- 31 -->\[docs] Add Saleor to showcase ([#&#8203;30924](https://github.com/mui/material-ui/issues/30924)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - ​<!-- 30 -->\[docs] Include JSS in styling solution interoperability guide ([#&#8203;30736](https://github.com/mui/material-ui/issues/30736)) [@&#8203;garronej](https://github.com/garronej) - ​<!-- 29 -->\[docs] Fix contents of link-underline-hover ([#&#8203;30904](https://github.com/mui/material-ui/issues/30904)) [@&#8203;pppp606](https://github.com/pppp606) - ​<!-- 28 -->\[docs] Fix markdown table format ([#&#8203;30947](https://github.com/mui/material-ui/issues/30947)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 27 -->\[docs] Add missing import to RTL guide ([#&#8203;30891](https://github.com/mui/material-ui/issues/30891)) [@&#8203;CFarhad](https://github.com/CFarhad) - ​<!-- 26 -->\[docs] Fix WithStyles import statement for [@&#8203;mui/styles](https://github.com/mui/styles) ([#&#8203;30942](https://github.com/mui/material-ui/issues/30942)) [@&#8203;altruity](https://github.com/altruity) - ​<!-- 25 -->\[docs] Fix broken roadmap table ([#&#8203;30943](https://github.com/mui/material-ui/issues/30943)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - ​<!-- 24 -->\[docs] Fix broken URL in "Edit this page" button ([#&#8203;30923](https://github.com/mui/material-ui/issues/30923)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - ​<!-- 23 -->\[docs] Migrate content to the new location ([#&#8203;30757](https://github.com/mui/material-ui/issues/30757)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 22 -->\[docs] Fix the link to the Vite.js example project ([#&#8203;30872](https://github.com/mui/material-ui/issues/30872)) [@&#8203;GneyHabub](https://github.com/GneyHabub) - ​<!-- 21 -->\[docs] Clarify the minimum configuration for TypeScript ([#&#8203;30790](https://github.com/mui/material-ui/issues/30790)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 20 -->\[docs] Clarify what the name of [@&#8203;mui/material](https://github.com/mui/material) is ([#&#8203;30866](https://github.com/mui/material-ui/issues/30866)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 19 -->\[docs] Remove migration from the releases page ([#&#8203;30863](https://github.com/mui/material-ui/issues/30863)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 18 -->\[docs] Update Instructions for Google Maps Autocomplete ([#&#8203;30849](https://github.com/mui/material-ui/issues/30849)) [@&#8203;kjschabra](https://github.com/kjschabra) - ​<!-- 17 -->\[docs] Hotfix notification ([#&#8203;30862](https://github.com/mui/material-ui/issues/30862)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 04 -->\[website] Sample GA to avoid hit limit ([#&#8203;30919](https://github.com/mui/material-ui/issues/30919)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 03 -->\[website] Hide scrollbars of hero containers ([#&#8203;29474](https://github.com/mui/material-ui/issues/29474)) [@&#8203;theiliad](https://github.com/theiliad) - ​<!-- 02 -->\[website] Polishing spacing and other small things ([#&#8203;30828](https://github.com/mui/material-ui/issues/30828)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 01 -->\[website] Close the Developer Advocate role ([#&#8203;30867](https://github.com/mui/material-ui/issues/30867)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 37 -->\[core] Batch small fixes ([#&#8203;30952](https://github.com/mui/material-ui/issues/30952)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 34 -->\[core] Rename the GitHub org ([#&#8203;30944](https://github.com/mui/material-ui/issues/30944)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 33 -->\[core] Fix propTypes in components where OverridableStringUnion is used ([#&#8203;30682](https://github.com/mui/material-ui/issues/30682)) [@&#8203;paales](https://github.com/paales) - ​<!-- 08 -->\[test] Codify the difference between keyup and keydown in SelectUnstyled ([#&#8203;30857](https://github.com/mui/material-ui/issues/30857)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 07 -->\[test] Fix typo ([#&#8203;30841](https://github.com/mui/material-ui/issues/30841)) [@&#8203;caioagiani](https://github.com/caioagiani) - ​<!-- 05 -->\[utils] Use built-in hook when available for useId ([#&#8203;30654](https://github.com/mui/material-ui/issues/30654)) [@&#8203;eps1lon](https://github.com/eps1lon) All contributors of this release in alphabetical order: [@&#8203;alisasanib](https://github.com/alisasanib), [@&#8203;altruity](https://github.com/altruity), [@&#8203;Ashish2097](https://github.com/Ashish2097), [@&#8203;caioagiani](https://github.com/caioagiani), [@&#8203;CFarhad](https://github.com/CFarhad), [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;garronej](https://github.com/garronej), [@&#8203;GneyHabub](https://github.com/GneyHabub), [@&#8203;joeframbach](https://github.com/joeframbach), [@&#8203;johsunds](https://github.com/johsunds), [@&#8203;kjschabra](https://github.com/kjschabra), [@&#8203;m4theushw](https://github.com/m4theushw), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mihailgaberov](https://github.com/mihailgaberov), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;mogrady88](https://github.com/mogrady88), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;paales](https://github.com/paales), [@&#8203;pppp606](https://github.com/pppp606), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;theiliad](https://github.com/theiliad) ### [`v5.4.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;540) [Compare Source](https://github.com/mui/material-ui/compare/v5.3.1...v5.4.0) <!-- generated comparing v5.3.1..master --> *Feb 1, 2022* A big thanks to the 22 contributors who made this release possible. Here are some highlights ✨: - 🛠 [@&#8203;goncalovf](https://github.com/goncalovf) added an example project using [MUI with Vite.js](https://github.com/mui/material-ui/tree/master/examples/vitejs) ([#&#8203;28241](https://github.com/mui/material-ui/issues/28241)) - Number of 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.4.0` ##### Breaking changes - ​<!-- 27 -->\[core] Do not reexport Base from Material ([#&#8203;30853](https://github.com/mui/material-ui/issues/30853)) [@&#8203;michaldudak](https://github.com/michaldudak) All Base components were exported from the `@mui/material` package and treated as stable even though the `@mui/base` package is in development. It could create a lot of confusion if developers start using Base components, depend on them, and demand quality found in "proper" Material components. We admit it was a mistake to reexport these components without marking them as unstable. Developers are still encouraged to evaluate the Base components, but they should do so by explicitly installing the `@mui/base` package. This is technically a breaking change as it removes a number of components from the `@mui/material` package. However, we believe that removing the components now and potentially breaking the codebases will do less harm than introducing "silent" breaking changes to Base components while continuing reexporting them from `@mui/material`. Note: the utility components, such as ClickAwayListener, NoSsr, Portal, and TextareaAutosize continue to be exported from both `@mui/material` and `@mui/base`. If you're encountering build errors after upgrading [@&#8203;mui/material](https://github.com/mui/material), do the following: 1. Install [@&#8203;mui/base](https://github.com/mui/base): npm install [@&#8203;mui/base](https://github.com/mui/base) or yarn add [@&#8203;mui/base](https://github.com/mui/base) 2. Make sure the version of [@&#8203;mui/base](https://github.com/mui/base) match the version of [@&#8203;mui/material](https://github.com/mui/material) 3. Change the import paths of unstyled components from [@&#8203;mui/material](https://github.com/mui/material) to [@&#8203;mui/base](https://github.com/mui/base), e.g.: ```diff -import ButtonUnstyled from '@&#8203;mui/material/ButtonUnstyled'; +import ButtonUnstyled from '@&#8203;mui/base/ButtonUnstyled'; ``` ##### Changes - ​<!-- 30 -->\[Autocomplete] Add `readOnly` prop ([#&#8203;30706](https://github.com/mui/material-ui/issues/30706)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 29 -->\[Autocomplete] Fix typos in the page ([#&#8203;30737](https://github.com/mui/material-ui/issues/30737)) [@&#8203;austinewuncler](https://github.com/austinewuncler) - ​<!-- 14 -->\[FormControlLabel]\[formgroup] add Mui-error class ([#&#8203;30656](https://github.com/mui/material-ui/issues/30656)) [@&#8203;alisasanib](https://github.com/alisasanib) - ​<!-- 13 -->\[Grid] Fix prop check for applying wrap-reverse ([#&#8203;30813](https://github.com/mui/material-ui/issues/30813)) [@&#8203;Hubbz](https://github.com/Hubbz) - ​<!-- 07 -->\[TextField] Remove notch when no label is added ([#&#8203;30560](https://github.com/mui/material-ui/issues/30560)) [@&#8203;alisasanib](https://github.com/alisasanib) - ​<!-- 06 -->\[TextField] Remove usage of dangerouslySetInnerHTML ([#&#8203;30776](https://github.com/mui/material-ui/issues/30776)) [@&#8203;Jack-Works](https://github.com/Jack-Works) - ​<!-- 05 -->\[TreeView] Select node when key `Enter` is pressed ([#&#8203;30795](https://github.com/mui/material-ui/issues/30795)) [@&#8203;dryrainbow](https://github.com/dryrainbow) - ​<!-- 04 -->\[useMediaQuery] Ensure no tearing in React 18 ([#&#8203;30655](https://github.com/mui/material-ui/issues/30655)) [@&#8203;eps1lon](https://github.com/eps1lon) ##### `@mui/base@5.0.0-alpha.67` - ​<!-- 11 -->\[SelectUnstyled] Create unstyled select (+ hook) ([#&#8203;30113](https://github.com/mui/material-ui/issues/30113)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/lab@5.0.0-alpha.67` - ​<!-- 23 -->\[DateTimePicker] Fix month view highlight wrong tab ([#&#8203;30773](https://github.com/mui/material-ui/issues/30773)) [@&#8203;DiegoYungh](https://github.com/DiegoYungh) - ​<!-- 12 -->\[pickers] Enable the sx props on all components ([#&#8203;30749](https://github.com/mui/material-ui/issues/30749)) [@&#8203;boutahlilsoufiane](https://github.com/boutahlilsoufiane) ##### Docs - ​<!-- 28 -->\[blog] Introducing callback support in style overrides ([#&#8203;30668](https://github.com/mui/material-ui/issues/30668)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 23 -->\[docs] Add notifications for the blog posts ([#&#8203;30852](https://github.com/mui/material-ui/issues/30852)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 22 -->\[docs] Improve the interoperability guide ([#&#8203;30785](https://github.com/mui/material-ui/issues/30785)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 21 -->\[docs] Improve the Getting Started documentation content ([#&#8203;30808](https://github.com/mui/material-ui/issues/30808)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 20 -->\[docs] Fix typo in ad fallback ([#&#8203;30823](https://github.com/mui/material-ui/issues/30823)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - ​<!-- 19 -->\[docs] Change ThemeProvider API links ([#&#8203;30705](https://github.com/mui/material-ui/issues/30705)) [@&#8203;atakanzen](https://github.com/atakanzen) - ​<!-- 18 -->\[docs] Retain vendor prefixing in rtl example ([#&#8203;30710](https://github.com/mui/material-ui/issues/30710)) [@&#8203;ryancogswell](https://github.com/ryancogswell) - ​<!-- 17 -->\[docs] Fix typo in the Popper ScrollPlayground demo ([#&#8203;30780](https://github.com/mui/material-ui/issues/30780)) [@&#8203;tanyabouman](https://github.com/tanyabouman) - ​<!-- 16 -->\[docs] Small fixes on the jss-to-tss migration guide ([#&#8203;30734](https://github.com/mui/material-ui/issues/30734)) [@&#8203;garronej](https://github.com/garronej) - ​<!-- 15 -->\[examples] Add Vite.js example ([#&#8203;28241](https://github.com/mui/material-ui/issues/28241)) [@&#8203;goncalovf](https://github.com/goncalovf) ##### Core - ​<!-- 29 -->\[core] Clarify the label, to match with MUI X ([#&#8203;30831](https://github.com/mui/material-ui/issues/30831)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 26 -->\[core] Remove none code related instructions from git ([#&#8203;30843](https://github.com/mui/material-ui/issues/30843)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 25 -->\[core] Fix typos in comments for scripts ([#&#8203;30809](https://github.com/mui/material-ui/issues/30809)) [@&#8203;aefox](https://github.com/aefox) - ​<!-- 24 -->\[core] Fix 301 link in the blog [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 10 -->\[test] Fix tests on Node 16 ([#&#8203;30819](https://github.com/mui/material-ui/issues/30819)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 09 -->\[test] Add explicit types to support noImplicityAny=false ([#&#8203;30798](https://github.com/mui/material-ui/issues/30798)) [@&#8203;m4theushw](https://github.com/m4theushw) - ​<!-- 08 -->\[test] Support React.useId format in \*DescriptionOf ([#&#8203;30657](https://github.com/mui/material-ui/issues/30657)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 03 -->\[website] Fix SEO issues ([#&#8203;30829](https://github.com/mui/material-ui/issues/30829)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 02 -->\[website] Add designer position page ([#&#8203;30708](https://github.com/mui/material-ui/issues/30708)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 01 -->\[website] Polish /about page ([#&#8203;30747](https://github.com/mui/material-ui/issues/30747)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;aefox](https://github.com/aefox), [@&#8203;alisasanib](https://github.com/alisasanib), [@&#8203;atakanzen](https://github.com/atakanzen), [@&#8203;austinewuncler](https://github.com/austinewuncler), [@&#8203;boutahlilsoufiane](https://github.com/boutahlilsoufiane), [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;DiegoYungh](https://github.com/DiegoYungh), [@&#8203;dryrainbow](https://github.com/dryrainbow), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;garronej](https://github.com/garronej), [@&#8203;goncalovf](https://github.com/goncalovf), [@&#8203;Hubbz](https://github.com/Hubbz), [@&#8203;Jack-Works](https://github.com/Jack-Works), [@&#8203;m4theushw](https://github.com/m4theushw), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;ryancogswell](https://github.com/ryancogswell), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;tanyabouman](https://github.com/tanyabouman), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.3.1`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;531) [Compare Source](https://github.com/mui/material-ui/compare/v5.3.0...v5.3.1) <!-- generated comparing v5.3.0..master --> *Jan 24, 2022* A big thanks to the 12 contributors who made this release possible. Here are some highlights ✨: - 🛠 [@&#8203;mnajdova](https://github.com/mnajdova) added interoperability guide for using Tailwind CSS ([#&#8203;30700](https://github.com/mui/material-ui/issues/30700)) - A meaningful number of 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/icons-material@5.3.1` - ​<!-- 04 -->\[icons] Fix naming typos ([#&#8203;30512](https://github.com/mui/material-ui/issues/30512)) [@&#8203;MrHBS](https://github.com/MrHBS) - ​<!-- 03 -->\[icons] Makes material-icons work with Joy ([#&#8203;30681](https://github.com/mui/material-ui/issues/30681)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/base@5.0.0-alpha.66` - ​<!-- 02 -->\[SliderUnstyled] Improve typings on some internal utils ([#&#8203;30614](https://github.com/mui/material-ui/issues/30614)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### Core - ​<!-- 24 -->\[core] Batch small changes ([#&#8203;30690](https://github.com/mui/material-ui/issues/30690)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 23 -->\[core] Add new structure to ignore list crowdin ([#&#8203;30608](https://github.com/mui/material-ui/issues/30608)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 22 -->\[core] Correct version in package.json ([#&#8203;30677](https://github.com/mui/material-ui/issues/30677)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 01 -->\[test] Fix buildApiUtils tests on Windows ([#&#8203;30698](https://github.com/mui/material-ui/issues/30698)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Docs - ​<!-- 26 -->\[blog] Enable blog index ([#&#8203;30724](https://github.com/mui/material-ui/issues/30724)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 25 -->\[blog] Introducing the Row Grouping feature ([#&#8203;30598](https://github.com/mui/material-ui/issues/30598)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - ​<!-- 21 -->\[docs] Fix SEO crawl errors ([#&#8203;30733](https://github.com/mui/material-ui/issues/30733)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 20 -->\[docs] Update migration-v4.md ([#&#8203;30721](https://github.com/mui/material-ui/issues/30721)) [@&#8203;ddecrulle](https://github.com/ddecrulle) - ​<!-- 19 -->\[docs] Fix migration issues detected by `ahrefs` ([#&#8203;30751](https://github.com/mui/material-ui/issues/30751)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 18 -->\[docs] Add interoprability guide for using Tailwind CSS ([#&#8203;30700](https://github.com/mui/material-ui/issues/30700)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 17 -->\[docs] Fix typo in containedSizeMedium class ([#&#8203;30723](https://github.com/mui/material-ui/issues/30723)) [@&#8203;aaneitchik](https://github.com/aaneitchik) - ​<!-- 16 -->\[docs] Hotfix the wrong URL in X marketing page ([#&#8203;30729](https://github.com/mui/material-ui/issues/30729)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 15 -->\[docs] Post migration preparation fix ([#&#8203;30716](https://github.com/mui/material-ui/issues/30716)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 14 -->\[docs] Update remix example to restore from error pages ([#&#8203;30592](https://github.com/mui/material-ui/issues/30592)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 13 -->\[docs] Use new URLs when enable_redirects is true ([#&#8203;30704](https://github.com/mui/material-ui/issues/30704)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 12 -->\[docs] Add a missing bracket in the migration-v4 guide ([#&#8203;30616](https://github.com/mui/material-ui/issues/30616)) [@&#8203;chaosmirage](https://github.com/chaosmirage) - ​<!-- 11 -->\[docs] Add Checkbox color prop change ([#&#8203;30697](https://github.com/mui/material-ui/issues/30697)) [@&#8203;aaneitchik](https://github.com/aaneitchik) - ​<!-- 10 -->\[docs] Fix migration to have singular urls ([#&#8203;30695](https://github.com/mui/material-ui/issues/30695)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 09 -->\[docs] Update UXPin link to new landing page ([#&#8203;30691](https://github.com/mui/material-ui/issues/30691)) [@&#8203;Evomatic](https://github.com/Evomatic) - ​<!-- 08 -->\[docs] Close user menu on click in the responsive app bar demo ([#&#8203;30664](https://github.com/mui/material-ui/issues/30664)) [@&#8203;NoahYarian](https://github.com/NoahYarian) - ​<!-- 07 -->\[docs] Clear the difference between UI and React components ([#&#8203;29930](https://github.com/mui/material-ui/issues/29930)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 06 -->\[docs] Make Autocomplete docs gender neutral ([#&#8203;30679](https://github.com/mui/material-ui/issues/30679)) [@&#8203;exequielbc](https://github.com/exequielbc) - ​<!-- 05 -->\[docs] Update doc structure for X components ([#&#8203;30684](https://github.com/mui/material-ui/issues/30684)) [@&#8203;siriwatknp](https://github.com/siriwatknp) All contributors of this release in alphabetical order: [@&#8203;aaneitchik](https://github.com/aaneitchik), [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;chaosmirage](https://github.com/chaosmirage), [@&#8203;ddecrulle](https://github.com/ddecrulle), [@&#8203;Evomatic](https://github.com/Evomatic), [@&#8203;exequielbc](https://github.com/exequielbc), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;MrHBS](https://github.com/MrHBS), [@&#8203;NoahYarian](https://github.com/NoahYarian), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;siriwatknp](https://github.com/siriwatknp) ### [`v5.3.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;530) [Compare Source](https://github.com/mui/material-ui/compare/v5.2.8...v5.3.0) <!-- generated comparing v5.2.8..master --> *Jan 17, 2022* A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨: - 🛠 [@&#8203;siriwatknp](https://github.com/siriwatknp) added support for callbacks in styleOverrides ([#&#8203;30524](https://github.com/mui/material-ui/issues/30524)) - 🧩 [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) and [@&#8203;VicHofs](https://github.com/VicHofs) improved customization of components ([#&#8203;30515](https://github.com/mui/material-ui/issues/30515), [#&#8203;30212](https://github.com/mui/material-ui/issues/30212)) - 🛠 [@&#8203;hbjORbj](https://github.com/hbjORbj) fixed the use of ResizeObserver in Masonry component ([#&#8203;29896](https://github.com/mui/material-ui/issues/29896)) - 📄 [@&#8203;danilo-leal](https://github.com/danilo-leal) and [@&#8203;siriwatknp](https://github.com/siriwatknp) created our own blog home page ([#&#8203;30121](https://github.com/mui/material-ui/issues/30121)) ##### `@mui/material@5.3.0` - \[Autocomplete] Add ability to pass props to `Paper` component ([#&#8203;30515](https://github.com/mui/material-ui/issues/30515)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - \[Select] Add defaultOpen prop ([#&#8203;30212](https://github.com/mui/material-ui/issues/30212)) [@&#8203;VicHofs](https://github.com/VicHofs) ##### `@mui/system@5.3.0` - \[system]\[box, grid, typography] `textTransform` prop should work directly on component ([#&#8203;30437](https://github.com/mui/material-ui/issues/30437)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[system] Support callback value in `styleOverrides` slot ([#&#8203;30524](https://github.com/mui/material-ui/issues/30524)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/lab@5.0.0-alpha.65` - \[Masonry] Observe every masonry child to trigger computation when needed ([#&#8203;29896](https://github.com/mui/material-ui/issues/29896)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[MobileDatePicker] Fix calling onOpen when readOnly is true ([#&#8203;30561](https://github.com/mui/material-ui/issues/30561)) [@&#8203;alisasanib](https://github.com/alisasanib) ##### `@mui/codemod@5.3.0` - \[codemod] Bump `jscodeshift` to remove `colors` dependency ([#&#8203;30578](https://github.com/mui/material-ui/issues/30578)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/styled-engine-sc@5.3.0` - \[styled-engine-sc] Add the withConfig API to enable using the babel plugin for styled-comonents ([#&#8203;30589](https://github.com/mui/material-ui/issues/30589)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/joy@5.0.0-alpha.11` - \[Joy] Add `SvgIcon` component ([#&#8203;30570](https://github.com/mui/material-ui/issues/30570)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/base@5.0.0-alpha.65` - \[SliderUnstyled] Add useSlider hook and polish ([#&#8203;30094](https://github.com/mui/material-ui/issues/30094)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### Docs - \[docs] End code block in test/README.md ([#&#8203;30531](https://github.com/mui/material-ui/issues/30531)) [@&#8203;yaboi](https://github.com/yaboi) - \[docs] Remove redundant grouping in /components/radio-buttons/ ([#&#8203;30065](https://github.com/mui/material-ui/issues/30065)) [@&#8203;eps1lon](https://github.com/eps1lon) - \[docs] Update migration scripts and e2e tests ([#&#8203;30583](https://github.com/mui/material-ui/issues/30583)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Fix migration guides for versions older than v4 ([#&#8203;30595](https://github.com/mui/material-ui/issues/30595)) [@&#8203;kkirsche](https://github.com/kkirsche) - \[docs] Inform about specific files for DataGrid locales ([#&#8203;30411](https://github.com/mui/material-ui/issues/30411)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[docs] jss-to-tss migration advise to drop clsx in favor of cx ([#&#8203;30527](https://github.com/mui/material-ui/issues/30527)) [@&#8203;garronej](https://github.com/garronej) - \[docs] Fix integration with MUI X ([#&#8203;30593](https://github.com/mui/material-ui/issues/30593)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Adding peer dependencies explanation on [@&#8203;mui/lab](https://github.com/mui/lab) README.md ([#&#8203;30532](https://github.com/mui/material-ui/issues/30532)) [@&#8203;glaucoheitor](https://github.com/glaucoheitor) - \[docs] Add missing quote in migration docs ([#&#8203;30587](https://github.com/mui/material-ui/issues/30587)) [@&#8203;Atralbus](https://github.com/Atralbus) - \[docs] Update link to Doit sponsor ([#&#8203;30586](https://github.com/mui/material-ui/issues/30586)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Add products identifier and drawer ([#&#8203;30283](https://github.com/mui/material-ui/issues/30283)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[website] Fix code button with installation command ([#&#8203;30622](https://github.com/mui/material-ui/issues/30622)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[website] Add a Blog index page ([#&#8203;30121](https://github.com/mui/material-ui/issues/30121)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[website] Migrate Twitter from [@&#8203;MaterialUI](https://github.com/MaterialUI) to @&#8203;MUI_hq [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Add Andrii to the About Us page ([#&#8203;30581](https://github.com/mui/material-ui/issues/30581)) [@&#8203;cherniavskii](https://github.com/cherniavskii) ##### Core - \[core] Revert changes to peer dependencies ([#&#8203;30662](https://github.com/mui/material-ui/issues/30662)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Renovate should not try to update node ([#&#8203;30659](https://github.com/mui/material-ui/issues/30659)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Remove dead files ([#&#8203;30663](https://github.com/mui/material-ui/issues/30663)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Fix outdated TypeScript template ([#&#8203;30596](https://github.com/mui/material-ui/issues/30596)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Remove extra `</p>` from header of README.md ([#&#8203;30530](https://github.com/mui/material-ui/issues/30530)) [@&#8203;yaboi](https://github.com/yaboi) - \[core] Fix `docs:api` script for Windows OS ([#&#8203;30533](https://github.com/mui/material-ui/issues/30533)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) All contributors of this release in alphabetical order: [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;alisasanib](https://github.com/alisasanib), [@&#8203;Atralbus](https://github.com/Atralbus), [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;garronej](https://github.com/garronej), [@&#8203;glaucoheitor](https://github.com/glaucoheitor), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;kkirsche](https://github.com/kkirsche), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;VicHofs](https://github.com/VicHofs), [@&#8203;yaboi](https://github.com/yaboi), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.2.8`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;528) [Compare Source](https://github.com/mui/material-ui/compare/v5.2.7...v5.2.8) <!-- generated comparing v5.2.7..master --> *Jan 10, 2022* A big thanks to the 10 contributors who made this release possible. Here are some highlights ✨: - A meaningful number of 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.2.8` - ​<!-- 05 -->\[TextField]\[inputlabel] Remove `pointer-events: none` property ([#&#8203;30493](https://github.com/mui/material-ui/issues/30493)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 02 -->\[Slider] Add `input` slot to components and componentsProps ([#&#8203;30362](https://github.com/mui/material-ui/issues/30362)) [@&#8203;alexandre-lelain](https://github.com/alexandre-lelain) ##### `@mui/joy@5.0.0-alpha.10` - ​<!-- 04 -->\[Joy] Add `Typography` component ([#&#8203;30489](https://github.com/mui/material-ui/issues/30489)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 03 -->\[Joy] Add functional `Switch` component ([#&#8203;30487](https://github.com/mui/material-ui/issues/30487)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 18 -->\[docs] Update markdown parser to remove backticks from description ([#&#8203;30495](https://github.com/mui/material-ui/issues/30495)) [@&#8203;aefox](https://github.com/aefox) - ​<!-- 17 -->\[docs] Fix the crash when applying custom colors ([#&#8203;30563](https://github.com/mui/material-ui/issues/30563)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 16 -->\[docs] Location change of Sebastian ([#&#8203;30528](https://github.com/mui/material-ui/issues/30528)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 15 -->\[docs] Lint markdown in the CI ([#&#8203;30395](https://github.com/mui/material-ui/issues/30395)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 14 -->\[docs] Fix `componentsProps` API docs and PropTypes ([#&#8203;30502](https://github.com/mui/material-ui/issues/30502)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 13 -->\[docs] Codemod doc for overriding styles using tss ([#&#8203;30499](https://github.com/mui/material-ui/issues/30499)) [@&#8203;garronej](https://github.com/garronej) - ​<!-- 12 -->\[docs] fix edge case when replacing data-grid url for migration ([#&#8203;30505](https://github.com/mui/material-ui/issues/30505)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 11 -->\[docs] fix replace url for migration ([#&#8203;30503](https://github.com/mui/material-ui/issues/30503)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 10 -->\[docs] Prepare scripts for migrating to new structure ([#&#8203;30386](https://github.com/mui/material-ui/issues/30386)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 09 -->\[docs] Adjust RTL Guide demos to fully support RTL ([#&#8203;30387](https://github.com/mui/material-ui/issues/30387)) [@&#8203;noam-honig](https://github.com/noam-honig) - ​<!-- 08 -->\[docs] Move [@&#8203;eps1lon](https://github.com/eps1lon) to community ([#&#8203;30473](https://github.com/mui/material-ui/issues/30473)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 07 -->\[docs] Fix typo and spelling in the-sx-prop.md ([#&#8203;30482](https://github.com/mui/material-ui/issues/30482)) [@&#8203;aefox](https://github.com/aefox) - ​<!-- 06 -->\[docs] More general docs polishing ([#&#8203;30371](https://github.com/mui/material-ui/issues/30371)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 01 -->\[website] Add José on the /about page ([#&#8203;30492](https://github.com/mui/material-ui/issues/30492)) [@&#8203;danilo-leal](https://github.com/danilo-leal) All contributors of this release in alphabetical order: [@&#8203;aefox](https://github.com/aefox), [@&#8203;alexandre-lelain](https://github.com/alexandre-lelain), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;garronej](https://github.com/garronej), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;noam-honig](https://github.com/noam-honig), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.2.7`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;527) [Compare Source](https://github.com/mui/material-ui/compare/v5.2.6...v5.2.7) <!-- generated comparing v5.2.6..master --> *Jan 3, 2022* A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨: - 📓 Improvements on the Vietnamese (vi-VN) and Finnish (fi-FI) locales ([#&#8203;30426](https://github.com/mui/material-ui/issues/30426), [#&#8203;30442](https://github.com/mui/material-ui/issues/30442)) [@&#8203;hckhanh](https://github.com/hckhanh) [@&#8203;Certificate](https://github.com/Certificate) - And more 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.2.7` - ​<!-- 14 -->\[Autocomplete] Fix calling onChange for duplicate values ([#&#8203;30374](https://github.com/mui/material-ui/issues/30374)) [@&#8203;alisasanib](https://github.com/alisasanib) - ​<!-- 13 -->\[Avatar] Fix TypeScript error on imgProps ([#&#8203;30255](https://github.com/mui/material-ui/issues/30255)) [@&#8203;ahmad-reza619](https://github.com/ahmad-reza619) - ​<!-- 12 -->\[Badge] Fix `classes` prop TypeScript type ([#&#8203;30427](https://github.com/mui/material-ui/issues/30427)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 03 -->\[SvgIcon] Allow viewBox to inherit from Component through inheritViewBox prop ([#&#8203;29954](https://github.com/mui/material-ui/issues/29954)) [@&#8203;alex-dikusar](https://github.com/alex-dikusar) - ​<!-- 04 -->\[SvgIcon] Correct API docs and code style ([#&#8203;30470](https://github.com/mui/material-ui/issues/30470)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Docs - ​<!-- 11 -->\[blog] 2021 ([#&#8203;30425](https://github.com/mui/material-ui/issues/30425)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 15 -->\[docs] Fix typo on the Grid docs page ([#&#8203;30446](https://github.com/mui/material-ui/issues/30446)) [@&#8203;abhi45](https://github.com/abhi45) - ​<!-- 07 -->\[docs] Fix `useMediaQuery` SSR example to v5 theme API ([#&#8203;30454](https://github.com/mui/material-ui/issues/30454)) [@&#8203;ValentinH](https://github.com/ValentinH) - ​<!-- 11 -->\[docs] Improve the migration guide and add examples for transforming to `tss-react` ([#&#8203;30388](https://github.com/mui/material-ui/issues/30388)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 09 -->\[docs] Make the reference to the select clearer ([#&#8203;30460](https://github.com/mui/material-ui/issues/30460)) [@&#8203;boazrymland](https://github.com/boazrymland) - ​<!-- 08 -->\[docs] Sync translations with Crowdin ([#&#8203;30385](https://github.com/mui/material-ui/issues/30385)) [@&#8203;l10nbot](https://github.com/l10nbot) - ​<!-- 06 -->\[example] Avoid double rendering in the Remix example ([#&#8203;30366](https://github.com/mui/material-ui/issues/30366)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 05 -->\[i18n] improve viVN locale ([#&#8203;30426](https://github.com/mui/material-ui/issues/30426)) [@&#8203;hckhanh](https://github.com/hckhanh) - ​<!-- 04 -->\[l10n] Improve fiFI locale ([#&#8203;30442](https://github.com/mui/material-ui/issues/30442)) [@&#8203;Certificate](https://github.com/Certificate) - ​<!-- 02 -->\[website] Add new batch of open roles ([#&#8203;30282](https://github.com/mui/material-ui/issues/30282)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 01 -->\[website] Refactor page context with next router ([#&#8203;30020](https://github.com/mui/material-ui/issues/30020)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Core - ​<!-- 13 -->\[core] Automatically close issues that are incomplete and inactive ([#&#8203;30459](https://github.com/mui/material-ui/issues/30459)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 10 -->\[core] Remove contrib tweet ([#&#8203;30455](https://github.com/mui/material-ui/issues/30455)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;abhi45](https://github.com/abhi45), [@&#8203;ahmad-reza619](https://github.com/ahmad-reza619), [@&#8203;alex-dikusar](https://github.com/alex-dikusar), [@&#8203;alisasanib](https://github.com/alisasanib), [@&#8203;boazrymland](https://github.com/boazrymland), [@&#8203;Certificate](https://github.com/Certificate), [@&#8203;hckhanh](https://github.com/hckhanh), [@&#8203;l10nbot](https://github.com/l10nbot), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ValentinH](https://github.com/ValentinH), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.2.6`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;526) [Compare Source](https://github.com/mui/material-ui/compare/v5.2.5...v5.2.6) <!-- generated comparing v5.2.5..master --> *Dec 27, 2021* A big thanks to the 14 contributors who made this release possible. Here are some highlights ✨: - 📓 The Norwegian Bokmål (nb-NO) locale was added ([#&#8203;27520](https://github.com/mui/material-ui/issues/27520)) [@&#8203;wogsland](https://github.com/wogsland) - 🛠 Introduced a new `useBadge` hook in the `@mui/base` package ([#&#8203;30246](https://github.com/mui/material-ui/issues/30246)) [@&#8203;mnajdova](https://github.com/mnajdova) - And more 🐛 bug fixes and 📚 documentation improvements. ##### `@mui/material@5.2.6` - ​<!-- 24 -->\[ButtonGroup] Fix typo in ButtonGroupContext's interface ([#&#8203;30376](https://github.com/mui/material-ui/issues/30376)) [@&#8203;kealjones-wk](https://github.com/kealjones-wk) - ​<!-- 03 -->\[l10n] Add Norwegian Bokmål (nb-NO) locale ([#&#8203;27520](https://github.com/mui/material-ui/issues/27520)) [@&#8203;wogsland](https://github.com/wogsland) ##### `@mui/base@5.0.0-alpha.62` - ​<!-- 26 -->\[BadgeUnstyled] Add useBadge hook ([#&#8203;30246](https://github.com/mui/material-ui/issues/30246)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/joy@5.0.0-alpha.8` - ​<!-- 04 -->\[Joy] Button API ([#&#8203;29962](https://github.com/mui/material-ui/issues/29962)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 27 -->\[docs] Fix color coercion ([#&#8203;30319](https://github.com/mui/material-ui/issues/30319)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 25 -->\[blog] Fix file import conflict resolution ([#&#8203;30391](https://github.com/mui/material-ui/issues/30391)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 21 -->\[docs] Fix crash on Safari because of unsupported lookahead feature ([#&#8203;30345](https://github.com/mui/material-ui/issues/30345)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - ​<!-- 20 -->\[docs] Update to new website domain ([#&#8203;30396](https://github.com/mui/material-ui/issues/30396)) [@&#8203;ryota-murakami](https://github.com/ryota-murakami) - ​<!-- 19 -->\[docs] Fix text from material-ui to [@&#8203;mui](https://github.com/mui) to reflect v5 name changes ([#&#8203;30393](https://github.com/mui/material-ui/issues/30393)) [@&#8203;pupudu](https://github.com/pupudu) - ​<!-- 18 -->\[docs] Fix a11y in Menu demos ([#&#8203;30378](https://github.com/mui/material-ui/issues/30378)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 17 -->\[docs] Document how to unmount transition child ([#&#8203;30382](https://github.com/mui/material-ui/issues/30382)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 16 -->\[docs] The current standard for quotes is QUOTATION MARK [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 15 -->\[docs] Fix 404 links ([#&#8203;30380](https://github.com/mui/material-ui/issues/30380)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 14 -->\[docs] Fix Breadcrumb description ([#&#8203;30307](https://github.com/mui/material-ui/issues/30307)) [@&#8203;jamesmelzer](https://github.com/jamesmelzer) - ​<!-- 13 -->\[docs] Modify injection order for Gatsby and SSR examples ([#&#8203;30358](https://github.com/mui/material-ui/issues/30358)) [@&#8203;ShuPink](https://github.com/ShuPink) - ​<!-- 12 -->\[docs] Improve the translation experience ([#&#8203;30373](https://github.com/mui/material-ui/issues/30373)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 11 -->\[docs] Sync translations with Crowdin ([#&#8203;30176](https://github.com/mui/material-ui/issues/30176)) [@&#8203;l10nbot](https://github.com/l10nbot) - ​<!-- 10 -->\[docs] Fix link to /size-snapshot ([#&#8203;30363](https://github.com/mui/material-ui/issues/30363)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 09 -->\[docs] Fix incorrect aria label in SpeedDial demo ([#&#8203;30354](https://github.com/mui/material-ui/issues/30354)) [@&#8203;chwallen](https://github.com/chwallen) - ​<!-- 08 -->\[docs] Fix incorrect number of breakpoint helpers ([#&#8203;30353](https://github.com/mui/material-ui/issues/30353)) [@&#8203;chwallen](https://github.com/chwallen) - ​<!-- 07 -->\[docs] Update outdated links ([#&#8203;30260](https://github.com/mui/material-ui/issues/30260)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 06 -->\[docs] Support redirects from old urls to /material/\* ([#&#8203;30286](https://github.com/mui/material-ui/issues/30286)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 05 -->\[examples] Fix CSS modules integration ([#&#8203;30381](https://github.com/mui/material-ui/issues/30381)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 02 -->\[website] Fix SEO issues ([#&#8203;30372](https://github.com/mui/material-ui/issues/30372)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 01 -->\[website] Sync sponsors ([#&#8203;30259](https://github.com/mui/material-ui/issues/30259)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 28 -->\[core] Rename Material UI to MUI ([#&#8203;30338](https://github.com/mui/material-ui/issues/30338)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 23 -->\[core] Fix warning in dev mode ([#&#8203;30368](https://github.com/mui/material-ui/issues/30368)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 22 -->\[core] Update `buildApi` script to support new structure ([#&#8203;30245](https://github.com/mui/material-ui/issues/30245)) [@&#8203;siriwatknp](https://github.com/siriwatknp) All contributors of this release in alphabetical order: [@&#8203;cherniavskii](https://github.com/cherniavskii), [@&#8203;chwallen](https://github.com/chwallen), [@&#8203;jamesmelzer](https://github.com/jamesmelzer), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;kealjones-wk](https://github.com/kealjones-wk), [@&#8203;l10nbot](https://github.com/l10nbot), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;pupudu](https://github.com/pupudu), [@&#8203;ryota-murakami](https://github.com/ryota-murakami), [@&#8203;ShuPink](https://github.com/ShuPink), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;wogsland](https://github.com/wogsland), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.2.5`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;525) [Compare Source](https://github.com/mui/material-ui/compare/v5.2.4...v5.2.5) <!-- generated comparing v5.2.4..master --> *Dec 20, 2021* A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: - 🛠 This release mostly improves what's behind the scenes: infrastructure and tests - 📓 Danish (da-DK) locale was added ([#&#8203;29485](https://github.com/mui/material-ui/issues/29485)) [@&#8203;mikk5829](https://github.com/mikk5829) - 🖌 Polished the design of Base components ([#&#8203;30149](https://github.com/mui/material-ui/issues/30149)) and the docs in general ([#&#8203;29994](https://github.com/mui/material-ui/issues/29994)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - 📚 Many additions and improvements to the documentation were made ##### `@mui/material@5.2.5` - \[l10n] Add Danish (da-DK) locale ([#&#8203;29485](https://github.com/mui/material-ui/issues/29485)) [@&#8203;mikk5829](https://github.com/mikk5829) - \[LoadingButton] Label progressbar by the LoadingButton ([#&#8203;30002](https://github.com/mui/material-ui/issues/30002)) [@&#8203;eps1lon](https://github.com/eps1lon) - \[Tabs] Remove unnecessary `Partial<>` type around TabIndicatorProps type ([#&#8203;30254](https://github.com/mui/material-ui/issues/30254)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ##### `@mui/system@5.2.5` - \[system] Use `useEnhancedEffect` to prevent flicker ([#&#8203;30216](https://github.com/mui/material-ui/issues/30216)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/lab@5.0.0-alpha.61` - \[pickers] Fix the wrong MuiClockPicker's ArrowSwitcher slot name ([#&#8203;30226](https://github.com/mui/material-ui/issues/30226)) [@&#8203;rejetto](https://github.com/rejetto) ##### Docs - \[docs] Run JS compiler on markdown output ([#&#8203;29732](https://github.com/mui/material-ui/issues/29732)) [@&#8203;Janpot](https://github.com/Janpot) - \[Badge] Add tests for `anchorOrigin` prop ([#&#8203;30147](https://github.com/mui/material-ui/issues/30147)) [@&#8203;daniel-sachs](https://github.com/daniel-sachs) - \[docs] Add cssmodule injection order comments to Nextjs example ([#&#8203;30213](https://github.com/mui/material-ui/issues/30213)) [@&#8203;ShuPink](https://github.com/ShuPink) - \[docs] Remove extra word in Select component code example comments ([#&#8203;30281](https://github.com/mui/material-ui/issues/30281)) [@&#8203;KThompso](https://github.com/KThompso) - \[docs] Improve the description of the Accordion ([#&#8203;30253](https://github.com/mui/material-ui/issues/30253)) [@&#8203;jamesmelzer](https://github.com/jamesmelzer) - \[docs] Heading capitalization convention [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Rename remaining 'unstyled' references to 'base' ([#&#8203;30206](https://github.com/mui/material-ui/issues/30206)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[docs] Add to migration doc about ref type specificity ([#&#8203;30114](https://github.com/mui/material-ui/issues/30114)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - \[docs] Add script to clone pages ([#&#8203;30107](https://github.com/mui/material-ui/issues/30107)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[docs] Correct colors in breakpoints documentation ([#&#8203;30219](https://github.com/mui/material-ui/issues/30219)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[docs] Sync icon search UI state with the url ([#&#8203;30075](https://github.com/mui/material-ui/issues/30075)) [@&#8203;Janpot](https://github.com/Janpot) - \[docs] Base components demos design polish ([#&#8203;30149](https://github.com/mui/material-ui/issues/30149)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[docs] General documentation polish ([#&#8203;29994](https://github.com/mui/material-ui/issues/29994)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[examples] Fix typo in the remix example's README ([#&#8203;30289](https://github.com/mui/material-ui/issues/30289)) [@&#8203;lemol](https://github.com/lemol) - \[website] Remove expired gold sponsor ([#&#8203;30222](https://github.com/mui/material-ui/issues/30222)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[website] Remove broken showcase links ([#&#8203;30217](https://github.com/mui/material-ui/issues/30217)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### Core - \[test] Reduce bundle size comparison memory consumption ([#&#8203;30195](https://github.com/mui/material-ui/issues/30195)) [@&#8203;Janpot](https://github.com/Janpot) - \[core] make snapshot comparison more resilient ([#&#8203;30183](https://github.com/mui/material-ui/issues/30183)) [@&#8203;Janpot](https://github.com/Janpot) - \[core] update formatted ts demo to support new structure ([#&#8203;30248](https://github.com/mui/material-ui/issues/30248)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[core] cache dependencies in github actions ([#&#8203;30211](https://github.com/mui/material-ui/issues/30211)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[core] fix root package version ([#&#8203;30204](https://github.com/mui/material-ui/issues/30204)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[core] Fail the build when the dangerjs script errors ([#&#8203;30186](https://github.com/mui/material-ui/issues/30186)) [@&#8203;Janpot](https://github.com/Janpot) - \[test] Add E2E website tests ([#&#8203;30128](https://github.com/mui/material-ui/issues/30128)) [@&#8203;siriwatknp](https://github.com/siriwatknp) All contributors of this release in alphabetical order: [@&#8203;daniel-sachs](https://github.com/daniel-sachs), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;jamesmelzer](https://github.com/jamesmelzer), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;KThompso](https://github.com/KThompso), [@&#8203;lemol](https://github.com/lemol), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mikk5829](https://github.com/mikk5829), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;rejetto](https://github.com/rejetto), [@&#8203;ShuPink](https://github.com/ShuPink), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.2.4`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;524) [Compare Source](https://github.com/mui/material-ui/compare/v5.2.3...v5.2.4) <!-- generated comparing v5.2.3..master --> *Dec 14, 2021* A big thanks to the 16 contributors who made this release possible. Here are some highlights ✨: - ✨ Add `not` operator to `theme.breakpoints` ([#&#8203;29311](https://github.com/mui/material-ui/issues/29311)) [@&#8203;Philipp000](https://github.com/Philipp000) ```js const styles = (theme) => ({ root: { backgroundColor: 'blue', // Match [xs, md) and [md + 1, ∞) // [xs, md) and [lg, ∞) // [0px, 900px) and [1200px, ∞) [theme.breakpoints.not('md')]: { backgroundColor: 'red', }, }, }); ``` - And many more 🐛 bug fixes and 📚 improvements. ##### `@mui/material@5.2.4` - ​<!-- 14 -->\[esm] Correct a styles imports ([#&#8203;29976](https://github.com/mui/material-ui/issues/29976)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 12 -->\[GlobalStyles] Fix `theme` type ([#&#8203;30072](https://github.com/mui/material-ui/issues/30072)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 11 -->\[Grid] Fix grid items to respond to the container's responsive columns ([#&#8203;29715](https://github.com/mui/material-ui/issues/29715)) [@&#8203;kkorach](https://github.com/kkorach) - ​<!-- 04 -->\[TextField] Fix missing space before asterisk in `OutlinedInput`'s label ([#&#8203;29630](https://github.com/mui/material-ui/issues/29630)) [@&#8203;alisasanib](https://github.com/alisasanib) - ​<!-- 03 -->\[Transition] Allow any valid HTML attribute to be passed ([#&#8203;29888](https://github.com/mui/material-ui/issues/29888)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 02 -->\[types] Fix discrepancy between core and system `ThemeOptions` ([#&#8203;30095](https://github.com/mui/material-ui/issues/30095)) [@&#8203;fmeum](https://github.com/fmeum) - ​<!-- 09 -->\[InputBase] Add prop for disabling global styles ([#&#8203;29213](https://github.com/mui/material-ui/issues/29213)) [@&#8203;bryan-hunter](https://github.com/bryan-hunter) - ​<!-- 08 -->\[Select] Improve multiple logic ([#&#8203;30135](https://github.com/mui/material-ui/issues/30135)) [@&#8203;ladygo93](https://github.com/ladygo93) ##### `@mui/system@5.2.4` - ​<!-- 06 -->\[system] Don't transition when re-appearing ([#&#8203;30108](https://github.com/mui/material-ui/issues/30108)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 05 -->\[system] Add `not` operator to `breakpoints` ([#&#8203;29311](https://github.com/mui/material-ui/issues/29311)) [@&#8203;Philipp000](https://github.com/Philipp000) ##### `@mui/base@5.0.0-alpha.60` - ​<!-- 25 -->\[BadgeUnstyled] Make it conformant with other base components ([#&#8203;30141](https://github.com/mui/material-ui/issues/30141)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/icons-material@5.2.4` - ​<!-- 10 -->\[icons] Correct location of icon download folder ([#&#8203;29839](https://github.com/mui/material-ui/issues/29839)) [@&#8203;yaboi](https://github.com/yaboi) ##### Docs - ​<!-- 22 -->\[docs] Explain the use of Select's label in FormControl ([#&#8203;30189](https://github.com/mui/material-ui/issues/30189)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 21 -->\[docs] Don't run nprogress on shallow routing ([#&#8203;30087](https://github.com/mui/material-ui/issues/30087)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 20 -->\[docs] Add Data Driven Forms to related projects ([#&#8203;30078](https://github.com/mui/material-ui/issues/30078)) [@&#8203;rvsia](https://github.com/rvsia) - ​<!-- 19 -->\[docs] Sync translations with Crowdin ([#&#8203;30067](https://github.com/mui/material-ui/issues/30067)) [@&#8203;l10nbot](https://github.com/l10nbot) - ​<!-- 18 -->\[docs] Fix link on "Custom variables" section in the Theming page [#&#8203;30100](https://github.com/mui/material-ui/issues/30100) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 17 -->\[docs] Fix justifyContent option in the Grid interactive demo ([#&#8203;30117](https://github.com/mui/material-ui/issues/30117)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 16 -->\[docs] Add tip to help access the docs of a previous version when finding answers in Stack Overflow ([#&#8203;30101](https://github.com/mui/material-ui/issues/30101)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 15 -->\[docs] Fix import example inside Unstyled Backdrop section ([#&#8203;30098](https://github.com/mui/material-ui/issues/30098)) [@&#8203;TheodosiouTh](https://github.com/TheodosiouTh) - ​<!-- 01 -->\[website] Column pinning and Tree data are out ([#&#8203;30136](https://github.com/mui/material-ui/issues/30136)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 07 -->\[survey] Remove survey promotion items ([#&#8203;30122](https://github.com/mui/material-ui/issues/30122)) [@&#8203;danilo-leal](https://github.com/danilo-leal) ##### Core - ​<!-- 23 -->\[core] Fix link to Open Collective [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 26 -->\[core] Update snapshots and s3 fallback ([#&#8203;30134](https://github.com/mui/material-ui/issues/30134)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 24 -->\[ci] Update CI bucket ([#&#8203;30080](https://github.com/mui/material-ui/issues/30080)) [@&#8203;Janpot](https://github.com/Janpot) - ​<!-- 13 -->\[fix] size:snapshot for mui-material-next and mui-joy components ([#&#8203;30106](https://github.com/mui/material-ui/issues/30106)) [@&#8203;Janpot](https://github.com/Janpot) All contributors of this release in alphabetical order: [@&#8203;alisasanib](https://github.com/alisasanib), [@&#8203;bryan-hunter](https://github.com/bryan-hunter), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;fmeum](https://github.com/fmeum), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;kkorach](https://github.com/kkorach), [@&#8203;l10nbot](https://github.com/l10nbot), [@&#8203;ladygo93](https://github.com/ladygo93), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;Philipp000](https://github.com/Philipp000), [@&#8203;rvsia](https://github.com/rvsia), [@&#8203;TheodosiouTh](https://github.com/TheodosiouTh), [@&#8203;yaboi](https://github.com/yaboi) ### [`v5.2.3`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;523) [Compare Source](https://github.com/mui/material-ui/compare/v5.2.2...v5.2.3) <!-- generated comparing v5.2.2..master --> *Dec 6, 2021* A big thanks to the 25 contributors who made this release possible. Here are some highlights ✨: - ✨ We have introduced a new unstyled component in `@mui/base`: `TablePagination` ([#&#8203;29759](https://github.com/mui/material-ui/issues/29759)) [@&#8203;mnajdova](https://github.com/mnajdova) <a href="https://mui.com/components/tables/#unstyled-table"><img width="800" alt="unstyled table" src="https://user-images.githubusercontent.com/4512430/144862194-584356ef-7d9d-462c-a631-186a7e716193.png"></a> You can follow our progress with unstyled components at https://github.com/mui/material-ui/issues/27170. - 🎉 We have added an example of how to use MUI with [Remix](https://remix.run/) ([#&#8203;29952](https://github.com/mui/material-ui/issues/29952)) [@&#8203;mnajdova](https://github.com/mnajdova) - And many more 🐛 bug fixes and 📚 improvements. ##### `@mui/material@5.2.3` - ​<!-- 33 -->\[Accordion] Add a test for handling `square` prop ([#&#8203;29972](https://github.com/mui/material-ui/issues/29972)) [@&#8203;daniel-sachs](https://github.com/daniel-sachs) - ​<!-- 32 -->\[Alert] Fix `square` Paper prop ([#&#8203;30027](https://github.com/mui/material-ui/issues/30027)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 31 -->\[AvatarGroup] Allow specifying total number of avatars ([#&#8203;29898](https://github.com/mui/material-ui/issues/29898)) [@&#8203;eduardomcv](https://github.com/eduardomcv) - ​<!-- 29 -->\[Button] Fix regression from context API ([#&#8203;29982](https://github.com/mui/material-ui/issues/29982)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 13 -->\[Grid] Fix generated classes for `spacing` prop when the value is object ([#&#8203;29880](https://github.com/mui/material-ui/issues/29880)) [@&#8203;jayeclark](https://github.com/jayeclark) - ​<!-- 10 -->\[Select] Should not crash when an empty array is passed with `multiple` enabled ([#&#8203;29957](https://github.com/mui/material-ui/issues/29957)) [@&#8203;Domino987](https://github.com/Domino987) ##### `@mui/system@5.2.3` - ​<!-- 06 -->\[system] Fix return type of `createBox` ([#&#8203;29989](https://github.com/mui/material-ui/issues/29989)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 05 -->\[system] Support boolean values in typescript for the `sx` prop when used as array ([#&#8203;29911](https://github.com/mui/material-ui/issues/29911)) [@&#8203;tasugi](https://github.com/tasugi) ##### `@mui/utils@5.2.3` - ​<!-- 03 -->\[utils] Add typings for `@mui-material/styles/cssUtils` ([#&#8203;29621](https://github.com/mui/material-ui/issues/29621)) [@&#8203;Semigradsky](https://github.com/Semigradsky) ##### `@mui/icons-material@5.2.1` - ​<!-- 12 -->\[icons] Consolidate ignored icons into one list ([#&#8203;29843](https://github.com/mui/material-ui/issues/29843)) [@&#8203;chao813](https://github.com/chao813) ##### `@mui/base@5.0.0-alpha.59` - ​<!-- 30 -->\[base] Fix missing ClickAwayListener barrel index export ([#&#8203;30000](https://github.com/mui/material-ui/issues/30000)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 04 -->\[TablePaginationUnstyled] Introduce new component ([#&#8203;29759](https://github.com/mui/material-ui/issues/29759)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/lab@5.0.0-alpha.59` - ​<!-- 27 -->\[DateRangePicker] Fix `DateRangePickerDayProps` interface ([#&#8203;29067](https://github.com/mui/material-ui/issues/29067)) [@&#8203;jonathanrtuck](https://github.com/jonathanrtuck) - ​<!-- 10 -->\[Pickers] Remove propagation of custom props to the `MonthPicker` component's DOM element ([#&#8203;30021](https://github.com/mui/material-ui/issues/30021)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 08 -->\[StaticDatePicker] Add className and slot to PickerStaticWrapper ([#&#8203;29619](https://github.com/mui/material-ui/issues/29619)) [@&#8203;kkorach](https://github.com/kkorach) ##### `@mui/joy@5.0.0-alpha.5` - ​<!-- 11 -->\[Joy] Theme setup ([#&#8203;29846](https://github.com/mui/material-ui/issues/29846)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 34 -->\[docs] Fix link in TypeScript doc page ([#&#8203;30044](https://github.com/mui/material-ui/issues/30044)) [@&#8203;genzyy](https://github.com/genzyy) - ​<!-- 26 -->\[docs] Remove the 'WIP' icon from the 'Group & Pivot' page title ([#&#8203;30077](https://github.com/mui/material-ui/issues/30077)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - ​<!-- 25 -->\[docs] Add warning that `@mui/styled-engine-sc` does not work in SSR ([#&#8203;30026](https://github.com/mui/material-ui/issues/30026)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 24 -->\[docs] Add section for CSS specificity in the migration guide ([#&#8203;30008](https://github.com/mui/material-ui/issues/30008)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 28 -->\[docs] Clarify comment in migration doc ([#&#8203;30076](https://github.com/mui/material-ui/issues/30076)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 23 -->\[docs] Sync translations with Crowdin ([#&#8203;30041](https://github.com/mui/material-ui/issues/30041)) [@&#8203;l10nbot](https://github.com/l10nbot) - ​<!-- 22 -->\[docs] Explain how Paper changes shade in dark mode ([#&#8203;30003](https://github.com/mui/material-ui/issues/30003)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 21 -->\[docs] Update nextjs-typescript-example ([#&#8203;29974](https://github.com/mui/material-ui/issues/29974)) [@&#8203;huydhoang](https://github.com/huydhoang) - ​<!-- 20 -->\[docs] Add missing global state classes to API docs generator ([#&#8203;29945](https://github.com/mui/material-ui/issues/29945)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 19 -->\[docs] Fix benchmarks folder link ([#&#8203;29981](https://github.com/mui/material-ui/issues/29981)) [@&#8203;fourjr](https://github.com/fourjr) - ​<!-- 18 -->\[docs] Improve wording in Stack Overflow section of support page ([#&#8203;29956](https://github.com/mui/material-ui/issues/29956)) [@&#8203;ronwarner](https://github.com/ronwarner) - ​<!-- 17 -->\[docs] Remove Black Friday sale notification ([#&#8203;29936](https://github.com/mui/material-ui/issues/29936)) [@&#8203;mbrookes](https://github.com/mbrookes) - ​<!-- 16 -->\[examples] Fix typos in the Remix example ([#&#8203;30071](https://github.com/mui/material-ui/issues/30071)) [@&#8203;MichaelDeBoey](https://github.com/MichaelDeBoey) - ​<!-- 15 -->\[examples] Add Remix example ([#&#8203;29952](https://github.com/mui/material-ui/issues/29952)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 14 -->\[examples] Fix lint issue for displayName missing in the Next.js examples ([#&#8203;29985](https://github.com/mui/material-ui/issues/29985)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 09 -->\[Stack] Document system props in Stack API ([#&#8203;30069](https://github.com/mui/material-ui/issues/30069)) [@&#8203;ThewBear](https://github.com/ThewBear) - ​<!-- 07 -->\[survey] Add a banner and card for promoting the 2021 survey ([#&#8203;29950](https://github.com/mui/material-ui/issues/29950)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 02 -->\[website] Correct the Careers page description ([#&#8203;30073](https://github.com/mui/material-ui/issues/30073)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 01 -->\[website] Fix 301 links ([#&#8203;30040](https://github.com/mui/material-ui/issues/30040)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - ​<!-- 31 -->\[core] Batch small changes ([#&#8203;30042](https://github.com/mui/material-ui/issues/30042)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 28 -->\[core] Transition to a new Stack Overflow tag ([#&#8203;29967](https://github.com/mui/material-ui/issues/29967)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;chao813](https://github.com/chao813), [@&#8203;daniel-sachs](https://github.com/daniel-sachs), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;Domino987](https://github.com/Domino987), [@&#8203;eduardomcv](https://github.com/eduardomcv), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;fourjr](https://github.com/fourjr), [@&#8203;genzyy](https://github.com/genzyy), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;huydhoang](https://github.com/huydhoang), [@&#8203;jayeclark](https://github.com/jayeclark), [@&#8203;jonathanrtuck](https://github.com/jonathanrtuck), [@&#8203;kkorach](https://github.com/kkorach), [@&#8203;l10nbot](https://github.com/l10nbot), [@&#8203;mbrookes](https://github.com/mbrookes), [@&#8203;MichaelDeBoey](https://github.com/MichaelDeBoey), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;ronwarner](https://github.com/ronwarner), [@&#8203;Semigradsky](https://github.com/Semigradsky), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;tasugi](https://github.com/tasugi), [@&#8203;ThewBear](https://github.com/ThewBear), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.2.2`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;522) [Compare Source](https://github.com/mui/material-ui/compare/v5.2.1...v5.2.2) <!-- generated comparing v5.2.1..master --> *Nov 29, 2021* A big thanks to the 9 contributors who made this release possible. Here are some highlights ✨: - ♿️ Improved accessibility of `Snackbar` and `TextField` in `@mui/material` ([#&#8203;29782](https://github.com/mui/material-ui/issues/29782)) ([#&#8203;29850](https://github.com/mui/material-ui/issues/29850)) ([#&#8203;29852](https://github.com/mui/material-ui/issues/29852)) [@&#8203;eps1lon](https://github.com/eps1lon). - 🎉 Added support for `sx` syntax inside `styled()` utility ([#&#8203;29833](https://github.com/mui/material-ui/issues/29833)) [@&#8203;mnajdova](https://github.com/mnajdova). - 🎉 Added support for more options for `createCssVarsProvider` in `@mui/system` ([#&#8203;29845](https://github.com/mui/material-ui/issues/29845)) ([#&#8203;29857](https://github.com/mui/material-ui/issues/29857)) [@&#8203;hbjORbj](https://github.com/hbjORbj). - And many more 🐛 bug fixes and 📚 improvements. ##### `@mui/material@5.2.2` - ​<!-- 14 -->\[MenuList] Add component prop ([#&#8203;29882](https://github.com/mui/material-ui/issues/29882)) [@&#8203;Harshikerfuffle](https://github.com/Harshikerfuffle) - ​<!-- 13 -->\[Snackbar] Interrupt auto-hide on keyboard interaction ([#&#8203;29852](https://github.com/mui/material-ui/issues/29852)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 12 -->\[Snackbar] Dismiss on Escape press ([#&#8203;29850](https://github.com/mui/material-ui/issues/29850)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 06 -->\[TextField] Associate accessible name and description by default ([#&#8203;29782](https://github.com/mui/material-ui/issues/29782)) [@&#8203;eps1lon](https://github.com/eps1lon) ##### `@mui/joy@5.0.0-alpha.4` - ​<!-- 15 -->\[Joy] Add `Button` - 1st iteration ([#&#8203;29464](https://github.com/mui/material-ui/issues/29464)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/codemod@5.2.1` - ​<!-- 28 -->\[codemod] Fix alias import for box-sx-prop ([#&#8203;29902](https://github.com/mui/material-ui/issues/29902)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/system@5.2.2` - ​<!-- 11 -->\[system] CSSVarsProvider cleans up `html[style]` when unmounting ([#&#8203;29946](https://github.com/mui/material-ui/issues/29946)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 10 -->\[system] Add support for `disableTransitionOnChange` in `createCssVarsProvider` ([#&#8203;29857](https://github.com/mui/material-ui/issues/29857)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 09 -->\[system] Add support for `enableColorScheme` in `createCssVarsProvider` ([#&#8203;29845](https://github.com/mui/material-ui/issues/29845)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/utils@5.2.2` - ​<!-- 05 -->\[useId] Trade random collisions for collisions on overflow ([#&#8203;29781](https://github.com/mui/material-ui/issues/29781)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 04 -->\[useIsFocusVisible] Convert to TypeScript ([#&#8203;29779](https://github.com/mui/material-ui/issues/29779)) [@&#8203;eps1lon](https://github.com/eps1lon) ##### Docs - ​<!-- 24 -->\[docs] Fix v5-beta confusing example description ([#&#8203;29932](https://github.com/mui/material-ui/issues/29932)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 23 -->\[docs] Apply the z-index on the right DOM element ([#&#8203;29934](https://github.com/mui/material-ui/issues/29934)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 22 -->\[docs] Improve git diff format ([#&#8203;29935](https://github.com/mui/material-ui/issues/29935)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 21 -->\[docs] Fix typo ([#&#8203;29866](https://github.com/mui/material-ui/issues/29866)) [@&#8203;sinclairity](https://github.com/sinclairity) - ​<!-- 20 -->\[docs] Fix key display ([#&#8203;29933](https://github.com/mui/material-ui/issues/29933)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 19 -->\[docs] Fix outdated link to next/link docs ([#&#8203;29937](https://github.com/mui/material-ui/issues/29937)) [@&#8203;radlinskii](https://github.com/radlinskii) - ​<!-- 18 -->\[docs] Add how to pass `sx` prop ([#&#8203;29905](https://github.com/mui/material-ui/issues/29905)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 17 -->\[docs] Fix typo in notifications [@&#8203;mbrookes](https://github.com/mbrookes) - ​<!-- 16 -->\[docs] Black Friday sale notification [@&#8203;mbrookes](https://github.com/mbrookes) - ​<!-- 03 -->\[website] Fix canonical links ([#&#8203;29938](https://github.com/mui/material-ui/issues/29938)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 02 -->\[website] Fix SEO issues ([#&#8203;29939](https://github.com/mui/material-ui/issues/29939)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 01 -->\[website] Improvements to the /x product page ([#&#8203;28964](https://github.com/mui/material-ui/issues/28964)) [@&#8203;danilo-leal](https://github.com/danilo-leal) ##### Core - ​<!-- 27 -->\[core] Remove dead code ([#&#8203;29940](https://github.com/mui/material-ui/issues/29940)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 26 -->\[core] Move benchmark CI job from AZP to CircleCI ([#&#8203;29894](https://github.com/mui/material-ui/issues/29894)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 25 -->\[core] Fix PR detection pattern in test_bundle_size_monitor ([#&#8203;29895](https://github.com/mui/material-ui/issues/29895)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 08 -->\[test] Fix browser tests ([#&#8203;29929](https://github.com/mui/material-ui/issues/29929)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 07 -->\[test] Reject shorthand properties in style matchers ([#&#8203;29893](https://github.com/mui/material-ui/issues/29893)) [@&#8203;eps1lon](https://github.com/eps1lon) All contributors of this release in alphabetical order: [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;Harshikerfuffle](https://github.com/Harshikerfuffle), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;mbrookes](https://github.com/mbrookes), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;radlinskii](https://github.com/radlinskii), [@&#8203;sinclairity](https://github.com/sinclairity), [@&#8203;siriwatknp](https://github.com/siriwatknp) ### [`v5.2.1`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;521) [Compare Source](https://github.com/mui/material-ui/compare/v5.2.0...v5.2.1) <!-- generated comparing v5.2.0..master --> *Nov 25, 2021* A big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: This is an early release to fix `export 'useId' (imported as 'React') was not found in 'react'` when bundling code depending on MUI Core. - ​<!-- 10 -->\[AppBar]\[docs] Add a fully responsive demo to docs ([#&#8203;29829](https://github.com/mui/material-ui/issues/29829)) [@&#8203;karakib2k18](https://github.com/karakib2k18) - ​<!-- 9 -->\[core] Fix PR run detection in test_bundle_size_monitor ([#&#8203;29879](https://github.com/mui/material-ui/issues/29879)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 8 -->\[core] Move bundle size monitoring to CircleCI ([#&#8203;29876](https://github.com/mui/material-ui/issues/29876)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 7 -->\[docs] Add keys to Responsive AppBar demo ([#&#8203;29884](https://github.com/mui/material-ui/issues/29884)) [@&#8203;mbrookes](https://github.com/mbrookes) - ​<!-- 6 -->\[docs] MUI's 2021 Developer survey ([#&#8203;29765](https://github.com/mui/material-ui/issues/29765)) [@&#8203;prakhargupta1](https://github.com/prakhargupta1) - ​<!-- 5 -->\[docs] Smoother image loading UX ([#&#8203;29858](https://github.com/mui/material-ui/issues/29858)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 4 -->\[Select] Fix select display value with React Nodes ([#&#8203;29836](https://github.com/mui/material-ui/issues/29836)) [@&#8203;kegi](https://github.com/kegi) - ​<!-- 3 -->\[system] Add `experimental_sx` utility ([#&#8203;29833](https://github.com/mui/material-ui/issues/29833)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 2 -->\[test] Ignore "detected multiple renderers" warning for now ([#&#8203;29854](https://github.com/mui/material-ui/issues/29854)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 1 -->\[useMediaQuery]\[utils] Remove usage of React 18 APIs ([#&#8203;29870](https://github.com/mui/material-ui/issues/29870)) [@&#8203;eps1lon](https://github.com/eps1lon) All contributors of this release in alphabetical order: [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;karakib2k18](https://github.com/karakib2k18), [@&#8203;kegi](https://github.com/kegi), [@&#8203;mbrookes](https://github.com/mbrookes), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;prakhargupta1](https://github.com/prakhargupta1), [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ### [`v5.2.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;520) [Compare Source](https://github.com/mui/material-ui/compare/v5.1.1...v5.2.0) <!-- generated comparing v5.1.1..master --> *Nov 23, 2021* A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨: - 🧪 Created another unstyled component: [TabsUnstyled](https://mui.com/components/tabs/#unstyled) ([#&#8203;29597](https://github.com/mui/material-ui/issues/29597)) [@&#8203;mnajdova](https://github.com/mnajdova). - 🎉 Updated the Material Icons set with the latest changes from Google ([#&#8203;29328](https://github.com/mui/material-ui/issues/29328)) [@&#8203;michaldudak](https://github.com/michaldudak) / ([#&#8203;29818](https://github.com/mui/material-ui/issues/29818)) [@&#8203;chao813](https://github.com/chao813). This update adds 200 new icons and tweaks the appearance of many more. With it, we're getting close to having 2000 icons in our set. - 🐛 Fixed bugs and improved the infrastructure and documentation 📚. ##### `@mui/material@5.2.0` - \[IconButton] Remove on hover effect when `disableRipple` is set ([#&#8203;29298](https://github.com/mui/material-ui/issues/29298)) [@&#8203;adamfitzgibbon](https://github.com/adamfitzgibbon) - \[i18n] Add the amharic language ([#&#8203;29153](https://github.com/mui/material-ui/issues/29153)) [@&#8203;NatiG100](https://github.com/NatiG100) - \[material] Fix types for `variants.style` to accept callbacks ([#&#8203;29610](https://github.com/mui/material-ui/issues/29610)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[Popper] Simplify prop types ([#&#8203;29680](https://github.com/mui/material-ui/issues/29680)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[Select] Include aria-selected=false when option not selected ([#&#8203;29695](https://github.com/mui/material-ui/issues/29695)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[useMediaQuery] Fix crash in Safari < 14 and IE 11 ([#&#8203;29776](https://github.com/mui/material-ui/issues/29776)) [@&#8203;eps1lon](https://github.com/eps1lon) - \[useMediaQuery] Ensure no tearing in React 18 ([#&#8203;28491](https://github.com/mui/material-ui/issues/28491)) [@&#8203;eps1lon](https://github.com/eps1lon) ##### `@mui/codemod@5.2.0` - \[codemod] Fix `jss-to-styled` to support multiple withStyles ([#&#8203;29824](https://github.com/mui/material-ui/issues/29824)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/icons-material@5.2.0` - \[icons] Sync new Google Material Icons ([#&#8203;29818](https://github.com/mui/material-ui/issues/29818)) [@&#8203;chao813](https://github.com/chao813) - \[icons] Sync recent Material Icons from Google ([#&#8203;29328](https://github.com/mui/material-ui/issues/29328)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/system@5.2.0` - \[Box] Fix `sx` prop runtime issue when used as function ([#&#8203;29830](https://github.com/mui/material-ui/issues/29830)) [@&#8203;mnajdova](https://github.com/mnajdova) - \[system] Fix `sx` throw error when value is `null` or `undefined` ([#&#8203;29756](https://github.com/mui/material-ui/issues/29756)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - \[system] Fix minor CssVars issues ([#&#8203;29747](https://github.com/mui/material-ui/issues/29747)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/styled-engine@5.2.0` - \[styled-engine] Fix props inference in styled-engine ([#&#8203;29739](https://github.com/mui/material-ui/issues/29739)) [@&#8203;Janpot](https://github.com/Janpot) ##### `@mui/base@5.0.0-alpha.56` - \[FormControlUnstyled] `focused` is always false unless explicitly set to `true` [@&#8203;mwilkins91](https://github.com/mwilkins91) - \[TabsUnstyled] Introduce new component ([#&#8203;29597](https://github.com/mui/material-ui/issues/29597)) [@&#8203;mnajdova](https://github.com/mnajdova) ##### `@mui/lab@5.0.0-alpha.56` - \[DatePicker]\[timepicker] Add missing component declarations ([#&#8203;29517](https://github.com/mui/material-ui/issues/29517)) [@&#8203;longzheng](https://github.com/longzheng) - \[Masonry] exports from root package ([#&#8203;29754](https://github.com/mui/material-ui/issues/29754)) [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech) - \[pickers] Widen accepted `luxon` version range ([#&#8203;29761](https://github.com/mui/material-ui/issues/29761)) [@&#8203;eps1lon](https://github.com/eps1lon) ##### Docs - \[blog] MUI X v5 blog post ([#&#8203;29590](https://github.com/mui/material-ui/issues/29590)) [@&#8203;DanailH](https://github.com/DanailH) - \[blog] Polish the Benny Joo joins MUI post ([#&#8203;29697](https://github.com/mui/material-ui/issues/29697)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[CHANGELOG] Explain why we do breaking changes [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Update latest issue template for codesandbox CI ([#&#8203;29783](https://github.com/mui/material-ui/issues/29783)) [@&#8203;eps1lon](https://github.com/eps1lon) - \[core] Ensure `@mui/core` is an alias for `@mui/base` ([#&#8203;29762](https://github.com/mui/material-ui/issues/29762)) [@&#8203;eps1lon](https://github.com/eps1lon) - \[docs] Fix broken Next and Previous links ([#&#8203;29711](https://github.com/mui/material-ui/issues/29711)) [@&#8203;scallaway](https://github.com/scallaway) - \[docs] Add a note that ToggleButton exclusive does not enforce selection ([#&#8203;29812](https://github.com/mui/material-ui/issues/29812)) [@&#8203;mmacu](https://github.com/mmacu) - \[docs] Update the list of supported locales ([#&#8203;29831](https://github.com/mui/material-ui/issues/29831)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[docs] Update tooltip doc to better define touch action ([#&#8203;29717](https://github.com/mui/material-ui/issues/29717)) [@&#8203;gnowland](https://github.com/gnowland) - \[website] Standardize the background color from the MUI team photos ([#&#8203;29738](https://github.com/mui/material-ui/issues/29738)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - \[website] Add Bharat to the About Us Page ([#&#8203;29714](https://github.com/mui/material-ui/issues/29714)) [@&#8203;bharatkashyap](https://github.com/bharatkashyap) - \[website] Add about page entry for jan ([#&#8203;29701](https://github.com/mui/material-ui/issues/29701)) [@&#8203;Janpot](https://github.com/Janpot) - \[website] Adding Prakhar to the about page ([#&#8203;29737](https://github.com/mui/material-ui/issues/29737)) [@&#8203;danilo-leal](https://github.com/danilo-leal) ##### Core - \[test] Allow debugging with Chrome and VSCode inspector ([#&#8203;29777](https://github.com/mui/material-ui/issues/29777)) [@&#8203;eps1lon](https://github.com/eps1lon) - \[test] Use renderer clock instead of custom useFakeTimers call ([#&#8203;29778](https://github.com/mui/material-ui/issues/29778)) [@&#8203;eps1lon](https://github.com/eps1lon) - \[test] Only mock Date in regression tests ([#&#8203;29763](https://github.com/mui/material-ui/issues/29763)) [@&#8203;eps1lon](https://github.com/eps1lon) - \[test] Disable nightly integration tests on `next` branch ([#&#8203;29748](https://github.com/mui/material-ui/issues/29748)) [@&#8203;eps1lon](https://github.com/eps1lon) - \[test] Allow configuring clock directly from `createRenderer` ([#&#8203;29684](https://github.com/mui/material-ui/issues/29684)) [@&#8203;eps1lon](https://github.com/eps1lon) - \[test] Accept backslashes as path separators in test CLI ([#&#8203;29694](https://github.com/mui/material-ui/issues/29694)) [@&#8203;michaldudak](https://github.com/michaldudak) - \[utils] Use built-in hook when available for useId ([#&#8203;26489](https://github.com/mui/material-ui/issues/26489)) [@&#8203;eps1lon](https://github.com/eps1lon) All contributors of this release in alphabetical order: [@&#8203;abhinav-22-tech](https://github.com/abhinav-22-tech), [@&#8203;adamfitzgibbon](https://github.com/adamfitzgibbon), [@&#8203;bharatkashyap](https://github.com/bharatkashyap), [@&#8203;chao813](https://github.com/chao813), [@&#8203;DanailH](https://github.com/DanailH), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;gnowland](https://github.com/gnowland), [@&#8203;Janpot](https://github.com/Janpot), [@&#8203;longzheng](https://github.com/longzheng), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mmacu](https://github.com/mmacu), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;mwilkins91](https://github.com/mwilkins91), [@&#8203;NatiG100](https://github.com/NatiG100), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;scallaway](https://github.com/scallaway), [@&#8203;siriwatknp](https://github.com/siriwatknp) ### [`v5.1.1`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;511) [Compare Source](https://github.com/mui/material-ui/compare/v5.1.0...v5.1.1) <!-- generated comparing v5.1.0..master --> *Nov 16, 2021* A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨: - 🛠 Renamed `@mui/core` to `@mui/base` ([#&#8203;29585](https://github.com/mui/material-ui/issues/29585)) [@&#8203;michaldudak](https://github.com/michaldudak). - And many more 🐛 bug fixes and 📚 improvements. ##### `@mui/material@5.1.1` - ​<!-- 34 -->\[Breadcrumbs]\[divider] Replace decimal spacing values with integers and css calc ([#&#8203;29526](https://github.com/mui/material-ui/issues/29526)) [@&#8203;anikcreative](https://github.com/anikcreative) - ​<!-- 10 -->\[Select]\[nativeselect] Add `multiple` class ([#&#8203;29566](https://github.com/mui/material-ui/issues/29566)) [@&#8203;aaronholla](https://github.com/aaronholla) - ​<!-- 09 -->\[Popper] Split into PopperUnstyled and Popper ([#&#8203;29488](https://github.com/mui/material-ui/issues/29488)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 08 -->\[Select] Make it clear that `Select` is not a root component ([#&#8203;29593](https://github.com/mui/material-ui/issues/29593)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 13 -->\[l10n] Improved Dutch (nl-NL) locale ([#&#8203;29592](https://github.com/mui/material-ui/issues/29592)) [@&#8203;flipvrijn](https://github.com/flipvrijn) - ​<!-- 10 -->\[Table] Improve pagination range, use "en dash" over "hyphen" ([#&#8203;29579](https://github.com/mui/material-ui/issues/29579)) [@&#8203;narekmal](https://github.com/narekmal) ##### `@mui/base@5.0.0-alpha.55` ##### Breaking changes - ​<!-- 27 -->\[core] Rename mui/core to mui/base ([#&#8203;29585](https://github.com/mui/material-ui/issues/29585)) [@&#8203;michaldudak](https://github.com/michaldudak) Based on the results of the [poll](https://twitter.com/michaldudak/status/1452630484706635779) and our internal discussions, we decided to rename the `@mui/core` package to `@mui/base`. The main rationale for this is the fact that we use the term "Core" to refer to the core components product family, the one that includes Material Design components, unstyled components, System utilities, etc. Therefore, [@&#8203;mui/core](https://github.com/mui/core) was effectively a subset of MUI Core. This was confusing. The new name better reflects the purpose of the package: it contains unstyled components, hooks, and utilities that serve as a **base** to build on. ```diff -import { useSwitch } from '@&#8203;mui/core/SwitchUnstyled'; +import { useSwitch } from '@&#8203;mui/base/SwitchUnstyled'; ``` ##### `@mui/lab@5.0.0-alpha.55` - ​<!-- 12 -->\[LoadingButton] Text variant spacing fixed for both start and end ([#&#8203;29194](https://github.com/mui/material-ui/issues/29194)) [@&#8203;joshua-lawrence](https://github.com/joshua-lawrence) - ​<!-- 11 -->\[Masonry] Check if container or child exists to prevent error ([#&#8203;29452](https://github.com/mui/material-ui/issues/29452)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### Docs - ​<!-- 25 -->\[docs] Correct bundler configuration for using legacy MUI build ([#&#8203;29146](https://github.com/mui/material-ui/issues/29146)) [@&#8203;petermikitsh](https://github.com/petermikitsh) - ​<!-- 24 -->\[docs] Fix typo on autocomplete.md ([#&#8203;29570](https://github.com/mui/material-ui/issues/29570)) [@&#8203;netizer](https://github.com/netizer) - ​<!-- 23 -->\[docs] Fix dark mode on branding pages ([#&#8203;29611](https://github.com/mui/material-ui/issues/29611)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - ​<!-- 22 -->\[docs] Do not render CSS section in API docs navbar if there are no CSS classes ([#&#8203;29622](https://github.com/mui/material-ui/issues/29622)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 21 -->\[docs] Fix link locale handling ([#&#8203;29624](https://github.com/mui/material-ui/issues/29624)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 20 -->\[docs] Fix Search navigation ([#&#8203;29623](https://github.com/mui/material-ui/issues/29623)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 19 -->\[docs] Fix broken link & update MUI packages explanation ([#&#8203;29583](https://github.com/mui/material-ui/issues/29583)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 18 -->\[docs] Do not repeat language snippet in url in Algolia search ([#&#8203;29483](https://github.com/mui/material-ui/issues/29483)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 17 -->\[docs] Update `ThemeProvider` API link ([#&#8203;29573](https://github.com/mui/material-ui/issues/29573)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 16 -->\[docs] Remove svg logos from the Support page ([#&#8203;29431](https://github.com/mui/material-ui/issues/29431)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 15 -->\[docs] Link UXPin integration ([#&#8203;29422](https://github.com/mui/material-ui/issues/29422)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 14 -->\[docs] Link to the new public roadmap for the design kits ([#&#8203;29433](https://github.com/mui/material-ui/issues/29433)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 28 -->\[docs] correct bundler configuration for using legacy MUI build ([#&#8203;29146](https://github.com/mui/material-ui/issues/29146)) [@&#8203;petermikitsh](https://github.com/petermikitsh) - ​<!-- 01 -->\[website] Fix premium plan release date ([#&#8203;29430](https://github.com/mui/material-ui/issues/29430)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 02 -->\[website] Add GitHub icon button to the navbar ([#&#8203;29640](https://github.com/mui/material-ui/issues/29640)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 39 -->\[blog] Support many authors in markdown pages ([#&#8203;29633](https://github.com/mui/material-ui/issues/29633)) [@&#8203;m4theushw](https://github.com/m4theushw) ##### Core - ​<!-- 33 -->\[core] Add `experiments` index page ([#&#8203;29582](https://github.com/mui/material-ui/issues/29582)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 32 -->\[core] Move s3 bucket ownership to mui-org ([#&#8203;29609](https://github.com/mui/material-ui/issues/29609)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 31 -->\[core] Improve support request message ([#&#8203;29614](https://github.com/mui/material-ui/issues/29614)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 30 -->\[core] Use support request GitHub Action ([#&#8203;29594](https://github.com/mui/material-ui/issues/29594)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 29 -->\[core] Remove unused `getJsxPreview` util ([#&#8203;29586](https://github.com/mui/material-ui/issues/29586)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 28 -->\[core] Use GitHub issue forms ([#&#8203;28038](https://github.com/mui/material-ui/issues/28038)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 26 -->\[core] Add playground ([#&#8203;29423](https://github.com/mui/material-ui/issues/29423)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 07 -->\[test] Correctly identify what the `raf` helper is for ([#&#8203;29683](https://github.com/mui/material-ui/issues/29683)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 06 -->\[test] Verify a quilted ImageList is created as test title suggests ([#&#8203;29565](https://github.com/mui/material-ui/issues/29565)) [@&#8203;daniel-sachs](https://github.com/daniel-sachs) - ​<!-- 05 -->\[test] Replace `createServerRender` with `createRenderer` ([#&#8203;29503](https://github.com/mui/material-ui/issues/29503)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 04 -->\[test] Always ignore "useLayoutEffect has no effect on the server"-warning ([#&#8203;29502](https://github.com/mui/material-ui/issues/29502)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 03 -->\[test] Restore StrictMode by default ([#&#8203;29589](https://github.com/mui/material-ui/issues/29589)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 02 -->\[test] createPickerRender -> createPickerRenderer ([#&#8203;29575](https://github.com/mui/material-ui/issues/29575)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 09 -->\[test] Allow experimental CLI to run exact test ([#&#8203;29685](https://github.com/mui/material-ui/issues/29685)) [@&#8203;eps1lon](https://github.com/eps1lon) All contributors of this release in alphabetical order: [@&#8203;aaronholla](https://github.com/aaronholla), [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;anikcreative](https://github.com/anikcreative), [@&#8203;daniel-sachs](https://github.com/daniel-sachs), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;flipvrijn](https://github.com/flipvrijn), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;joshua-lawrence](https://github.com/joshua-lawrence), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;netizer](https://github.com/netizer), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;petermikitsh](https://github.com/petermikitsh), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.1.0`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;510) [Compare Source](https://github.com/mui/material-ui/compare/v5.0.6...v5.1.0) <!-- generated comparing v5.0.6..master --> *Nov 8, 2021* A big thanks to the 33 contributors who made this release possible. Here are some highlights ✨: - 🎉 Support custom elements under `ButtonGroup` ([#&#8203;28645](https://github.com/mui/material-ui/issues/28645)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - 🛠 Add support for arrays in the `sx` prop ([#&#8203;29297](https://github.com/mui/material-ui/issues/29297)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - And many more 🐛 bug fixes and 📚 improvements. ##### `@mui/material@5.1.0` - ​<!-- 68 -->\[Autocomplete] Fix `hiddenLabel` prop of `TextField variant={filled}` inside Autocomplete ([#&#8203;29234](https://github.com/mui/material-ui/issues/29234)) [@&#8203;jatinsandilya](https://github.com/jatinsandilya) - ​<!-- 67 -->\[Box] Support generateClassName and defaultClassName ([#&#8203;29347](https://github.com/mui/material-ui/issues/29347)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 66 -->\[ButtonGroup] Fix variant outlined always has primary color borders on hover ([#&#8203;29487](https://github.com/mui/material-ui/issues/29487)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 65 -->\[ButtonGroup] Support different elements under ButtonGroup ([#&#8203;28645](https://github.com/mui/material-ui/issues/28645)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 62 -->\[CssBaseline] Add `enableColorScheme` prop so enable using `color-scheme` property to deal with dark mode ([#&#8203;29454](https://github.com/mui/material-ui/issues/29454)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - ​<!-- 29 -->\[FormControlLabel] Narrow the label type ([#&#8203;29324](https://github.com/mui/material-ui/issues/29324)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 28 -->\[Grid] Fix usage when columns > 12 ([#&#8203;29196](https://github.com/mui/material-ui/issues/29196)) [@&#8203;tanay123456789](https://github.com/tanay123456789) - ​<!-- 27 -->\[InputBase] Do not repeat the same classname ([#&#8203;29353](https://github.com/mui/material-ui/issues/29353)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 30 -->\[InputBase] Remove WebkitAppearance from search type ([#&#8203;29383](https://github.com/mui/material-ui/issues/29383)) [@&#8203;nicbarajas](https://github.com/nicbarajas) - ​<!-- 25 -->\[ListItem] Add missing exports ([#&#8203;29571](https://github.com/mui/material-ui/issues/29571)) [@&#8203;robcaldecott](https://github.com/robcaldecott) - ​<!-- 22 -->\[Pagination] Allow customization of icons ([#&#8203;29336](https://github.com/mui/material-ui/issues/29336)) [@&#8203;mbeltramin](https://github.com/mbeltramin) - ​<!-- 11 -->\[TextField] Fix bootstrap, normalize.css, sanitize.css conflicts ([#&#8203;28674](https://github.com/mui/material-ui/issues/28674)) [@&#8203;ChrisClaude](https://github.com/ChrisClaude) - ​<!-- 10 -->\[TextField] Fix invisible wrap within notched inputs ([#&#8203;29088](https://github.com/mui/material-ui/issues/29088)) [@&#8203;DASPRiD](https://github.com/DASPRiD) - ​<!-- 09 -->\[Tooltip] `open` prop in `componentsProps.popper` can be optional ([#&#8203;29370](https://github.com/mui/material-ui/issues/29370)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 08 -->\[Tooltip] Fix `className` not getting applied from PopperProps ([#&#8203;29023](https://github.com/mui/material-ui/issues/29023)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 07 -->\[useRadioGroup] Convert to TypeScript ([#&#8203;29326](https://github.com/mui/material-ui/issues/29326)) [@&#8203;eps1lon](https://github.com/eps1lon) ##### `@mui/system@5.1.0` - ​<!-- 21 -->\[system] Introduce `mode` to CssVarsProvider ([#&#8203;29418](https://github.com/mui/material-ui/issues/29418)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 20 -->\[system] Improve breakpoints resolver function ([#&#8203;29300](https://github.com/mui/material-ui/issues/29300)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 19 -->\[system] Add array support for `sx` prop ([#&#8203;29297](https://github.com/mui/material-ui/issues/29297)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/codemod@5.1.0` - ​<!-- 64 -->\[codemod] Add codemod parser flag ([#&#8203;29059](https://github.com/mui/material-ui/issues/29059)) ([#&#8203;29229](https://github.com/mui/material-ui/issues/29229)) [@&#8203;ElonVolo](https://github.com/ElonVolo) ##### `@mui/lab@5.0.0-alpha.54` - ​<!-- 52 -->\[DatePicker] Fix disabled/readOnly for view components ([#&#8203;28815](https://github.com/mui/material-ui/issues/28815)) [@&#8203;adamfitzgibbon](https://github.com/adamfitzgibbon) - ​<!-- 24 -->\[Masonry] Fix crash on unmount when using React 18 ([#&#8203;29358](https://github.com/mui/material-ui/issues/29358)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 23 -->\[Masonry] Improve height computation and detect changes in `children` ([#&#8203;29351](https://github.com/mui/material-ui/issues/29351)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/joy@5.0.0-alpha.0` - ​<!-- 28 -->\[Joy] Update default theme ([#&#8203;29478](https://github.com/mui/material-ui/issues/29478)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 26 -->\[Joy] Export CssVarsProvider with default theme ([#&#8203;29150](https://github.com/mui/material-ui/issues/29150)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 25 -->\[Joy] Remove `private` to leverage CodeSandbox ([#&#8203;29280](https://github.com/mui/material-ui/issues/29280)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Docs - ​<!-- 51 -->\[docs] Add differences between styled and sx ([#&#8203;28685](https://github.com/mui/material-ui/issues/28685)) [@&#8203;eric-burel](https://github.com/eric-burel) - ​<!-- 50 -->\[docs] Track usage of dark mode in Google Analytics ([#&#8203;29419](https://github.com/mui/material-ui/issues/29419)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 49 -->\[docs] Remove create-mui-theme as it is no longer working ([#&#8203;29472](https://github.com/mui/material-ui/issues/29472)) [@&#8203;IPJT](https://github.com/IPJT) - ​<!-- 48 -->\[docs] Fix warnings in AppSearch ([#&#8203;29459](https://github.com/mui/material-ui/issues/29459)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 47 -->\[docs] Add framework example for ClassNameGenerator ([#&#8203;29453](https://github.com/mui/material-ui/issues/29453)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 46 -->\[docs] Fix layout shift when scrolling ([#&#8203;29436](https://github.com/mui/material-ui/issues/29436)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 45 -->\[docs] Fix layout-shift on id='main-content' ([#&#8203;29425](https://github.com/mui/material-ui/issues/29425)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 44 -->\[docs] Remove usage of `process.browser` ([#&#8203;29438](https://github.com/mui/material-ui/issues/29438)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 43 -->\[docs] Add instruction on how to use the child selector API with emotion ([#&#8203;29350](https://github.com/mui/material-ui/issues/29350)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 42 -->\[docs] Fix small typos ([#&#8203;29424](https://github.com/mui/material-ui/issues/29424)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 41 -->\[docs] Fix TOC highlighting logic ([#&#8203;29435](https://github.com/mui/material-ui/issues/29435)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 40 -->\[docs] Fix about page flags ([#&#8203;29314](https://github.com/mui/material-ui/issues/29314)) [@&#8203;mbrookes](https://github.com/mbrookes) - ​<!-- 39 -->\[docs] Fix Box JS docs ([#&#8203;29282](https://github.com/mui/material-ui/issues/29282)) [@&#8203;Pablion](https://github.com/Pablion) - ​<!-- 38 -->\[docs] Update storybook section in migration to v5 docs ([#&#8203;28800](https://github.com/mui/material-ui/issues/28800)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 37 -->\[docs] Document how to enable color on dark mode ([#&#8203;29340](https://github.com/mui/material-ui/issues/29340)) [@&#8203;Wimukti](https://github.com/Wimukti) - ​<!-- 36 -->\[docs] Display search functionality in all viewports ([#&#8203;28819](https://github.com/mui/material-ui/issues/28819)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 35 -->\[docs] Query heading for ToC on demand ([#&#8203;29204](https://github.com/mui/material-ui/issues/29204)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 34 -->\[docs] Add next.js styled-component guide and update links to example ([#&#8203;29118](https://github.com/mui/material-ui/issues/29118)) [@&#8203;Jareechang](https://github.com/Jareechang) - ​<!-- 33 -->\[docs] Fix overriding `MuiTextField`'s default props in the migration guide ([#&#8203;29174](https://github.com/mui/material-ui/issues/29174)) [@&#8203;tm1000](https://github.com/tm1000) - ​<!-- 32 -->\[docs] Fix "clickable" and "deletable" typos ([#&#8203;28702](https://github.com/mui/material-ui/issues/28702)) [@&#8203;jacklaurencegaray](https://github.com/jacklaurencegaray) - ​<!-- 31 -->\[docs] Update migration-v4 docs for wrong import path ([#&#8203;29042](https://github.com/mui/material-ui/issues/29042)) [@&#8203;busches](https://github.com/busches) - ​<!-- 30 -->\[docs] Add GitHub icon change to "Migration from v4 to v5" guide ([#&#8203;29182](https://github.com/mui/material-ui/issues/29182)) [@&#8203;dan-mba](https://github.com/dan-mba) - ​<!-- 06 -->\[website] Benny Joo joining MUI ([#&#8203;29499](https://github.com/mui/material-ui/issues/29499)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 05 -->\[website] Update the `Print export` feature info on the pricing page ([#&#8203;29484](https://github.com/mui/material-ui/issues/29484)) [@&#8203;DanailH](https://github.com/DanailH) - ​<!-- 04 -->\[website] Improve the dev rel role description ([#&#8203;29477](https://github.com/mui/material-ui/issues/29477)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 03 -->\[website] Add customers section on Design Kits and Templates marketing pages ([#&#8203;29168](https://github.com/mui/material-ui/issues/29168)) [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 02 -->\[website] Improvements to the /core product page [@&#8203;danilo-leal](https://github.com/danilo-leal) - ​<!-- 01 -->\[website] Fix typo on the About Page ([#&#8203;29286](https://github.com/mui/material-ui/issues/29286)) [@&#8203;gssakash](https://github.com/gssakash) ##### Core - ​<!-- 63 -->\[core] Handle RecordType and FieldType in generatePropDescription.ts ([#&#8203;29467](https://github.com/mui/material-ui/issues/29467)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - ​<!-- 61 -->\[core] Convert a named color to lowercase ([#&#8203;29465](https://github.com/mui/material-ui/issues/29465)) [@&#8203;ainatenhi](https://github.com/ainatenhi) - ​<!-- 60 -->\[core] Allow to reuse functions from `docs:api` ([#&#8203;28828](https://github.com/mui/material-ui/issues/28828)) [@&#8203;m4theushw](https://github.com/m4theushw) - ​<!-- 59 -->\[core] Commit new nextjs 12 tsconfig ([#&#8203;29458](https://github.com/mui/material-ui/issues/29458)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 58 -->\[core] Settle on MUI X for the official name ([#&#8203;29420](https://github.com/mui/material-ui/issues/29420)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 57 -->\[core] Add mui as a npm keyword ([#&#8203;29427](https://github.com/mui/material-ui/issues/29427)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 56 -->\[core] Fix issue template redirection ([#&#8203;29432](https://github.com/mui/material-ui/issues/29432)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 55 -->\[core] Remove unecessary destructuration ([#&#8203;29354](https://github.com/mui/material-ui/issues/29354)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - ​<!-- 54 -->\[core] Use cross-env to set env variables in material-icons scripts ([#&#8203;29327](https://github.com/mui/material-ui/issues/29327)) [@&#8203;michaldudak](https://github.com/michaldudak) - ​<!-- 53 -->\[core] Don't bump peer dependency ranges on dependency updates ([#&#8203;29303](https://github.com/mui/material-ui/issues/29303)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 18 -->\[test] Fix browser tests ([#&#8203;29505](https://github.com/mui/material-ui/issues/29505)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 69 -->\[test] Fix missing act warnings in latest React 18 alpha ([#&#8203;29357](https://github.com/mui/material-ui/issues/29357)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 17 -->\[test] Replace `createClientRender` with new `createRenderer` API ([#&#8203;29471](https://github.com/mui/material-ui/issues/29471)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 16 -->\[test] Fix possible "missing act" warning ([#&#8203;29463](https://github.com/mui/material-ui/issues/29463)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 15 -->\[test] Remove render#baseElement ([#&#8203;29462](https://github.com/mui/material-ui/issues/29462)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 14 -->\[test] Expose `AbortController` on global ([#&#8203;29360](https://github.com/mui/material-ui/issues/29360)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 13 -->\[test] Add internal test for uniqe `name` in `Rating` ([#&#8203;29329](https://github.com/mui/material-ui/issues/29329)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 12 -->\[test] Fix browser tests ([#&#8203;29305](https://github.com/mui/material-ui/issues/29305)) [@&#8203;eps1lon](https://github.com/eps1lon) All contributors of this release in alphabetical order: [@&#8203;adamfitzgibbon](https://github.com/adamfitzgibbon), [@&#8203;ainatenhi](https://github.com/ainatenhi), [@&#8203;alexfauquette](https://github.com/alexfauquette), [@&#8203;busches](https://github.com/busches), [@&#8203;ChrisClaude](https://github.com/ChrisClaude), [@&#8203;dan-mba](https://github.com/dan-mba), [@&#8203;DanailH](https://github.com/DanailH), [@&#8203;danilo-leal](https://github.com/danilo-leal), [@&#8203;DASPRiD](https://github.com/DASPRiD), [@&#8203;ElonVolo](https://github.com/ElonVolo), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;eric-burel](https://github.com/eric-burel), [@&#8203;flaviendelangle](https://github.com/flaviendelangle), [@&#8203;gssakash](https://github.com/gssakash), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;IPJT](https://github.com/IPJT), [@&#8203;jacklaurencegaray](https://github.com/jacklaurencegaray), [@&#8203;Jareechang](https://github.com/Jareechang), [@&#8203;jatinsandilya](https://github.com/jatinsandilya), [@&#8203;m4theushw](https://github.com/m4theushw), [@&#8203;mbeltramin](https://github.com/mbeltramin), [@&#8203;mbrookes](https://github.com/mbrookes), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;nicbarajas](https://github.com/nicbarajas), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;Pablion](https://github.com/Pablion), [@&#8203;robcaldecott](https://github.com/robcaldecott), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;tanay123456789](https://github.com/tanay123456789), [@&#8203;tm1000](https://github.com/tm1000), [@&#8203;Wimukti](https://github.com/Wimukti), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) ### [`v5.0.6`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;506) [Compare Source](https://github.com/mui/material-ui/compare/v5.0.5...v5.0.6) <!-- generated comparing v5.0.5..master --> *Oct 27, 2021* A big thanks to the 4 contributors who made this release possible. Here are some highlights ✨: - 🔧 Fix reported TypeScript issues on the `@mui/system` package because some packages were not released ##### `@mui/material@5.0.6` - ​<!-- 4 -->\[Autocomplete] Fix `clearOnBlur` prop ([#&#8203;29208](https://github.com/mui/material-ui/issues/29208)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 2 -->\[Rating] Remove z-index from decimal stars ([#&#8203;29295](https://github.com/mui/material-ui/issues/29295)) [@&#8203;williamhaley](https://github.com/williamhaley) ##### `@mui/system@5.0.6` - ​<!-- 5 -->\[system] Fix various issues reported by using [@&#8203;mui/styled-engine-sc](https://github.com/mui/styled-engine-sc) ([#&#8203;29035](https://github.com/mui/material-ui/issues/29035)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 1 -->\[system] Fix executing server-side Emotion component as function interpolation ([#&#8203;29290](https://github.com/mui/material-ui/issues/29290)) [@&#8203;Andarist](https://github.com/Andarist) ##### Docs - ​<!-- 3 -->\[blog] Q3 2021 Update ([#&#8203;28970](https://github.com/mui/material-ui/issues/28970)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) All contributors of this release in alphabetical order: [@&#8203;Andarist](https://github.com/Andarist), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;oliviertassinari](https://github.com/oliviertassinari), [@&#8203;williamhaley](https://github.com/williamhaley) ### [`v5.0.5`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;505) [Compare Source](https://github.com/mui/material-ui/compare/v5.0.4...v5.0.5) <!-- generated comparing v5.0.4..master --> *Oct 26, 2021* A big thanks to the 19 contributors who made this release possible. Here are some highlights ✨: - 🔧 Implement `Masonry` using Flexbox by [@&#8203;hbjORbj](https://github.com/hbjORbj). - 🧪 Add three components to `@mui/base` by [@&#8203;rebeccahongsf](https://github.com/rebeccahongsf) and [@&#8203;hbjORbj](https://github.com/hbjORbj). ##### `@mui/codemod@5.0.5` - ​<!-- 38 -->\[codemod] Support new package name in `link-underline-hover` transformer ([#&#8203;29214](https://github.com/mui/material-ui/issues/29214)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### `@mui/base@5.0.0-alpha.52` - ​<!-- 39 -->\[ClickAwayListener] Move to the core package ([#&#8203;29186](https://github.com/mui/material-ui/issues/29186)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 13 -->\[Popper] Move from mui-material to mui-base ([#&#8203;28923](https://github.com/mui/material-ui/issues/28923)) [@&#8203;rebeccahongsf](https://github.com/rebeccahongsf) - ​<!-- 04 -->\[TextareaAutosize] Move to the core package ([#&#8203;29148](https://github.com/mui/material-ui/issues/29148)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/lab@5.0.0-alpha.52` - ​<!-- 16 -->\[Masonry] Improve demo styles ([#&#8203;29218](https://github.com/mui/material-ui/issues/29218)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 15 -->\[Masonry] Implement Masonry using Flexbox ([#&#8203;28059](https://github.com/mui/material-ui/issues/28059)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/icons@5.0.5` - ​<!-- 19 -->\[icons] Add TipsAndUpdates icon ([#&#8203;29004](https://github.com/mui/material-ui/issues/29004)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/material@5.0.5` - ​<!-- 40 -->\[CardMedia] Apply specified `img` role instead of custom `image` role ([#&#8203;29172](https://github.com/mui/material-ui/issues/29172)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 32 -->\[CSSBaseline] Remove incorrect [@&#8203;deprecated](https://github.com/deprecated) annotation ([#&#8203;29069](https://github.com/mui/material-ui/issues/29069)) [@&#8203;adamfitzgibbon](https://github.com/adamfitzgibbon) - ​<!-- 20 -->\[Grid] Support custom columns with nested grid ([#&#8203;28743](https://github.com/mui/material-ui/issues/28743)) [@&#8203;Devesh21700Kumar](https://github.com/Devesh21700Kumar) - ​<!-- 18 -->\[InputBase] Remove wrong theme overriding with MUI's default theme ([#&#8203;29157](https://github.com/mui/material-ui/issues/29157)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 17 -->\[LoadingButton] Fix `fullWidth` styling ([#&#8203;28652](https://github.com/mui/material-ui/issues/28652)) [@&#8203;nikitabobers](https://github.com/nikitabobers) - ​<!-- 16 -->\[Popper] make Popper display:none whenever it's closed ([#&#8203;29233](https://github.com/mui/material-ui/issues/29233)) [@&#8203;adamfitzgibbon](https://github.com/adamfitzgibbon) - ​<!-- 14 -->\[Menu] Reduce min-height & padding in menu-item with dense property ([#&#8203;29180](https://github.com/mui/material-ui/issues/29180)) [@&#8203;jatinsandilya](https://github.com/jatinsandilya) - ​<!-- 07 -->\[Tab] `iconPosition` prop added in Tab ([#&#8203;28764](https://github.com/mui/material-ui/issues/28764)) [@&#8203;deepanshu2506](https://github.com/deepanshu2506) - ​<!-- 03 -->\[Tooltip] Correct inconsistent prop precedence ([#&#8203;29132](https://github.com/mui/material-ui/issues/29132)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/system@5.0.5` - ​<!-- 11 -->\[system] Allow function type for `sx` prop ([#&#8203;29198](https://github.com/mui/material-ui/issues/29198)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 10 -->\[system] Fix various issues reported by using [@&#8203;mui/styled-engine-sc](https://github.com/mui/styled-engine-sc) ([#&#8203;29035](https://github.com/mui/material-ui/issues/29035)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 09 -->\[system] Fix `colorScheme` conflict between application ([#&#8203;29139](https://github.com/mui/material-ui/issues/29139)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 08 -->\[system] Add `unstable_createCssVarsProvider` api ([#&#8203;28965](https://github.com/mui/material-ui/issues/28965)) [@&#8203;siriwatknp](https://github.com/siriwatknp) ##### Documentation - ​<!-- 31 -->\[docs] Fix path to `DataGrid` CSV export options page ([#&#8203;29220](https://github.com/mui/material-ui/issues/29220)) [@&#8203;DanailH](https://github.com/DanailH) - ​<!-- 30 -->\[docs] Give anonymous components a name ([#&#8203;29189](https://github.com/mui/material-ui/issues/29189)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 29 -->\[docs] Add deploy context variables ([#&#8203;29195](https://github.com/mui/material-ui/issues/29195)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 28 -->\[docs] Add MUI packages explanation ([#&#8203;29073](https://github.com/mui/material-ui/issues/29073)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 27 -->\[docs] Fix typo in CSP policy ([#&#8203;29187](https://github.com/mui/material-ui/issues/29187)) [@&#8203;JuliaNeumann](https://github.com/JuliaNeumann) - ​<!-- 26 -->\[docs] Dark mode conditional content rendering ([#&#8203;28665](https://github.com/mui/material-ui/issues/28665)) [@&#8203;michal-perlakowski](https://github.com/michal-perlakowski) - ​<!-- 25 -->\[docs] Fix ClassNameGenerator introduced version [#&#8203;29177](https://github.com/mui/material-ui/issues/29177) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 24 -->\[docs] Add missing `justifyContent` values and update box styling ([#&#8203;29117](https://github.com/mui/material-ui/issues/29117)) [@&#8203;omarmosid](https://github.com/omarmosid) - ​<!-- 23 -->\[docs] Make landing page hero section scrollable ([#&#8203;29141](https://github.com/mui/material-ui/issues/29141)) [@&#8203;waxidiotic](https://github.com/waxidiotic) - ​<!-- 22 -->\[docs] Discourage importing different bundles directly ([#&#8203;29133](https://github.com/mui/material-ui/issues/29133)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 21 -->\[docs] Update module augmentation reference url ([#&#8203;29064](https://github.com/mui/material-ui/issues/29064)) [@&#8203;gnowland](https://github.com/gnowland) - ​<!-- 12 -->\[pricing] Add tooltip to pricing icon ([#&#8203;28959](https://github.com/mui/material-ui/issues/28959)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 07 -->\[Team] Add Alexandre in the about page ([#&#8203;29289](https://github.com/mui/material-ui/issues/29289)) - ​<!-- 02 -->\[website] Fix status label overflow in AdvancedShowcase ([#&#8203;29143](https://github.com/mui/material-ui/issues/29143)) [@&#8203;LorenzHenk](https://github.com/LorenzHenk) - ​<!-- 01 -->\[website] Update legacy logos ([#&#8203;28908](https://github.com/mui/material-ui/issues/28908)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### Core - ​<!-- 37 -->\[core] Order repro methods by preference ([#&#8203;29156](https://github.com/mui/material-ui/issues/29156)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 36 -->\[core] Remove unnecessary usages of `useEventCallback` ([#&#8203;28910](https://github.com/mui/material-ui/issues/28910)) [@&#8203;NMinhNguyen](https://github.com/NMinhNguyen) - ​<!-- 35 -->\[core] add `unstable_ClassNameGenerator` API ([#&#8203;29051](https://github.com/mui/material-ui/issues/29051)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 34 -->\[core] Fix issues when using styled-components ([#&#8203;29048](https://github.com/mui/material-ui/issues/29048)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 33 -->\[core] replace hard-coded classname with classes ([#&#8203;29070](https://github.com/mui/material-ui/issues/29070)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 06 -->\[test] Add documentation for visual regression tests ([#&#8203;29154](https://github.com/mui/material-ui/issues/29154)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 05 -->\[test] Enable "missing act" warnings using new proposal ([#&#8203;29167](https://github.com/mui/material-ui/issues/29167)) [@&#8203;eps1lon](https://github.com/eps1lon) All contributors of this release in alphabetical order: [@&#8203;adamfitzgibbon](https://github.com/adamfitzgibbon), [@&#8203;DanailH](https://github.com/DanailH), [@&#8203;deepanshu2506](https://github.com/deepanshu2506), [@&#8203;Devesh21700Kumar](https://github.com/Devesh21700Kumar), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;gnowland](https://github.com/gnowland), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;jatinsandilya](https://github.com/jatinsandilya), [@&#8203;JuliaNeumann](https://github.com/JuliaNeumann), [@&#8203;LorenzHenk](https://github.com/LorenzHenk), [@&#8203;michal-perlakowski](https://github.com/michal-perlakowski), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;nikitabobers](https://github.com/nikitabobers), [@&#8203;NMinhNguyen](https://github.com/NMinhNguyen), [@&#8203;omarmosid](https://github.com/omarmosid), [@&#8203;rebeccahongsf](https://github.com/rebeccahongsf), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;waxidiotic](https://github.com/waxidiotic) ### [`v5.0.4`](https://github.com/mui/material-ui/blob/HEAD/CHANGELOG.md#&#8203;504) [Compare Source](https://github.com/mui/material-ui/compare/v5.0.3...v5.0.4) <!-- generated comparing v5.0.3..master --> *Oct 14, 2021* A big thanks to the 17 contributors who made this release possible. Here are some highlights ✨: - 🧪 Added `UnstyledInput` and `useInput` hook in the the first component in [@&#8203;mui/base](https://github.com/mui/base) package [@&#8203;michaldudak](https://github.com/michaldudak) ([#&#8203;28053](https://github.com/mui/material-ui/issues/28053)) - 🐛 Fixed many bugs and improved the documentation 📚. ##### `@mui/material@5.0.4` - ​<!-- 31 -->\[Chip] disable ripple only if onDelete is present. ([#&#8203;29034](https://github.com/mui/material-ui/issues/29034)) [@&#8203;mottox2](https://github.com/mottox2) - ​<!-- 06 -->\[Pagination] Fix clicking on `...` triggering `onChange` with page value `null` ([#&#8203;28884](https://github.com/mui/material-ui/issues/28884)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 04 -->\[Tabs] Alternative way to disable ":first-child is unsafe" error ([#&#8203;28982](https://github.com/mui/material-ui/issues/28982)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 03 -->\[Tabs] Fix ":first-child is potentially unsafe" error ([#&#8203;28890](https://github.com/mui/material-ui/issues/28890)) [@&#8203;hbjORbj](https://github.com/hbjORbj) - ​<!-- 01 -->\[transitions] Mark `children` as required where nullish `children` would crash at runtime ([#&#8203;29028](https://github.com/mui/material-ui/issues/29028)) [@&#8203;eps1lon](https://github.com/eps1lon) ##### `@mui/system@5.0.4` - ​<!-- 05 -->\[system] Update typing for `style` function ([#&#8203;28744](https://github.com/mui/material-ui/issues/28744)) [@&#8203;hbjORbj](https://github.com/hbjORbj) ##### `@mui/base@5.0.0-alpha.51` - ​<!-- 07 -->\[InputUnstyled] Create unstyled input and useInput hook ([#&#8203;28053](https://github.com/mui/material-ui/issues/28053)) [@&#8203;michaldudak](https://github.com/michaldudak) ##### `@mui/lab@5.0.0-alpha.51` - ​<!-- 25 -->\[DesktopDatePicker] add Paper props to pass down to Paper component ([#&#8203;28865](https://github.com/mui/material-ui/issues/28865)) [@&#8203;amen-souissi](https://github.com/amen-souissi) ##### Docs - ​<!-- 24 -->\[docs] Add JSDoc to `theme.breakpoints` ([#&#8203;29039](https://github.com/mui/material-ui/issues/29039)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 23 -->\[docs] Rename broken package names in docs pointing to `@mui/material` ([#&#8203;29006](https://github.com/mui/material-ui/issues/29006)) [@&#8203;visualfanatic](https://github.com/visualfanatic) - ​<!-- 22 -->\[docs] Add troubleshooting guide for unexpected styles ([#&#8203;28907](https://github.com/mui/material-ui/issues/28907)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 21 -->\[docs] Fix issues reported by ahref ([#&#8203;28986](https://github.com/mui/material-ui/issues/28986)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 20 -->\[docs] Remove json translations for dropped locales ([#&#8203;28987](https://github.com/mui/material-ui/issues/28987)) [@&#8203;mnajdova](https://github.com/mnajdova) - ​<!-- 19 -->\[docs] Fix type signature of renderGroup in Autocomplete ([#&#8203;28876](https://github.com/mui/material-ui/issues/28876)) [@&#8203;tanyabouman](https://github.com/tanyabouman) - ​<!-- 18 -->\[docs] Minor typo in v4-v5 migration docs ([#&#8203;28995](https://github.com/mui/material-ui/issues/28995)) [@&#8203;kgregory](https://github.com/kgregory) - ​<!-- 17 -->\[docs] Add `mui-image` related project ([#&#8203;28621](https://github.com/mui/material-ui/issues/28621)) [@&#8203;benmneb](https://github.com/benmneb) - ​<!-- 16 -->\[docs] Update Getting Started Templates' Source URIs ([#&#8203;28929](https://github.com/mui/material-ui/issues/28929)) [@&#8203;epodol](https://github.com/epodol) - ​<!-- 15 -->\[docs] Improve search experience ([#&#8203;28801](https://github.com/mui/material-ui/issues/28801)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 14 -->\[docs] Fix demo of the responsive drawer ([#&#8203;28226](https://github.com/mui/material-ui/issues/28226)) [@&#8203;goncalovf](https://github.com/goncalovf) - ​<!-- 13 -->\[docs] Fix global theme link demo ([#&#8203;28974](https://github.com/mui/material-ui/issues/28974)) [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) - ​<!-- 12 -->\[docs] Update box example to use 'backgroundColor' rather than 'bgColor' ([#&#8203;28958](https://github.com/mui/material-ui/issues/28958)) [@&#8203;Jareechang](https://github.com/Jareechang) - ​<!-- 11 -->\[docs] corrected `Box` import for `sx-prop` example ([#&#8203;28873](https://github.com/mui/material-ui/issues/28873)) [@&#8203;phudekar](https://github.com/phudekar) - ​<!-- 10 -->\[docs] Fix footnote ID links in CONTRIBUTING.md ([#&#8203;28849](https://github.com/mui/material-ui/issues/28849)) [@&#8203;officialpiyush](https://github.com/officialpiyush) - ​<!-- 09 -->\[docs] Fix color & density playground ([#&#8203;28803](https://github.com/mui/material-ui/issues/28803)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 08 -->\[docs] Improve visibility of styled engine configuration section in installation guide ([#&#8203;28903](https://github.com/mui/material-ui/issues/28903)) [@&#8203;Jareechang](https://github.com/Jareechang) ##### Core - ​<!-- 30 -->\[core] Prevent yarn cache growing infinitely ([#&#8203;29040](https://github.com/mui/material-ui/issues/29040)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 29 -->\[core] Update browserslist ([#&#8203;29025](https://github.com/mui/material-ui/issues/29025)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 28 -->\[core] Update `peerDependencies` to require `latest` instead of `next` ([#&#8203;29007](https://github.com/mui/material-ui/issues/29007)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 27 -->\[core] Increase memory limit for size:snapshot ([#&#8203;29005](https://github.com/mui/material-ui/issues/29005)) [@&#8203;eps1lon](https://github.com/eps1lon) - ​<!-- 26 -->\[core] Init `private` Joy package ([#&#8203;28957](https://github.com/mui/material-ui/issues/28957)) [@&#8203;siriwatknp](https://github.com/siriwatknp) - ​<!-- 02 -->\[test] Remove a11y snapshot tests ([#&#8203;28887](https://github.com/mui/material-ui/issues/28887)) [@&#8203;eps1lon](https://github.com/eps1lon) All contributors of this release in alphabetical order: [@&#8203;amen-souissi](https://github.com/amen-souissi), [@&#8203;benmneb](https://github.com/benmneb), [@&#8203;epodol](https://github.com/epodol), [@&#8203;eps1lon](https://github.com/eps1lon), [@&#8203;goncalovf](https://github.com/goncalovf), [@&#8203;hbjORbj](https://github.com/hbjORbj), [@&#8203;Jareechang](https://github.com/Jareechang), [@&#8203;kgregory](https://github.com/kgregory), [@&#8203;michaldudak](https://github.com/michaldudak), [@&#8203;mnajdova](https://github.com/mnajdova), [@&#8203;mottox2](https://github.com/mottox2), [@&#8203;officialpiyush](https://github.com/officialpiyush), [@&#8203;phudekar](https://github.com/phudekar), [@&#8203;siriwatknp](https://github.com/siriwatknp), [@&#8203;tanyabouman](https://github.com/tanyabouman), [@&#8203;visualfanatic](https://github.com/visualfanatic), [@&#8203;ZeeshanTamboli](https://github.com/ZeeshanTamboli) </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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDEuMTEiLCJ1cGRhdGVkSW5WZXIiOiIzMi4yNDEuMTEifQ==-->
kjuulh force-pushed renovate/material-ui-monorepo from 06b4e76a4b to caedd97d80 2022-10-26 17:03:30 +02:00 Compare
kjuulh force-pushed renovate/material-ui-monorepo from caedd97d80 to afbf300958 2022-10-26 17:21:25 +02:00 Compare
kjuulh force-pushed renovate/material-ui-monorepo from afbf300958 to 73f9d869ad 2022-10-26 18:58:10 +02:00 Compare
kjuulh force-pushed renovate/material-ui-monorepo from 73f9d869ad to 2d5157cef8 2022-10-26 19:53:20 +02:00 Compare
kjuulh merged commit 2d5157cef8 into main 2022-10-26 20:12:52 +02:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: OpenFood/openfood#7
No description provided.