UNPKG

@syncfusion/ej2-angular-buttons

Version:

A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular

43 lines (42 loc) 2.13 kB
import { ElementRef, ViewContainerRef, Renderer2, Injector, ChangeDetectorRef } from '@angular/core'; import { IComponentBase } from '@syncfusion/ej2-angular-base'; import { CheckBox } from '@syncfusion/ej2-buttons'; import * as i0 from "@angular/core"; export declare const inputs: string[]; export declare const outputs: string[]; export declare const twoWays: string[]; /** * Represents the Angular CheckBox Component. * ```html * <ejs-checkbox label='Default'></ejs-checkbox> * ``` */ export declare class CheckBoxComponent extends CheckBox implements IComponentBase { private ngEle; private srenderer; private viewContainerRef; private injector; private cdr; formCompContext: any; formContext: any; tagObjects: any; change: any; created: any; checkedChange: any; indeterminateChange: any; focus: any; blur: any; constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector, cdr: ChangeDetectorRef); registerOnChange(registerFunction: (_: any) => void): void; registerOnTouched(registerFunction: () => void): void; writeValue(value: any): void; setDisabledState(disabled: boolean): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; ngAfterContentChecked(): void; registerEvents: (eventList: string[]) => void; addTwoWay: (propList: string[]) => void; static ɵfac: i0.ɵɵFactoryDeclaration<CheckBoxComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<CheckBoxComponent, "ejs-checkbox", never, { "checked": "checked"; "cssClass": "cssClass"; "disabled": "disabled"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "htmlAttributes": "htmlAttributes"; "indeterminate": "indeterminate"; "label": "label"; "labelPosition": "labelPosition"; "locale": "locale"; "name": "name"; "value": "value"; }, { "focus": "focus"; "blur": "blur"; "change": "change"; "created": "created"; "checkedChange": "checkedChange"; "indeterminateChange": "indeterminateChange"; }, never, never>; }