@ux-aspects/ux-aspects
Version:
Open source user interface framework for building modern, responsive, mobile big data applications
17 lines (16 loc) • 778 B
TypeScript
import { Subject } from 'rxjs';
import { TooltipComponent } from '../tooltip/index';
import * as i0 from "@angular/core";
export declare class PopoverComponent extends TooltipComponent {
/** Define a unique id for each popover */
id: string;
/** If specified allows the popover to show a title */
title: string;
/** This will emit an event any time the user clicks outside the popover */
clickOutside$: Subject<MouseEvent>;
constructor();
/** This will update the title of the popover and trigger change detection */
setTitle(title: string): void;
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "ux-popover", never, {}, {}, never, never, false, never>;
}