@cbpds/web-components
Version:
Web components for the CBP Design System.
18 lines (17 loc) • 717 B
TypeScript
export declare class CbpFlex {
host: HTMLElement;
display: 'flex' | 'inline-flex';
wrap: 'nowrap' | 'wrap' | 'wrap-reverse';
direction: 'row' | 'row-reverse' | 'column' | 'column-reverse';
alignItems: 'auto' | 'stretch' | 'flex-start' | 'flex-end' | 'center' | 'baseline';
alignContent: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'stretch';
justifyContent: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly';
gap: string;
breakpoint: string;
contentBreakpoint: string;
sx: any;
handleBreakpointChange(mql: any): void;
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
}