UNPKG

@cbpds/web-components

Version:
21 lines (20 loc) 619 B
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; }