@cbpds/web-components
Version:
Web components for the CBP Design System.
20 lines (19 loc) • 517 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
export declare class CbpChip {
private button;
private icon;
private iconName;
private ariaPressed;
host: HTMLElement;
name: string;
value: string;
pressed: boolean;
disabled: boolean;
context: "light-inverts" | "light-always" | "dark-inverts" | "dark-always";
sx: any;
chipClick: EventEmitter;
handleClick(e: any): void;
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
}