summaryrefslogtreecommitdiffstats
path: root/sdc-workflow-designer-ui/src/app/paletx/plx-datepicker/timepicker-config.ts
blob: 8b7528661bcb2dc561a1095619e41b47f2b7d251 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Injectable } from '@angular/core';

/**
 * Configuration service for the NgbTimepicker component.
 * You can inject this service, typically in your root component, and customize the values of its properties in
 * order to provide default values for all the timepickers used in the application.
 */
@Injectable()
export class NgbTimepickerConfig {
  public meridian = false;
  public spinners = true;
  public seconds = false;
  public hourStep = 1;
  public minuteStep = 1;
  public secondStep = 1;
  public disabled = false;
  public readonlyInputs = false;
  public size: 'small' | 'medium' | 'large' = 'medium';
}