@ohayojp/form
Version:
20 lines (19 loc) • 664 B
TypeScript
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;
}