Skip to content

v4.0.0-alpha.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@oliviertassinari oliviertassinari released this 10 Mar 11:59
Mar 10, 2019

A big thanks to the 14 contributors who made this release possible!

Here are some highlights ✨:

@material-ui/[email protected]

Breaking change

  • [useMediaQuery] Remove unstable prefix (#14593)

    -import { unstable_useMediaQuery as useMediaQuery } from '@material-ui/core/useMediaQuery';
    +import useMediaQuery from '@material-ui/core/useMediaQuery';
  • [MenuItem] Remove fixed height (#14799) @KyruCabading
    Remove the fixed height of the MenuItem.
    The padding and line-height are used by the browser to compute the height.

Changes

@material-ui/[email protected]

Breaking changes

  • [styles] Remove the old styles modules (#14767) @oliviertassinari
    Isolation of the styling solution of the core components in a dedicated package.
    • Remove the MuiThemeProvider component:

      -import { MuiThemeProvider } from '@material-ui/core/styles';
      +import { ThemeProvider } from '@material-ui/styles';
    • Remove the @material-ui/styles/install module.

      -import { install } from '@material-ui/styles';
      -install();

Changes

@material-ui/[email protected]

  • [SpeedDial] Change actions background color (#14640) @hburrows
  • [SpeedDialAction] Pass onTouchEnd event onto called onClick handler (#14641) @hburrows

Docs

Core