5ac773c56233f5aaab1c9651fdef00e1f564d53b
[sdc/sdc-workflow-designer.git] /
1 import { Injectable } from '@angular/core';
2
3 /**
4  * Configuration service for the OesDaterangePopover directive.
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 popovers used in the application.
7  */
8 @Injectable()
9 export class OesDaterangePopoverConfig {
10     public placement: 'top' | 'bottom' | 'left' | 'right' = 'top';
11     public triggers = 'click';
12     public container: string;
13 }