|
@@ -27,10 +27,16 @@ export default class BaseHolder extends React.Component {
|
|
|
|
|
|
width,
|
|
|
height,
|
|
|
+ minWidth,
|
|
|
+ minHeight,
|
|
|
paddingTop,
|
|
|
paddingBottom,
|
|
|
+ paddingLeft,
|
|
|
+ paddingRight,
|
|
|
marginLeft,
|
|
|
marginRight,
|
|
|
+ marginTop,
|
|
|
+ marginBottom,
|
|
|
|
|
|
overflow,
|
|
|
CoreSystem,
|
|
@@ -52,10 +58,16 @@ export default class BaseHolder extends React.Component {
|
|
|
flexBasis,
|
|
|
width,
|
|
|
height,
|
|
|
+ minWidth,
|
|
|
+ minHeight,
|
|
|
paddingTop,
|
|
|
paddingBottom,
|
|
|
+ paddingRight,
|
|
|
+ paddingLeft,
|
|
|
marginLeft,
|
|
|
marginRight,
|
|
|
+ marginTop,
|
|
|
+ marginBottom,
|
|
|
overflow,
|
|
|
|
|
|
pointerEvents: 'auto'
|
|
@@ -117,12 +129,21 @@ const styles = StyleSheet.create({
|
|
|
});
|
|
|
|
|
|
BaseHolder.Inputs = {
|
|
|
+ minWidth: new Types.Integer(),
|
|
|
+ minHeight: new Types.Integer(),
|
|
|
width: new Types.Integer(),
|
|
|
height: new Types.Integer(),
|
|
|
+
|
|
|
paddingTop: new Types.Integer(),
|
|
|
paddingBottom: new Types.Integer(),
|
|
|
- marginLeft: new Types.Integer().default(0),
|
|
|
- marginRight: new Types.Integer().default(0),
|
|
|
+ paddingLeft: new Types.Integer(),
|
|
|
+ paddingRight: new Types.Integer(),
|
|
|
+
|
|
|
+ marginTop: new Types.Integer(),
|
|
|
+ marginBottom: new Types.Integer(),
|
|
|
+ marginLeft: new Types.Integer(),
|
|
|
+ marginRight: new Types.Integer(),
|
|
|
+
|
|
|
stretchContainer: new Types.Bool().default(false),
|
|
|
overflow: new Types.Text().default('visible'),
|
|
|
justifyContent: new Types.Text().default("flex-start"),
|