popover.config.d.ts 768 B

123456789101112131415161718192021222324
  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. */
  7. export declare class PopoverConfig {
  8. /** sets disable adaptive position */
  9. adaptivePosition: boolean;
  10. /**
  11. * Placement of a popover. Accepts: "top", "bottom", "left", "right", "auto"
  12. */
  13. placement: string;
  14. /**
  15. * Specifies events that should trigger. Supports a space separated list of
  16. * event names.
  17. */
  18. triggers: string;
  19. outsideClick: boolean;
  20. /**
  21. * A selector specifying the element the popover should be appended to.
  22. */
  23. container: string;
  24. }