UNPKG

1.03 kBTypeScriptView Raw
1import * as i0 from "@angular/core";
2/**
3 * Configuration service for the Popover directive.
4 * You can inject this service, typically in your root component, and customize
5 * the values of its properties in order to provide default values for all the
6 * popovers used in the application.
7 */
8export declare class PopoverConfig {
9 /** sets disable adaptive position */
10 adaptivePosition: boolean;
11 /**
12 * Placement of a popover. Accepts: "top", "bottom", "left", "right", "auto"
13 */
14 placement: string;
15 /**
16 * Specifies events that should trigger. Supports a space separated list of
17 * event names.
18 */
19 triggers: string;
20 outsideClick: boolean;
21 /**
22 * A selector specifying the element the popover should be appended to.
23 */
24 container?: string;
25 /** delay before showing the tooltip */
26 delay: number;
27 boundariesElement?: string;
28 static ɵfac: i0.ɵɵFactoryDeclaration<PopoverConfig, never>;
29 static ɵprov: i0.ɵɵInjectableDeclaration<PopoverConfig>;
30}