UNPKG

@cbpds/web-components

Version:
24 lines (23 loc) 718 B
import { EventEmitter } from '../../stencil-public-runtime'; export declare class CbpCheckbox { private formField; private initialChecked; 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; reset(): Promise<void>; watchDisabledHandler(newValue: boolean): void; watchChecked(newValue: boolean): void; watchIndeterminateHandler(newValue: boolean): void; componentWillLoad(): void; componentDidLoad(): void; render(): any; }