design-system-next 2.26.8 → 2.26.9
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/dist/design-system-next.es.js +13 -3
- package/dist/design-system-next.es.js.gz +0 -0
- package/dist/design-system-next.umd.js +2 -2
- package/dist/design-system-next.umd.js.gz +0 -0
- package/package.json +1 -1
- package/src/components/select/select.ts +8 -0
- package/src/components/select/select.vue +2 -0
|
Binary file
|
package/package.json
CHANGED
|
@@ -177,6 +177,14 @@ export const selectPropTypes = {
|
|
|
177
177
|
type: String,
|
|
178
178
|
default: '',
|
|
179
179
|
},
|
|
180
|
+
avatarVariant: {
|
|
181
|
+
type: String,
|
|
182
|
+
default: '',
|
|
183
|
+
},
|
|
184
|
+
avatarSource: {
|
|
185
|
+
type: String,
|
|
186
|
+
default: '',
|
|
187
|
+
},
|
|
180
188
|
};
|
|
181
189
|
|
|
182
190
|
export const selectEmitTypes = {
|
|
@@ -102,6 +102,8 @@
|
|
|
102
102
|
:infinite-scroll-loader="props.infiniteScrollLoader"
|
|
103
103
|
:item-icon="props.itemIcon"
|
|
104
104
|
:lozenge="props.lozenge"
|
|
105
|
+
:avatar-variant="props.avatarVariant"
|
|
106
|
+
:avatar-source="props.avatarSource"
|
|
105
107
|
@update:model-value="handleSelectedItem"
|
|
106
108
|
/>
|
|
107
109
|
</div>
|