row.d.ts 687 B

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