Skip to content

Commit

Permalink
chore: build, version, cl
Browse files Browse the repository at this point in the history
  • Loading branch information
adamberecz committed Sep 26, 2022
1 parent 9e77fa0 commit 0d42746
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v2.5.5

> `2022-09-26`
### 🎉 Feature
- Unnecessary ES6 feature removed.

## v2.5.4

> `2022-09-26`
Expand Down
2 changes: 1 addition & 1 deletion dist/multiselect.global.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/multiselect.js
Original file line number Diff line number Diff line change
Expand Up @@ -1585,7 +1585,7 @@ function useKeyboard (props, context, dep)
break

case 'ArrowLeft':
if ((searchable.value && tags.value.querySelector('input').selectionStart) || e.shiftKey || mode.value !== 'tags' || !iv.value?.length) {
if ((searchable.value && tags.value.querySelector('input').selectionStart) || e.shiftKey || mode.value !== 'tags' || !iv.value || !iv.value.length) {
return
}

Expand All @@ -1600,7 +1600,7 @@ function useKeyboard (props, context, dep)
break

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

Expand Down
2 changes: 1 addition & 1 deletion dist/multiselect.vue2.global.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/multiselect.vue2.js
Original file line number Diff line number Diff line change
Expand Up @@ -1585,7 +1585,7 @@ function useKeyboard (props, context, dep)
break

case 'ArrowLeft':
if ((searchable.value && tags.value.querySelector('input').selectionStart) || e.shiftKey || mode.value !== 'tags' || !iv.value?.length) {
if ((searchable.value && tags.value.querySelector('input').selectionStart) || e.shiftKey || mode.value !== 'tags' || !iv.value || !iv.value.length) {
return
}

Expand All @@ -1600,7 +1600,7 @@ function useKeyboard (props, context, dep)
break

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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueform/multiselect",
"version": "2.5.4",
"version": "2.5.5",
"private": false,
"description": "Vue 3 multiselect component with single select, multiselect and tagging options.",
"license": "MIT",
Expand Down

0 comments on commit 0d42746

Please sign in to comment.