Skip to content

Commit

Permalink
Fixed #5956 - InputMask: FloatLabel defects
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Jun 26, 2024
1 parent 5be4eb2 commit 00d37a2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/primevue/src/inputmask/style/InputMaskStyle.js
Original file line number Diff line number Diff line change
@@ -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({
Expand Down

0 comments on commit 00d37a2

Please sign in to comment.