@volverjs/ui-vue 0.0.8-beta.4 → 0.0.8-beta.5
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/auto-imports.d.ts +1 -0
- package/dist/components/VvCombobox/VvCombobox.es.js +22 -22
- package/dist/components/VvCombobox/VvCombobox.umd.js +1 -1
- package/dist/components/index.es.js +22 -22
- package/dist/components/index.umd.js +1 -1
- package/dist/icons.es.js +3 -3
- package/dist/icons.umd.js +1 -1
- package/package.json +5 -2
- package/src/assets/icons/detailed.json +1 -1
- package/src/assets/icons/normal.json +1 -1
- package/src/assets/icons/simple.json +1 -1
- package/src/components/VvCombobox/VvCombobox.vue +24 -22
|
@@ -299,34 +299,36 @@
|
|
|
299
299
|
loadingLabel: propsDefaults.value.loadingLabel,
|
|
300
300
|
disabled: disabled.value,
|
|
301
301
|
readonly: readonly.value,
|
|
302
|
-
modifiers:
|
|
303
|
-
options:
|
|
304
|
-
labelKey:
|
|
305
|
-
valueKey:
|
|
306
|
-
icon:
|
|
307
|
-
iconPosition:
|
|
308
|
-
floating:
|
|
309
|
-
unselectable:
|
|
310
|
-
multiple:
|
|
311
|
-
label:
|
|
312
|
-
placeholder:
|
|
302
|
+
modifiers: propsDefaults.value.modifiers,
|
|
303
|
+
options: propsDefaults.value.options,
|
|
304
|
+
labelKey: propsDefaults.value.labelKey,
|
|
305
|
+
valueKey: propsDefaults.value.valueKey,
|
|
306
|
+
icon: propsDefaults.value.icon,
|
|
307
|
+
iconPosition: propsDefaults.value.iconPosition,
|
|
308
|
+
floating: propsDefaults.value.floating,
|
|
309
|
+
unselectable: propsDefaults.value.unselectable,
|
|
310
|
+
multiple: propsDefaults.value.multiple,
|
|
311
|
+
label: propsDefaults.value.label,
|
|
312
|
+
placeholder: propsDefaults.value.placeholder,
|
|
313
313
|
modelValue: props.modelValue,
|
|
314
314
|
}))
|
|
315
315
|
|
|
316
316
|
const dropdownProps = computed(() => ({
|
|
317
317
|
id: hasDropdownId.value,
|
|
318
318
|
reference: wrapperEl.value,
|
|
319
|
-
placement:
|
|
320
|
-
strategy:
|
|
321
|
-
transitionName:
|
|
322
|
-
offset:
|
|
323
|
-
shift:
|
|
324
|
-
flip:
|
|
325
|
-
autoPlacement:
|
|
326
|
-
arrow:
|
|
327
|
-
autofocusFirst: searchable.value
|
|
328
|
-
|
|
329
|
-
|
|
319
|
+
placement: propsDefaults.value.placement,
|
|
320
|
+
strategy: propsDefaults.value.strategy,
|
|
321
|
+
transitionName: propsDefaults.value.transitionName,
|
|
322
|
+
offset: propsDefaults.value.offset,
|
|
323
|
+
shift: propsDefaults.value.shift,
|
|
324
|
+
flip: propsDefaults.value.flip,
|
|
325
|
+
autoPlacement: propsDefaults.value.autoPlacement,
|
|
326
|
+
arrow: propsDefaults.value.arrow,
|
|
327
|
+
autofocusFirst: searchable.value
|
|
328
|
+
? false
|
|
329
|
+
: propsDefaults.value.autofocusFirst,
|
|
330
|
+
triggerWidth: propsDefaults.value.triggerWidth,
|
|
331
|
+
modifiers: propsDefaults.value.dropdownModifiers,
|
|
330
332
|
}))
|
|
331
333
|
|
|
332
334
|
// slots
|