@dataloop-ai/components 0.20.25 → 0.20.26
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
|
@@ -82,7 +82,9 @@
|
|
|
82
82
|
name="selected"
|
|
83
83
|
>
|
|
84
84
|
<span class="root-container--placeholder">
|
|
85
|
-
<dl-ellipsis
|
|
85
|
+
<dl-ellipsis>
|
|
86
|
+
{{ filterSelectLabel }}
|
|
87
|
+
</dl-ellipsis>
|
|
86
88
|
</span>
|
|
87
89
|
</slot>
|
|
88
90
|
</div>
|
|
@@ -98,7 +100,7 @@
|
|
|
98
100
|
{{ computedAllItemsLabel }}
|
|
99
101
|
</template>
|
|
100
102
|
<template v-else>
|
|
101
|
-
<dl-ellipsis
|
|
103
|
+
<dl-ellipsis> filterSelectLabel </dl-ellipsis>
|
|
102
104
|
</template>
|
|
103
105
|
</span>
|
|
104
106
|
<span
|
|
@@ -108,7 +110,9 @@
|
|
|
108
110
|
"
|
|
109
111
|
class="selected-label"
|
|
110
112
|
>
|
|
111
|
-
|
|
113
|
+
<dl-ellipsis>
|
|
114
|
+
{{ getLabel(selectedOption) }}
|
|
115
|
+
</dl-ellipsis>
|
|
112
116
|
</span>
|
|
113
117
|
</template>
|
|
114
118
|
<div
|
|
@@ -1088,6 +1092,8 @@ export default defineComponent({
|
|
|
1088
1092
|
|
|
1089
1093
|
.selected-label {
|
|
1090
1094
|
color: var(--dl-select-placeholder-color, var(--placeholder-color));
|
|
1095
|
+
width: fit-content;
|
|
1096
|
+
max-width: 100%;
|
|
1091
1097
|
}
|
|
1092
1098
|
|
|
1093
1099
|
.dl-select__title {
|
|
@@ -1096,6 +1102,7 @@ export default defineComponent({
|
|
|
1096
1102
|
text-align: left;
|
|
1097
1103
|
margin-right: 5px;
|
|
1098
1104
|
white-space: nowrap;
|
|
1105
|
+
width: 100%;
|
|
1099
1106
|
}
|
|
1100
1107
|
|
|
1101
1108
|
.required-asterisk {
|