UNPKG

1.8 kBTypeScriptView Raw
1/** Provides default configuration values for timepicker */
2import * as ɵngcc0 from '@angular/core';
3export declare class TimepickerConfig {
4 /** hours change step */
5 hourStep: number;
6 /** minutes change step */
7 minuteStep: number;
8 /** seconds changes step */
9 secondsStep: number;
10 /** if true works in 12H mode and displays AM/PM. If false works in 24H mode and hides AM/PM */
11 showMeridian: boolean;
12 /** meridian labels based on locale */
13 meridians: string[];
14 /** if true hours and minutes fields will be readonly */
15 readonlyInput: boolean;
16 /** if true hours and minutes fields will be disabled */
17 disabled: boolean;
18 /** if true scroll inside hours and minutes inputs will change time */
19 mousewheel: boolean;
20 /** if true the values of hours and minutes can be changed using the up/down arrow keys on the keyboard */
21 arrowkeys: boolean;
22 /** if true spinner arrows above and below the inputs will be shown */
23 showSpinners: boolean;
24 /** show seconds in timepicker */
25 showSeconds: boolean;
26 /** show minutes in timepicker */
27 showMinutes: boolean;
28 /** minimum time user can select */
29 min?: Date;
30 /** maximum time user can select */
31 max?: Date;
32 /** placeholder for hours field in timepicker */
33 hoursPlaceholder: string;
34 /** placeholder for minutes field in timepicker */
35 minutesPlaceholder: string;
36 /** placeholder for seconds field in timepicker */
37 secondsPlaceholder: string;
38 /** hours aria label */
39 ariaLabelHours: string;
40 /** minutes aria label */
41 ariaLabelMinutes: string;
42 /** seconds aria label */
43 ariaLabelSeconds: string;
44 static ɵfac: ɵngcc0.ɵɵFactoryDef<TimepickerConfig, never>;
45}
46
47//# sourceMappingURL=timepicker.config.d.ts.map
\No newline at end of file