UNPKG

primeng

Version:

PrimeNG is an open source UI library for Angular featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeB

36 lines (35 loc) 835 B
import { BaseStyle } from 'primeng/base'; import * as i0 from "@angular/core"; export declare class PopoverStyle extends BaseStyle { name: string; theme: ({ dt }: { dt: any; }) => string; classes: { root: string; content: string; }; static ɵfac: i0.ɵɵFactoryDeclaration<PopoverStyle, never>; static ɵprov: i0.ɵɵInjectableDeclaration<PopoverStyle>; } /** * * Popover is a container component positioned as connected to its target. * * [Live Demo](https://www.primeng.org/popover) * * @module popoverstyle * */ export declare enum PopoverClasses { /** * Class name of the root element */ root = "p-popover", /** * Class name of the content element */ content = "p-popover-content" } export interface PopoverStyle extends BaseStyle { }