UNPKG

699 BTypeScriptView Raw
1/**
2 * Configuration service for the Popover directive.
3 * You can inject this service, typically in your root component, and customize
4 * the values of its properties in order to provide default values for all the
5 * popovers used in the application.
6 */
7export declare class PopoverConfig {
8 /**
9 * Placement of a popover. Accepts: "top", "bottom", "left", "right"
10 */
11 placement: string;
12 /**
13 * Specifies events that should trigger. Supports a space separated list of
14 * event names.
15 */
16 triggers: string;
17 /**
18 * A selector specifying the element the popover should be appended to.
19 * Currently only supports "body".
20 */
21 container: string;
22}