{"version":3,"file":"popover.config.d.ts","sources":["popover.config.d.ts"],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA","sourcesContent":["/**\n * Configuration service for the Popover directive.\n * You can inject this service, typically in your root component, and customize\n * the values of its properties in order to provide default values for all the\n * popovers used in the application.\n */\nexport declare class PopoverConfig {\n    /** sets disable adaptive position */\n    adaptivePosition: boolean;\n    /**\n     * Placement of a popover. Accepts: \"top\", \"bottom\", \"left\", \"right\", \"auto\"\n     */\n    placement: string;\n    /**\n     * Specifies events that should trigger. Supports a space separated list of\n     * event names.\n     */\n    triggers: string;\n    outsideClick: boolean;\n    /**\n     * A selector specifying the element the popover should be appended to.\n     */\n    container?: string;\n    /** delay before showing the tooltip */\n    delay: number;\n}\n"]}