Skip to content

Commit

Permalink
2.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
adamberecz committed Aug 9, 2021
1 parent 10ab589 commit 35b8e9e
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v2.1.1

> `2021-08-09`
### 🎉 Feature
- Added `closeOnSelect` prop.

### 🐞 Bug Fixes
- Clear search on single option select [#99](https://github.com/vueform/multiselect/issues/99) and [#106](https://github.com/vueform/multiselect/issues/106).
- No blur when tags are being removed.

## v2.1.0

> `2021-07-26`
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ Join our [Discord channel](https://discord.gg/WhX2nG6GTQ) or [open an issue](htt
| **canClear** | `boolean` | `true` | Whether option(s) can be cleared. |
| **clearOnSearch** | `boolean` | `false` | Whether the option list should be cleared when a new character is typed before loading new options list, when using async options. |
| **clearOnSelect** | `boolean` | `true` | Whether the option list should be cleared upon selecting an option when using async options. |
| **closeOnSelect** | `boolean` | `true` | Whether the option list should be hidden upon selecting an option. |
| **delay** | `number` | `-1` | The delay in milliseconds that should occur between the last typed character and refreshing an async option list. If `-1` the option list will not refresh when the search query changes. If `0` it will refresh without delay. |
| **filterResults** | `boolean` | `true` | Whether option list should be filtered by search query. This may be set to `false` if you are handling filtering manually when returning async options. |
| **minChars** | `number` | `0` | The minimum number of characters that should be typed to refresh async option list. If `0` it will refresh even when the search field becomes empty. |
Expand Down
2 changes: 1 addition & 1 deletion dist/multiselect.global.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/multiselect.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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.1.0",
"version": "2.1.1",
"private": false,
"description": "Vue 3 multiselect component with single select, multiselect and tagging options.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion themes/default.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions themes/default.scss
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@
display: flex;
flex-direction: column;
border-radius: 0 0 var(--ms-dropdown-radius, 4px) var(--ms-dropdown-radius, 4px);
outline: none;

&.is-top {
transform: translateY(-100%);
Expand Down

0 comments on commit 35b8e9e

Please sign in to comment.