@cbpds/web-components
Version:
Web components for the CBP Design System.
21 lines (20 loc) • 619 B
TypeScript
import { EventEmitter } from '../../stencil-public-runtime';
export declare class CbpCheckbox {
private formField;
host: HTMLElement;
name: string;
value: string;
fieldId: string;
checked: boolean;
indeterminate: boolean;
disabled: boolean;
context: 'light-inverts' | 'light-always' | 'dark-inverts' | 'dark-always';
sx: any;
stateChanged: EventEmitter;
handleChange(e: any): void;
watchDisabledHandler(newValue: boolean): void;
watchIndeterminateHandler(newValue: boolean): void;
componentWillLoad(): void;
componentDidLoad(): void;
render(): any;
}