primevue
Version:
PrimeVue is an open source UI library for Vue 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 PrimeBloc
48 lines (45 loc) • 1.06 kB
TypeScript
/**
*
* Panel is a container with the optional content toggle feature.
*
* [Live Demo](https://www.primevue.org/panel/)
*
* @module panelstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum PanelClasses {
/**
* Class name of the root element
*/
root = 'p-panel',
/**
* Class name of the header element
*/
header = 'p-panel-header',
/**
* Class name of the title element
*/
title = 'p-panel-title',
/**
* Class name of the header actions element
*/
headerActions = 'p-panel-header-actions',
/**
* Class name of the toggle button element
*/
pcToggleButton = 'p-panel-toggle-button',
/**
* Class name of the content container element
*/
contentContainer = 'p-panel-content-container',
/**
* Class name of the content element
*/
content = 'p-panel-content',
/**
* Class name of the footer element
*/
footer = 'p-panel-footer'
}
export interface PanelStyle extends BaseStyle {}