flex-layout-system
Advanced tools
Comparing version 0.2.2 to 0.2.3
@@ -1,2 +0,5 @@ | ||
export type StackedCellProps = { | ||
export type Base = { | ||
className?: string; | ||
}; | ||
export type StackedCellProps = Base & { | ||
rel?: boolean; | ||
@@ -12,3 +15,3 @@ overlay?: boolean; | ||
}; | ||
export type StyleBoxProps = { | ||
export type StyleBoxProps = Base & { | ||
fz?: string; | ||
@@ -44,5 +47,6 @@ fw?: string; | ||
block?: boolean; | ||
color?: string; | ||
}; | ||
export type FitBoxProps = { | ||
export type FitBoxProps = Base & { | ||
flex?: boolean; | ||
@@ -62,7 +66,7 @@ stretch?: boolean; | ||
export type StackedBoxProps = { | ||
export type StackedBoxProps = Base & { | ||
crop?: boolean; | ||
}; | ||
export type FlexDividerProps = { | ||
export type FlexDividerProps = Base & { | ||
v?: boolean; | ||
@@ -77,3 +81,3 @@ h?: boolean; | ||
}; | ||
export type SpaceBoxProps = { | ||
export type SpaceBoxProps = Base & { | ||
width?: string; | ||
@@ -84,3 +88,3 @@ height?: string; | ||
export type AspectRatioProps = { | ||
export type AspectRatioProps = Base & { | ||
fit?: boolean; | ||
@@ -91,3 +95,3 @@ center?: boolean; | ||
export type FlexMediaProps = { | ||
export type FlexMediaProps = Base & { | ||
breakpoints?: string; | ||
@@ -97,3 +101,3 @@ target?: string; | ||
}; | ||
export type FlexGridProps = { | ||
export type FlexGridProps = Base & { | ||
gap?: string; | ||
@@ -103,3 +107,3 @@ compact?: boolean; | ||
}; | ||
export type FlexCellProps = { | ||
export type FlexCellProps = Base & { | ||
order?: number; | ||
@@ -119,3 +123,3 @@ grow?: number; | ||
}; | ||
export type FlexCanvasProps = { | ||
export type FlexCanvasProps = Base & { | ||
width?: string; | ||
@@ -126,3 +130,3 @@ mg?: string; | ||
}; | ||
export type FlexBoxProps = { | ||
export type FlexBoxProps = Base & { | ||
row?: boolean; | ||
@@ -132,2 +136,3 @@ column?: boolean; | ||
nowrap?: boolean; | ||
wrap?: boolean; | ||
fill?: boolean; | ||
@@ -134,0 +139,0 @@ fit?: boolean; |
@@ -43,3 +43,3 @@ { | ||
"dependencies": {}, | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "Flex Layout System", | ||
@@ -46,0 +46,0 @@ "name": "flex-layout-system", |
230167
3589