InputMask: v4 no classes are passed to target inpud component #5908
Labels
Type: Bug
Issue contains a bug related to a specific component. Something about the component is not working
Milestone
Describe the bug
class attribute of the component is not passed to target input like other primevue components
example:
<InputMask class="w-full my-class" unstyled type="text" :disabled="authStore.isLoading" mask="999-999-999" />
does not pass the classess "w-full" and "my-class" to generated input element
Reproducer
https://stackblitz.com/
PrimeVue version
4.0.0-rc.2
Vue version
3.x
Language
TypeScript
Build / Runtime
Vue CLI App
Browser(s)
No response
Steps to reproduce the behavior
<InputMask class="w-full my-class" unstyled type="text" :disabled="authStore.isLoading" mask="999-999-999" />
does not pass the classess "w-full" and "my-class" to generated input element
Expected behavior
generated input element should have the "w-full" and "my-class" classes
The text was updated successfully, but these errors were encountered: