18 lines
362 B
TypeScript
18 lines
362 B
TypeScript
/**
|
|
*
|
|
* Popover is a container component positioned as connected to its target.
|
|
*
|
|
* [Live Demo](https://primevue.org/popover)
|
|
*
|
|
* @module popoverstyle
|
|
*
|
|
*/
|
|
import { BaseStyle } from '../../base/style/BaseStyle';
|
|
|
|
export enum PopoverClasses {
|
|
root = 'p-popover',
|
|
content = 'p-popover-content'
|
|
}
|
|
|
|
export interface PopoverStyle extends BaseStyle {}
|