Skip to content

Commit 35b8e9e

Browse files
committed
2.1.1 release
1 parent 10ab589 commit 35b8e9e

9 files changed

+19
-6
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## v2.1.1
2+
3+
> `2021-08-09`
4+
5+
### 🎉 Feature
6+
- Added `closeOnSelect` prop.
7+
8+
### 🐞 Bug Fixes
9+
- Clear search on single option select [#99](https://github.com/vueform/multiselect/issues/99) and [#106](https://github.com/vueform/multiselect/issues/106).
10+
- No blur when tags are being removed.
11+
112
## v2.1.0
213

314
> `2021-07-26`

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ Join our [Discord channel](https://discord.gg/WhX2nG6GTQ) or [open an issue](htt
199199
| **canClear** | `boolean` | `true` | Whether option(s) can be cleared. |
200200
| **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. |
201201
| **clearOnSelect** | `boolean` | `true` | Whether the option list should be cleared upon selecting an option when using async options. |
202+
| **closeOnSelect** | `boolean` | `true` | Whether the option list should be hidden upon selecting an option. |
202203
| **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. |
203204
| **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. |
204205
| **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. |

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

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

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

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

package.json

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

themes/default.css

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

themes/default.scss

+1
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@
255255
display: flex;
256256
flex-direction: column;
257257
border-radius: 0 0 var(--ms-dropdown-radius, 4px) var(--ms-dropdown-radius, 4px);
258+
outline: none;
258259

259260
&.is-top {
260261
transform: translateY(-100%);

0 commit comments

Comments
 (0)