UNPKG

@cbpds/web-components

Version:
22 lines (21 loc) 1.19 kB
export declare class CbpGrid { host: HTMLElement; display: 'grid' | 'inline-grid'; gridTemplateAreas: string; gridTemplateColumns: 'none' | string; gridTemplateRows: 'none' | string; gridAutoFlow: 'row' | 'column' | 'row dense' | 'column dense'; gridAutoColumns: string; gridAutoRows: string; alignItems: 'normal' | 'stretch' | 'center' | 'start' | 'end' | 'self-start' | 'self-end' | 'baseline' | 'first baseline' | 'last baseline'; justifyItems: 'legacy' | 'normal' | 'stretch' | 'center' | 'safe center' | 'unsafe center' | 'start' | 'end' | 'self-start' | 'self-end' | 'left' | 'right' | 'baseline' | 'first baseline' | 'last baseline'; alignContent: 'normal' | 'stretch' | 'center' | 'start' | 'end' | 'space-around' | 'space-between' | 'space-evenly' | 'safe center' | 'unsafe center'; justifyContent: 'normal' | 'stretch' | 'center' | 'start' | 'end' | 'left' | 'right' | 'space-around' | 'space-between' | 'space-evenly' | 'safe center' | 'unsafe center'; gap: string; breakpoint: string; sx: any; handleBreakpointChange(mql: any): void; componentWillLoad(): void; componentDidLoad(): void; render(): any; }