@ouestfrance/sipa-bms-ui 8.48.1 → 8.48.2
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.
package/package.json
CHANGED
|
@@ -220,6 +220,7 @@ const canClear = computed(() => {
|
|
|
220
220
|
const classes = computed(() => ({
|
|
221
221
|
'is-error': props.errors?.length,
|
|
222
222
|
'is-disabled': props.disabled,
|
|
223
|
+
'has-icon': !props.multiple && !!singleSelectedItem.value?.icon,
|
|
223
224
|
}));
|
|
224
225
|
|
|
225
226
|
watch(searching, (newSearch) => {
|
|
@@ -537,6 +538,10 @@ defineExpose({
|
|
|
537
538
|
align-items: center;
|
|
538
539
|
justify-content: space-between;
|
|
539
540
|
|
|
541
|
+
&.has-icon {
|
|
542
|
+
gap: 5px;
|
|
543
|
+
}
|
|
544
|
+
|
|
540
545
|
.field__input-icon {
|
|
541
546
|
display: flex;
|
|
542
547
|
&--start {
|