com.phloxui
Version:
PhloxUI Ng2+ Framework
43 lines (42 loc) • 1.84 kB
TypeScript
import { OnInit, EventEmitter, ElementRef } from '@angular/core';
import { AbstractToggle } from './AbstractToggle';
import { IHasData } from '../../IHasData';
import { ValidationResult } from '../../model/ValidationResult';
import { NeedFocusService } from '../../../service/NeedFocusService.service';
export declare class CheckBox extends AbstractToggle implements OnInit {
static readonly TYPE_NAME: string;
static readonly DEFAULT_FIELD: string;
protected dataParent: IHasData;
protected ignoreParentData: boolean;
protected data: any;
protected ignoreParentDisabled: boolean;
protected delegateHistory: boolean;
protected onDisabled: Function;
protected onEnabled: Function;
protected loadingEnabled: boolean;
protected i18nKey: string;
protected bypass: boolean;
protected options: any;
protected disabled: boolean;
protected field: string;
protected name: string;
protected typeOfData: string;
protected readOnly: boolean;
protected help: any;
protected startValidateEvent: EventEmitter<any>;
protected endValidateEvent: EventEmitter<any>;
protected beforeFocusEvent: EventEmitter<any>;
protected focusEvent: EventEmitter<any>;
protected beforeLostFocusEvent: EventEmitter<any>;
protected lostFocusEvent: EventEmitter<any>;
protected beforeChangeEvent: EventEmitter<any>;
protected changeEvent: EventEmitter<any>;
constructor(elementRef: ElementRef, needFocusService: NeedFocusService);
ngOnInit(): void;
onFocusing($event: Event): void;
onLostFocusing($event: Event): void;
protected onValidationEnd(inputValue: any, results: ValidationResult[]): void;
protected onDataChange(data: any, inputVal: any): void;
protected doFocus($event: Event): void;
protected doLostFocus($event: Event): void;
}