Refactor #5437 - Removed shared classes

This commit is contained in:
tugcekucukoglu 2024-03-22 11:53:44 +03:00
parent 6e2280009f
commit 4d640c4442
16 changed files with 50 additions and 37 deletions

View file

@ -11,8 +11,8 @@ const classes = {
icon: 'p-confirm-popup-icon',
message: 'p-confirm-popup-message',
footer: 'p-confirm-popup-footer',
rejectButton: ({ instance }) => ['p-confirm-popup-reject', instance.confirmation && !instance.confirmation.rejectClass ? 'p-button-sm p-button-text' : null],
acceptButton: ({ instance }) => ['p-confirm-popup-accept', instance.confirmation && !instance.confirmation.acceptClass ? 'p-button-sm' : null]
rejectButton: 'p-confirm-popup-reject',
acceptButton: 'p-confirm-popup-accept'
};
export default BaseStyle.extend({