baked-recipe-admin
Version:
Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.
24 lines (21 loc) • 477 B
TypeScript
/**
*
* 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 {}