Fixed #5956 - InputMask: FloatLabel defects
parent
5be4eb2d91
commit
00d37a2c6f
|
@ -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({
|
||||
|
|
Loading…
Reference in New Issue