mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 09:52:35 +00:00
Fixed #5956 - InputMask: FloatLabel defects
This commit is contained in:
parent
5be4eb2d91
commit
00d37a2c6f
1 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,12 @@
|
||||||
import BaseStyle from '@primevue/core/base/style';
|
import BaseStyle from '@primevue/core/base/style';
|
||||||
|
|
||||||
const classes = {
|
const classes = {
|
||||||
root: 'p-inputmask'
|
root: ({ instance }) => [
|
||||||
|
'p-inputmask p-inputwrapper',
|
||||||
|
{
|
||||||
|
'p-inputwrapper-filled': instance.filled
|
||||||
|
}
|
||||||
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
export default BaseStyle.extend({
|
export default BaseStyle.extend({
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue