UNPKG

@lxlib/form

Version:

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.1.

20 lines (19 loc) 645 B
import { SFValue } from '../../interface'; import { SFSchemaEnum } from '../../schema'; import { ControlUIWidget } from '../../widget'; import { SFCheckboxWidgetSchema } from './schema'; export declare class CheckboxWidget extends ControlUIWidget<SFCheckboxWidgetSchema> { data: SFSchemaEnum[]; allChecked: boolean; indeterminate: boolean; grid_span: number; labelTitle: string; inited: boolean; reset(value: SFValue): void; _setValue(value: SFValue): void; notifySet(): void; groupInGridChange(values: SFValue[]): void; onAllChecked(): void; updateAllChecked(): this; private notifyChange; }