npm @mui/system 5.5.3
v5.5.3

latest releases: 6.1.1-dev.20240919-130050-82a6448768, 6.1.1, 6.1.0...
2 years ago

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 '@mui/base';
    +import { TrapFocus } from '@mui/base';
    
    // or
    
    -import TrapFocus from '@mui/base/Unstyled_TrapFocus';
    +import TrapFocus from '@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

Don't miss a new system release

NewReleases is sending notifications on new releases.