Skip to content

Commit 0d42746

Browse files
committed
chore: build, version, cl
1 parent 9e77fa0 commit 0d42746

6 files changed

+14
-7
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v2.5.5
2+
3+
> `2022-09-26`
4+
5+
### 🎉 Feature
6+
- Unnecessary ES6 feature removed.
7+
18
## v2.5.4
29

310
> `2022-09-26`

dist/multiselect.global.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/multiselect.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1585,7 +1585,7 @@ function useKeyboard (props, context, dep)
15851585
break
15861586

15871587
case 'ArrowLeft':
1588-
if ((searchable.value && tags.value.querySelector('input').selectionStart) || e.shiftKey || mode.value !== 'tags' || !iv.value?.length) {
1588+
if ((searchable.value && tags.value.querySelector('input').selectionStart) || e.shiftKey || mode.value !== 'tags' || !iv.value || !iv.value.length) {
15891589
return
15901590
}
15911591

@@ -1600,7 +1600,7 @@ function useKeyboard (props, context, dep)
16001600
break
16011601

16021602
case 'ArrowRight':
1603-
if (activeIndex === -1 || e.shiftKey || mode.value !== 'tags' || !iv.value?.length) {
1603+
if (activeIndex === -1 || e.shiftKey || mode.value !== 'tags' || !iv.value || !iv.value.length) {
16041604
return
16051605
}
16061606

dist/multiselect.vue2.global.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/multiselect.vue2.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1585,7 +1585,7 @@ function useKeyboard (props, context, dep)
15851585
break
15861586

15871587
case 'ArrowLeft':
1588-
if ((searchable.value && tags.value.querySelector('input').selectionStart) || e.shiftKey || mode.value !== 'tags' || !iv.value?.length) {
1588+
if ((searchable.value && tags.value.querySelector('input').selectionStart) || e.shiftKey || mode.value !== 'tags' || !iv.value || !iv.value.length) {
15891589
return
15901590
}
15911591

@@ -1600,7 +1600,7 @@ function useKeyboard (props, context, dep)
16001600
break
16011601

16021602
case 'ArrowRight':
1603-
if (activeIndex === -1 || e.shiftKey || mode.value !== 'tags' || !iv.value?.length) {
1603+
if (activeIndex === -1 || e.shiftKey || mode.value !== 'tags' || !iv.value || !iv.value.length) {
16041604
return
16051605
}
16061606

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vueform/multiselect",
3-
"version": "2.5.4",
3+
"version": "2.5.5",
44
"private": false,
55
"description": "Vue 3 multiselect component with single select, multiselect and tagging options.",
66
"license": "MIT",

0 commit comments

Comments
 (0)