@material-ui/system
Advanced tools
Comparing version 4.1.0 to 4.2.0
@@ -8,3 +8,3 @@ "use strict"; | ||
}); | ||
exports.default = exports.displayPrint = exports.displayRaw = void 0; | ||
exports.default = exports.whiteSpace = exports.textOverflow = exports.overflow = exports.displayPrint = exports.displayRaw = void 0; | ||
@@ -31,5 +31,17 @@ var _style = _interopRequireDefault(require("./style")); | ||
exports.displayPrint = displayPrint; | ||
var overflow = (0, _style.default)({ | ||
prop: 'overflow' | ||
}); | ||
exports.overflow = overflow; | ||
var textOverflow = (0, _style.default)({ | ||
prop: 'textOverflow' | ||
}); | ||
exports.textOverflow = textOverflow; | ||
var whiteSpace = (0, _style.default)({ | ||
prop: 'whiteSpace' | ||
}); | ||
exports.whiteSpace = whiteSpace; | ||
var _default = (0, _compose.default)(displayRaw, displayPrint); | ||
var _default = (0, _compose.default)(displayRaw, displayPrint, overflow, textOverflow, whiteSpace); | ||
exports.default = _default; |
@@ -15,2 +15,11 @@ import style from './style'; | ||
}); | ||
export default compose(displayRaw, displayPrint); | ||
export const overflow = style({ | ||
prop: 'overflow' | ||
}); | ||
export const textOverflow = style({ | ||
prop: 'textOverflow' | ||
}); | ||
export const whiteSpace = style({ | ||
prop: 'whiteSpace' | ||
}); | ||
export default compose(displayRaw, displayPrint, overflow, textOverflow, whiteSpace); |
import style from './style'; | ||
import compose from './compose'; | ||
export const flexBasis = style({ | ||
prop: 'flexBasis' | ||
}); | ||
export const flexDirection = style({ | ||
@@ -33,3 +36,9 @@ prop: 'flexDirection' | ||
}); | ||
const flexbox = compose(flexDirection, flexWrap, justifyContent, alignItems, alignContent, order, flex, flexGrow, flexShrink, alignSelf); | ||
export const justifyItems = style({ | ||
prop: 'justifyItems' | ||
}); | ||
export const justifySelf = style({ | ||
prop: 'justifySelf' | ||
}); | ||
const flexbox = compose(flexBasis, flexDirection, flexWrap, justifyContent, alignItems, alignContent, order, flex, flexGrow, flexShrink, alignSelf, justifyItems, justifySelf); | ||
export default flexbox; |
@@ -17,2 +17,11 @@ import style from './style'; | ||
}); | ||
export default compose(displayRaw, displayPrint); | ||
export var overflow = style({ | ||
prop: 'overflow' | ||
}); | ||
export var textOverflow = style({ | ||
prop: 'textOverflow' | ||
}); | ||
export var whiteSpace = style({ | ||
prop: 'whiteSpace' | ||
}); | ||
export default compose(displayRaw, displayPrint, overflow, textOverflow, whiteSpace); |
import style from './style'; | ||
import compose from './compose'; | ||
export var flexBasis = style({ | ||
prop: 'flexBasis' | ||
}); | ||
export var flexDirection = style({ | ||
@@ -33,3 +36,9 @@ prop: 'flexDirection' | ||
}); | ||
var flexbox = compose(flexDirection, flexWrap, justifyContent, alignItems, alignContent, order, flex, flexGrow, flexShrink, alignSelf); | ||
export var justifyItems = style({ | ||
prop: 'justifyItems' | ||
}); | ||
export var justifySelf = style({ | ||
prop: 'justifySelf' | ||
}); | ||
var flexbox = compose(flexBasis, flexDirection, flexWrap, justifyContent, alignItems, alignContent, order, flex, flexGrow, flexShrink, alignSelf, justifyItems, justifySelf); | ||
export default flexbox; |
@@ -1,2 +0,2 @@ | ||
/** @license Material-UI v4.1.0 | ||
/** @license Material-UI v4.2.0 | ||
* | ||
@@ -3,0 +3,0 @@ * This source code is licensed under the MIT license found in the |
@@ -8,3 +8,3 @@ "use strict"; | ||
}); | ||
exports.default = exports.alignSelf = exports.flexShrink = exports.flexGrow = exports.flex = exports.order = exports.alignContent = exports.alignItems = exports.justifyContent = exports.flexWrap = exports.flexDirection = void 0; | ||
exports.default = exports.justifySelf = exports.justifyItems = exports.alignSelf = exports.flexShrink = exports.flexGrow = exports.flex = exports.order = exports.alignContent = exports.alignItems = exports.justifyContent = exports.flexWrap = exports.flexDirection = exports.flexBasis = void 0; | ||
@@ -15,2 +15,6 @@ var _style = _interopRequireDefault(require("./style")); | ||
var flexBasis = (0, _style.default)({ | ||
prop: 'flexBasis' | ||
}); | ||
exports.flexBasis = flexBasis; | ||
var flexDirection = (0, _style.default)({ | ||
@@ -56,4 +60,12 @@ prop: 'flexDirection' | ||
exports.alignSelf = alignSelf; | ||
var flexbox = (0, _compose.default)(flexDirection, flexWrap, justifyContent, alignItems, alignContent, order, flex, flexGrow, flexShrink, alignSelf); | ||
var justifyItems = (0, _style.default)({ | ||
prop: 'justifyItems' | ||
}); | ||
exports.justifyItems = justifyItems; | ||
var justifySelf = (0, _style.default)({ | ||
prop: 'justifySelf' | ||
}); | ||
exports.justifySelf = justifySelf; | ||
var flexbox = (0, _compose.default)(flexBasis, flexDirection, flexWrap, justifyContent, alignItems, alignContent, order, flex, flexGrow, flexShrink, alignSelf, justifyItems, justifySelf); | ||
var _default = flexbox; | ||
exports.default = _default; |
@@ -61,6 +61,10 @@ import * as CSS from 'csstype'; | ||
export const display: SimpleStyleFunction<'display' | 'displayPrint'>; | ||
export const display: SimpleStyleFunction< | ||
'display' | 'displayPrint' | 'overflow' | 'textOverflow' | 'whiteSpace' | ||
>; | ||
export type DisplayProps = PropsFor<typeof display>; | ||
export const flexbox: SimpleStyleFunction< | ||
| 'flexBasis' | ||
| 'flexDirection' | ||
@@ -76,2 +80,4 @@ | 'flexWrap' | ||
| 'alignSelf' | ||
| 'justifyItems' | ||
| 'justifySelf' | ||
>; | ||
@@ -78,0 +84,0 @@ export type FlexboxProps = PropsFor<typeof flexbox>; |
@@ -1,2 +0,2 @@ | ||
/** @license Material-UI v4.1.0 | ||
/** @license Material-UI v4.2.0 | ||
* | ||
@@ -3,0 +3,0 @@ * This source code is licensed under the MIT license found in the |
{ | ||
"name": "@material-ui/system", | ||
"version": "4.1.0", | ||
"version": "4.2.0", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "author": "Material-UI Team", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
508474
2064