File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1313 class =" block w-full pl-3 pr-10 py-2.5 border border-lightDropownButtonsBorder rounded-md leading-5 bg-lightDropdownButtonsBackground
1414 placeholder-lightDropdownButtonsPlaceholderText text-lightDropdownButtonsText sm:text-sm transition duration-150 ease-in-out dark:bg-darkDropdownButtonsBackground dark:border-darkDropdownButtonsBorder dark:placeholder-darkDropdownButtonsPlaceholderText
1515 dark:text-darkDropdownButtonsText focus:ring-lightPrimary focus:border-lightPrimary dark:focus:ring-darkPrimary dark:focus:border-darkPrimary"
16- :class =" {'cursor-pointer': searchDisabled}"
16+ :class =" [ {'cursor-pointer': searchDisabled}, classesForInput] "
1717 autocomplete =" off" data-custom =" no-autofill"
1818 :placeholder ="
1919 selectedItems.length && !multiple ? '' : (showDropdown ? $t('Search') : placeholder || $t('Select...'))
@@ -153,6 +153,10 @@ const props = defineProps({
153153 type: Number ,
154154 default: 300 ,
155155 },
156+ classesForInput: {
157+ type: String ,
158+ default: ' ' ,
159+ },
156160});
157161
158162const emit = defineEmits ([' update:modelValue' , ' scroll-near-end' , ' search' ]);
You can’t perform that action at this time.
0 commit comments