Open greenkeeper[bot] opened 6 years ago
dependency
@material-ui/core was updated from 3.0.0
to 3.1.2
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.1.2
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 16 contributors who made this release possible!
It contains many bug fixes
@material-ui/core@v3.1.2
variant
property to InputLabel type definition (#13009) @chrislambenotched
should be boolean type (#13038) @zheeeng@material-ui/lab@v3.0.0-alpha.18
@material-ui/docs@v3.0.0-alpha.6
dependency
@material-ui/core was updated from 3.0.0
to 3.2.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.2.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 18 contributors who made this release possible!
Here are some highlights
@material-ui/core@v3.2.0
This is a backward compatible change.
You can opt-in the usage of the new Material Design typography specification.
To learn more about the upgrade path, follow https://material-ui.com/style/typography/#migration-to-typography-v2.
This change updates the variant wording to match the one used in the Material Design specification.
-<Button variant="flat" />
+<Button variant="text" />
-<Button variant="raised" />
+<Button variant="contained" />
You can suppress the warnings with the environment variable MUI_SUPPRESS_DEPRECATION_WARNINGS
set to a truthy value.
<div>
element to children (#13067) @izyb@material-ui/lab@v3.0.0-alpha.19
dependency
@material-ui/core was updated from 3.0.0
to 3.2.1
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.2.1
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 19 contributors who made this release possible!
Here are some highlights
@material-ui/core@v3.2.1
anchorOrigin.vertical=enter
(#13238) @iamhosseindhv@material-ui/lab@v3.0.0-alpha.20
filled-input
link text to FilledInput
(#13223) @G-Rathdependency
@material-ui/core was updated from 3.0.0
to 3.2.2
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 3 contributors who made this release possible!
This is a quick patch after important regressions.
@material-ui/core@v3.2.2
dependency
@material-ui/core was updated from 3.0.0
to 3.3.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.3.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 26 contributors who made this release possible!
Here are some highlights
@material-ui/core@v3.3.0
@material-ui/lab@v3.0.0-alpha.21
@material-ui/docs@v3.0.0-alpha.7
listItem
jss class (#13269, #13268) @G-Rathmargin
jss class (#13318) @G-Rathdependency
@material-ui/core was updated from 3.0.0
to 3.3.1
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.3.2
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.3.2
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 17 contributors who made this release possible!
Here are some highlights
@material-ui/core@v3.3.2
@material-ui/lab@v3.0.0-alpha.22
dependency
@material-ui/core was updated from 3.0.0
to 3.4.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.4.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 16 contributors who made this release possible!
Here are some highlights
@material-ui/core@v3.4.0
labelPlacement
property variants (#13499) @JulienMalige@material-ui/lab@v3.0.0-alpha.23
dependency
@material-ui/core was updated from 3.0.0
to 3.5.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 13 contributors who made this release possible!
Here are some highlights
@material-ui/styles
package The Material-UI's styling solution has pretty much stayed the same for the last 12 months.
Some interesting CSS-in-JS libraries like styled-components, emotion or linaria have emerged.
This new package is a significant step forward. Some of the key features:
Here is an example: https://codesandbox.io/s/vjzn5z4k77.
import Button from '@material-ui/core/Button';
import React from 'react';
import { makeStyles } from '@material-ui/styles';
// Like https://github.com/brunobertolini/styled-by
const styledBy = (property, mapping) => props => mapping[props[property]];
const useStyles = makeStyles({
root: {
background: styledBy('color', {
red: 'linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%)',
blue: 'linear-gradient(45deg, #2196F3 30%, #21CBF3 90%)',
}),
border: 0,
borderRadius: 3,
boxShadow: styledBy('color', {
red: '0 3px 5px 2px rgba(255, 105, 135, .3)',
blue: '0 3px 5px 2px rgba(33, 203, 243, .3)',
}),
color: 'white',
height: 48,
padding: '0 30px',
},
});
function MyButton(props) {
const { color, ...other } = props;
const classes = useStyles(props);
return <Button className={classes.root} {...other} />;
}
function AdaptingHook() {
return (
<div>
<MyButton color="red">Red</MyButton>
<br />
<br />
<MyButton color="blue">Blue</MyButton>
</div>
);
}
export default AdaptingHook;
Powered by JSS.
@material-ui/core@v3.5.0
@material-ui/styles@v3.0.0-alpha.0
dependency
@material-ui/core was updated from 3.0.0
to 3.5.1
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 13 contributors who made this release possible!
Here are some highlights
@material-ui/styles
package The Material-UI's styling solution has pretty much stayed the same for the last 12 months.
Some interesting CSS-in-JS libraries like styled-components, emotion or linaria have emerged.
This new package is a significant step forward. Some of the key features:
Here is an example: https://codesandbox.io/s/vjzn5z4k77.
import Button from '@material-ui/core/Button';
import React from 'react';
import { makeStyles } from '@material-ui/styles';
// Like https://github.com/brunobertolini/styled-by
const styledBy = (property, mapping) => props => mapping[props[property]];
const useStyles = makeStyles({
root: {
background: styledBy('color', {
red: 'linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%)',
blue: 'linear-gradient(45deg, #2196F3 30%, #21CBF3 90%)',
}),
border: 0,
borderRadius: 3,
boxShadow: styledBy('color', {
red: '0 3px 5px 2px rgba(255, 105, 135, .3)',
blue: '0 3px 5px 2px rgba(33, 203, 243, .3)',
}),
color: 'white',
height: 48,
padding: '0 30px',
},
});
function MyButton(props) {
const { color, ...other } = props;
const classes = useStyles(props);
return <Button className={classes.root} {...other} />;
}
function AdaptingHook() {
return (
<div>
<MyButton color="red">Red</MyButton>
<br />
<br />
<MyButton color="blue">Blue</MyButton>
</div>
);
}
export default AdaptingHook;
Powered by JSS.
@material-ui/core@v3.5.1
@material-ui/styles@v3.0.0-alpha.0
dependency
@material-ui/core was updated from 3.0.0
to 3.6.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.6.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 28 contributors who made this release possible!
The last release was two weeks ago.
Last weekend, we have missed the release train
As a consequence, this is a dense release.
Here are some highlights
@material-ui/core@v3.6.0
The floating action button doesn't share many styles with the default button component.
We are extracting the variant into its own component.
This way, we better isolate the concerns.
We will remove the FAB styles from the button in v4, making the Button
component more lightweight, a win for people overriding our styles.
-import Button from '@material-ui/core/Button';
+import Fab from '@material-ui/core/Fab';
-<Button variant="fab" color="primary">
+<Fab color="primary">
<AddIcon />
-</Button>
+</Fab>
SwipeAreaProps
property (#13592) @SerhiiBilyk@material-ui/lab@v3.0.0-alpha.24
@material-ui/styles@v3.0.0-alpha.1
@material-ui/docs@v3.0.0-alpha.8
dependency
@material-ui/core was updated from 3.0.0
to 3.6.1
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 15 contributors who made this release possible!
There are no fundamental changes in this version.
It's a stability release after v3.6.0. It contains tons of bug fixes
@material-ui/core@v3.6.1
@material-ui/styles@v3.0.0-alpha.2
dependency
@material-ui/core was updated from 3.0.0
to 3.6.2
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.7.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.7.1
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.Update to these versions instead π
Big thanks to the 15 contributors who made this release possible!
Here are some highlights
@material-ui/core@v3.7.1
dependency
@material-ui/core was updated from 3.0.0
to 3.8.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.8.1
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.1
.dependency
@material-ui/core was updated from 3.0.0
to 3.8.2
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.2
.dependency
@material-ui/core was updated from 3.0.0
to 3.8.3
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.2
.Update to these versions instead π
Big thanks to the 5 contributors who made this release possible!
We are making a quick release to fix an important TypeScript regression (#14117) @eps1lon.
@material-ui/core@v3.8.3
InputBaseComponentProps
type (#14082) @franklixuefeidependency
@material-ui/core was updated from 3.0.0
to 3.9.0
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.2
.Update to these versions instead π
Big thanks to the 17 contributors who made this release possible!
Here are some highlights
@material-ui/core@v3.9.0
@material-ui/styles@v3.0.0-alpha.8
dependency
@material-ui/core was updated from 3.0.0
to 3.9.3
.dependency
@material-ui/icons was updated from 3.0.0
to 3.0.2
.Update to these versions instead π
Big thanks to the 11 contributors who made this release possible!
This release fixes an important regression with TypeScript: #15076.
@material-ui/core@v3.9.3
type
prop (#15096) @karlbohlmarkN/A
There have been updates to the material-ui monorepo:
dependency
@material-ui/core was updated from3.0.0
to3.1.2
.dependency
@material-ui/icons was updated from3.0.0
to3.0.1
.These versions are not covered by your current version range.
If you donβt accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.
This monorepo update includes releases of one or more dependencies which all belong to the material-ui group definition.
Find out more about this release.
FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donβt help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper bot :palm_tree: