UNPKG

gg-y-ui

Version:

An enterprise-class UI design language and Vue-based implementation for web

23 lines (16 loc) 653 B
import { YUIComponent } from './component'; /** Horizontal alignment of flex layout */ export type HorizontalAlignment = 'start' | 'end' | 'center' | 'space-around' | 'space-between'; /** vertical alignment of flex layout */ export type VertialAlignment = 'top' | 'middle' | 'bottom'; /** Row Component */ export declare class YRow extends YUIComponent { /** Grid spacing */ gutter: number; /** Layout mode. You can use flex. Works in modern browsers */ type: string; /** Horizontal alignment of flex layout */ justify: HorizontalAlignment; /** Vertical alignment of flex layout */ align: VertialAlignment; }