@cbpds/web-components
Version:
Web components for the CBP Design System.
18 lines (17 loc) • 508 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
export declare class CbpExpand {
private control;
private button;
host: HTMLElement;
headingId: string;
open: boolean;
label: string;
headingLevel: 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
context: "light-inverts" | "light-always" | "dark-inverts" | "dark-always";
sx: any;
expandClick: EventEmitter;
handleClick(e: any): void;
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
}