yarn material-ui 1.0.0-beta.39

latest releases: 0.20.2, 0.20.1, 1.0.0-beta.47...
6 years ago
Mar 28, 2018

Big thanks to the 25 contributors who made this release possible.

Here are some highlights ✨:

Breaking change

The negative margin implementation solution currently used comes with serious limitations.
Material-UI is the only library with a non-zero default spacing between the items.
Having zero spacing by default will ease the usage of the component.

-<Grid />
+<Grid spacing={16} />

For consistency with the removeEventListener Web API and the Snackbar disableWindowBlurListener property.

<Tooltip
- disableTriggerFocus
- disableTriggerHover
- disableTriggerTouch
+ disableFocusListener
+ disableHoverListener
+ disableTouchListener
/>

I have made a mistake in #8108. The property isn't applied on a FormControl but on a FormLabel component.

-<InputLabel FormControlClasses={classes} />
+<InputLabel FormLabelClasses={classes} />

Component Fixes / Enhancements

Docs

Core

Don't miss a new material-ui release

NewReleases is sending notifications on new releases.