@volverjs/ui-vue 0.0.9-beta.11 → 0.0.9-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -405,7 +405,7 @@
405
405
  <!-- @slot Slot before dropdown items -->
406
406
  <slot name="dropdown::before" />
407
407
  <input
408
- v-if="propsDefaults.searchable"
408
+ v-if="propsDefaults.searchable && !disabled"
409
409
  :id="hasSearchId"
410
410
  ref="inputSearchEl"
411
411
  v-model="searchText"
@@ -499,7 +499,7 @@
499
499
  </div>
500
500
  </template>
501
501
  <template #items>
502
- <template v-if="filteredOptions?.length">
502
+ <template v-if="!disabled && filteredOptions?.length">
503
503
  <template
504
504
  v-for="(option, index) in filteredOptions"
505
505
  :key="index"
@@ -581,7 +581,7 @@
581
581
  {{ propsDefaults.noOptionsLabel }}
582
582
  </slot>
583
583
  </VvDropdownOption>
584
- <VvDropdownOption v-else modifiers="inert">
584
+ <VvDropdownOption v-else-if="!disabled" modifiers="inert">
585
585
  <!-- @slot Slot for no results available -->
586
586
  <slot name="no-results">
587
587
  {{ propsDefaults.noResultsLabel }}