@cbpds/web-components
Version:
Web components for the CBP Design System.
19 lines (18 loc) • 476 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
export declare class CbpDropdownItem {
private checkbox;
host: HTMLElement;
value: string;
disabled: boolean;
current: boolean;
itemId: string;
selected: boolean;
dropdownItemClick: EventEmitter;
handleClick({ target }: {
target: any;
}): void;
watchSelected(newValue: any): void;
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
}