claude-web/node_modules/primevue/popover/style/index.d.ts

24 lines
477 B
TypeScript
Raw Normal View History

2026-02-23 02:23:38 +00:00
/**
*
* Popover is a container component positioned as connected to its target.
*
* [Live Demo](https://primevue.org/popover)
*
* @module popoverstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export 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 {}