@imaginario27/air-ui-ds 1.2.7 → 1.2.8
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.
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
'rounded',
|
|
27
27
|
disabled ? 'cursor-not-allowed' : 'cursor-pointer',
|
|
28
28
|
'border border-border-default',
|
|
29
|
-
selectBoxClass,
|
|
30
29
|
'text-sm',
|
|
31
30
|
disabled ? 'text-text-neutral-disabled' : 'text-text-default',
|
|
32
31
|
sizeClass,
|
|
32
|
+
selectBoxClass,
|
|
33
33
|
]"
|
|
34
34
|
@click="!disabled"
|
|
35
35
|
>
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
:allowDeselect
|
|
48
48
|
:isLoading="isLoadingOptions"
|
|
49
49
|
:loadingText
|
|
50
|
+
:selectBoxClass
|
|
50
51
|
@update:modelValue="handleValueUpdate"
|
|
51
52
|
/>
|
|
52
53
|
|
|
@@ -158,6 +159,7 @@ const props = defineProps({
|
|
|
158
159
|
type: String as PropType<string>,
|
|
159
160
|
default: 'Options are being loaded',
|
|
160
161
|
},
|
|
162
|
+
selectBoxClass: String as PropType<string>,
|
|
161
163
|
})
|
|
162
164
|
|
|
163
165
|
// Emits
|