systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
31 lines (30 loc) • 1.2 kB
TypeScript
import { ElementRef } from '@angular/core';
import { ModalComponent, SystelabModalContext } from '../modal/dialog/modal-context';
import { DialogRef } from '../modal/dialog/dialog-ref';
import * as i0 from "@angular/core";
export declare class NumPadDialogParameters extends SystelabModalContext {
value: string;
width: number;
height: number;
isPassword: boolean;
}
export declare class NumPadDialog implements ModalComponent<NumPadDialogParameters> {
dialog: DialogRef<NumPadDialogParameters>;
protected inputElement: ElementRef;
value: string;
dialogParameters: NumPadDialogParameters;
searchingValue: string;
titleForDialog: string;
showClose: boolean;
isPassword: boolean;
static getParameters(): NumPadDialogParameters;
constructor(dialog: DialogRef<NumPadDialogParameters>);
close(): void;
accept(): void;
pushButton(value: string): void;
deleteNumber(): void;
cleanInput(): void;
doKeyPress(event: KeyboardEvent): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NumPadDialog, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NumPadDialog, "ng-component", never, {}, {}, never, never, false, never>;
}