primevue-mirror/components/lib/confirmpopup/style/ConfirmPopupStyle.d.ts

44 lines
1017 B
TypeScript
Raw Normal View History

/**
*
* ConfirmPopup displays a confirmation overlay displayed relatively to its target.
*
* [Live Demo](https://www.primevue.org/confirmpopup)
*
* @module confirmpopupstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum ConfirmPopupClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-confirmpopup',
2024-05-22 13:52:02 +00:00
/**
* Class name of the content element
*/
content = 'p-confirmpopup-content',
2024-05-22 13:52:02 +00:00
/**
* Class name of the icon element
*/
icon = 'p-confirmpopup-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the message element
*/
message = 'p-confirmpopup-message',
2024-05-22 13:52:02 +00:00
/**
* Class name of the footer element
*/
footer = 'p-confirmpopup-footer',
2024-05-22 13:52:02 +00:00
/**
* Class name of the reject button element
*/
pcRejectButton = 'p-confirmpopup-reject-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the accept button element
*/
pcAcceptButton = 'p-confirmpopup-accept-button'
}
2023-10-02 13:15:41 +00:00
export interface ConfirmPopupStyle extends BaseStyle {}