@volverjs/ui-vue 0.0.10-beta.26 → 0.0.10-beta.27
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/components/VvAccordionGroup/VvAccordionGroup.es.js +2 -1
- package/dist/components/VvAccordionGroup/VvAccordionGroup.umd.js +1 -1
- package/dist/components/VvInputText/VvInputText.es.js +1 -1
- package/dist/components/VvInputText/VvInputText.umd.js +1 -1
- package/dist/components/index.es.js +3 -2
- 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 +8 -8
- 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/VvAccordionGroup/VvAccordionGroup.vue +1 -0
- package/src/components/VvInputText/VvInputText.vue +10 -8
|
@@ -336,14 +336,16 @@
|
|
|
336
336
|
if (!suggestions.value) {
|
|
337
337
|
return []
|
|
338
338
|
}
|
|
339
|
-
return [...suggestions.value]
|
|
340
|
-
(
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
339
|
+
return [...suggestions.value]
|
|
340
|
+
.filter(
|
|
341
|
+
(suggestion) =>
|
|
342
|
+
isEmpty(localModelValue.value) ||
|
|
343
|
+
(`${suggestion}`
|
|
344
|
+
.toLowerCase()
|
|
345
|
+
.includes(`${localModelValue.value}`.toLowerCase()) &&
|
|
346
|
+
suggestion !== localModelValue.value),
|
|
347
|
+
)
|
|
348
|
+
.reverse()
|
|
347
349
|
})
|
|
348
350
|
const hasSuggestions = computed(
|
|
349
351
|
() =>
|