GlSearchBoxByType: support setting custom class in input
In this MR gitlab-org/gitlab!52567 (merged), I needed to set the gl-search-box-by-type-input to 100%.
I think it will be helpful if we can apply our utility class via a prop.
<gl-search-box-by-type input-class="gl-w-full" />
Maybe there is another problem here GlDropdown component.
<gl-form-input
ref="input"
:value="value"
:disabled="disabled"
- class="gl-search-box-by-type-input"
+ class="gl-search-box-by-type-input gl-w-full"
v-bind="inputAttributes"
v-on="inputListeners"
/>
Edited by Samantha Ming