@danielmoncada/angular-datetime-picker
Version:
Angular Date Time Picker
42 lines (41 loc) • 1.18 kB
TypeScript
/**
* timer-box.component
*/
import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
export declare class OwlTimerBoxComponent implements OnInit, OnDestroy {
showDivider: boolean;
upBtnAriaLabel: string;
upBtnDisabled: boolean;
downBtnAriaLabel: string;
downBtnDisabled: boolean;
/**
* Value would be displayed in the box
* If it is null, the box would display [value]
* */
boxValue: number;
value: number;
min: number;
max: number;
step: number;
inputLabel: string;
valueChange: EventEmitter<number>;
inputChange: EventEmitter<number>;
private inputStream;
private inputStreamSub;
get displayValue(): number;
get owlDTTimerBoxClass(): boolean;
private valueInput;
private onValueInputMouseWheelBind;
constructor();
ngOnInit(): void;
ngOnDestroy(): void;
upBtnClicked(): void;
downBtnClicked(): void;
handleInputChange(val: string): void;
focusOut(value: string): void;
private updateValue;
private updateValueViaInput;
private onValueInputMouseWheel;
private bindValueInputMouseWheel;
private unbindValueInputMouseWheel;
}