@saasmakers/ui 1.4.31 → 1.4.33
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.
|
@@ -312,16 +312,21 @@ function selectOption(event: MouseEvent, value: string) {
|
|
|
312
312
|
class="px-3"
|
|
313
313
|
:placeholder="searchPlaceholder || t('search')"
|
|
314
314
|
:size="size"
|
|
315
|
-
type="search"
|
|
316
315
|
@keyup="onSearchKeyup"
|
|
317
316
|
/>
|
|
318
317
|
</div>
|
|
319
318
|
|
|
320
319
|
<div
|
|
321
320
|
v-if="showNoResults"
|
|
322
|
-
class="
|
|
321
|
+
class="flex justify-center border-b border-gray-200 p-3 dark:border-gray-800"
|
|
323
322
|
>
|
|
324
|
-
|
|
323
|
+
<BaseIcon
|
|
324
|
+
class="pointer-events-none"
|
|
325
|
+
color="gray"
|
|
326
|
+
:icon="getIcon('infoCircle')"
|
|
327
|
+
:size="size"
|
|
328
|
+
:text="t('noResults')"
|
|
329
|
+
/>
|
|
325
330
|
</div>
|
|
326
331
|
|
|
327
332
|
<div
|