Fixed #5956 - InputMask: FloatLabel defects

pull/5969/head
tugcekucukoglu 2024-06-26 12:46:45 +03:00
parent 5be4eb2d91
commit 00d37a2c6f
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,12 @@
import BaseStyle from '@primevue/core/base/style';
const classes = {
root: 'p-inputmask'
root: ({ instance }) => [
'p-inputmask p-inputwrapper',
{
'p-inputwrapper-filled': instance.filled
}
]
};
export default BaseStyle.extend({