UNPKG

687 BTypeScriptView Raw
1import { ElementUIComponent } from './component'
2
3/** Horizontal alignment of flex layout */
4export type HorizontalAlignment = 'start' | 'end' | 'center' | 'space-around' | 'space-between'
5
6/** vertical alignment of flex layout */
7export type VertialAlignment = 'top' | 'middle' | 'bottom'
8
9/** Row Layout Component */
10export declare class ElRow extends ElementUIComponent {
11 /** Grid spacing */
12 gutter: number
13
14 /** Layout mode. You can use flex. Works in modern browsers */
15 type: string
16
17 /** Horizontal alignment of flex layout */
18 justify: HorizontalAlignment
19
20 /** Vertical alignment of flex layout */
21 align: VertialAlignment
22
23 /** Custom element tag */
24 tag: string
25}