8b7528661bcb2dc561a1095619e41b47f2b7d251
[sdc/sdc-workflow-designer.git] /
1 import { Injectable } from '@angular/core';
2
3 /**
4  * Configuration service for the NgbTimepicker component.
5  * You can inject this service, typically in your root component, and customize the values of its properties in
6  * order to provide default values for all the timepickers used in the application.
7  */
8 @Injectable()
9 export class NgbTimepickerConfig {
10   public meridian = false;
11   public spinners = true;
12   public seconds = false;
13   public hourStep = 1;
14   public minuteStep = 1;
15   public secondStep = 1;
16   public disabled = false;
17   public readonlyInputs = false;
18   public size: 'small' | 'medium' | 'large' = 'medium';
19 }