Security upgrades

This commit is contained in:
2020-07-15 19:54:48 +02:00
parent 59cc6c54cd
commit ad8ed283d2
3164 changed files with 408897 additions and 28 deletions

46
node_modules/@material-ui/system/es/sizing.js generated vendored Normal file
View File

@@ -0,0 +1,46 @@
import style from './style';
import compose from './compose';
function transform(value) {
return value <= 1 ? `${value * 100}%` : value;
}
export const width = style({
prop: 'width',
transform
});
export const maxWidth = style({
prop: 'maxWidth',
transform
});
export const minWidth = style({
prop: 'minWidth',
transform
});
export const height = style({
prop: 'height',
transform
});
export const maxHeight = style({
prop: 'maxHeight',
transform
});
export const minHeight = style({
prop: 'minHeight',
transform
});
export const sizeWidth = style({
prop: 'size',
cssProperty: 'width',
transform
});
export const sizeHeight = style({
prop: 'size',
cssProperty: 'height',
transform
});
export const boxSizing = style({
prop: 'boxSizing'
});
const sizing = compose(width, maxWidth, minWidth, height, maxHeight, minHeight, boxSizing);
export default sizing;