You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1009 B
TypeScript
32 lines
1009 B
TypeScript
import { EventEmitter, ChangeDetectorRef } from '@angular/core';
|
|
import { ControlValueAccessor } from '@angular/forms';
|
|
export declare const TRISTATECHECKBOX_VALUE_ACCESSOR: any;
|
|
export declare class TriStateCheckbox implements ControlValueAccessor {
|
|
private cd;
|
|
constructor(cd: ChangeDetectorRef);
|
|
disabled: boolean;
|
|
name: string;
|
|
tabindex: number;
|
|
inputId: string;
|
|
style: any;
|
|
styleClass: string;
|
|
label: string;
|
|
onChange: EventEmitter<any>;
|
|
focus: boolean;
|
|
value: any;
|
|
onModelChange: Function;
|
|
onModelTouched: Function;
|
|
onClick(event: Event, input: HTMLInputElement): void;
|
|
onKeydown(event: KeyboardEvent): void;
|
|
onKeyup(event: KeyboardEvent): void;
|
|
toggle(event: Event): void;
|
|
onFocus(): void;
|
|
onBlur(): void;
|
|
registerOnChange(fn: Function): void;
|
|
registerOnTouched(fn: Function): void;
|
|
writeValue(value: any): void;
|
|
setDisabledState(disabled: boolean): void;
|
|
}
|
|
export declare class TriStateCheckboxModule {
|
|
}
|