You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** The display property controls if a item is going to be displayed or not. */
104
122
display?: DisplayType
105
-
/** The flex shorthand property sets how a flex item will grow or shrink to fit the space available in its flex container. */
123
+
/** The flex shorthand property sets how a flex item will grow or shrink to fit the space available in its flex container. It sets flex-grow, flex-shrink and flex-basis following Yoga semantics. */
106
124
flex?: number
107
125
/** Justify content describes how to align children within the main axis of their container. */
/** The gap shorthand sets the spacing between rows and columns of a flex container. One value applies to both axes; two space-separated values apply to row then column. */
177
+
gap?: GapShorthand
178
+
/** The row-gap property sets the spacing between the rows of a flex container. Takes precedence over gap on its axis. */
179
+
rowGap?: PositionUnit
180
+
/** The column-gap property sets the spacing between the columns of a flex container. Takes precedence over gap on its axis. */
181
+
columnGap?: PositionUnit
182
+
/** The aspect-ratio property locks the element's width / height ratio. */
183
+
aspectRatio?: number
184
+
/** The direction property specifies the layout direction of the element @defaultValue 'inherit' */
185
+
direction?: DirectionType
186
+
/** The box-sizing property defines whether width/height include padding and border @defaultValue 'border-box' */
0 commit comments