@saasmakers/ui 1.4.32 → 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.
|
@@ -318,9 +318,15 @@ function selectOption(event: MouseEvent, value: string) {
|
|
|
318
318
|
|
|
319
319
|
<div
|
|
320
320
|
v-if="showNoResults"
|
|
321
|
-
class="
|
|
321
|
+
class="flex justify-center border-b border-gray-200 p-3 dark:border-gray-800"
|
|
322
322
|
>
|
|
323
|
-
|
|
323
|
+
<BaseIcon
|
|
324
|
+
class="pointer-events-none"
|
|
325
|
+
color="gray"
|
|
326
|
+
:icon="getIcon('infoCircle')"
|
|
327
|
+
:size="size"
|
|
328
|
+
:text="t('noResults')"
|
|
329
|
+
/>
|
|
324
330
|
</div>
|
|
325
331
|
|
|
326
332
|
<div
|