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
36 lines (33 loc) • 849 B
TypeScript
/**
*
* ConfirmDialog uses a Dialog UI with confirmDialog method or <ConfirmDialog> tag.
*
* [Live Demo](https://www.primevue.org/confirmdialog)
*
* @module confirmdialogstyle
*
*/
import type { BaseStyle } from '@primevue/core/base/style';
export enum ConfirmDialogClasses {
/**
* Class name of the root element
*/
root = 'p-confirmdialog',
/**
* Class name of the icon element
*/
icon = 'p-confirmdialog-icon',
/**
* Class name of the message element
*/
message = 'p-confirmdialog-message',
/**
* Class name of the reject button element
*/
pcRejectButton = 'p-confirmdialog-reject-button',
/**
* Class name of the accept button element
*/
pcAcceptButton = 'p-confirmdialog-accept-button'
}
export interface ConfirmDialogStyle extends BaseStyle {}