-
Notifications
You must be signed in to change notification settings - Fork 13
Description
When using "fluid", a PrimeVue component should fill the container's width and height. In my case, I'm using PrimeVue unstyled.
This, however, doesn't happen in InputText, because its "div" wrapper, unlike other components like InputNumber, DatePicker, Select or TextArea, is not getting the classes defined in the theme when props.fluid === true.
I'll try to elaborate. I've set my p-formkit class to be "h-full min-h-[46px] bg-orange-400", and I've set "fluid" to "true" in all my PrimeVue components.
In that scenario, this is how an InputText looks:

You can see that there's room to fill below the input (you can see the div.p-formkit orange background). That's because the wrapper doesn't contain the "size-full" that
For comparison, here are some InputNumber components, which work fine:

In this case, you can see that the wrapper has the "size-full" applied.
Hope it helps. Thanks in advance :)