@vueform/multiselect
Advanced tools
Comparing version 2.2.0 to 2.2.1
@@ -0,1 +1,8 @@ | ||
## v2.2.1 | ||
> `2021-11-23` | ||
### 🐞 Bug Fixes | ||
- Added missing CSS vars. | ||
## v2.2.0 | ||
@@ -14,3 +21,2 @@ | ||
### 🐞 Bug Fixes | ||
@@ -17,0 +23,0 @@ - When `closeOnSelect` is `true` in `searchable` `tags` and `multiple` mode the input now blurs upon selecting an option. |
{ | ||
"name": "@vueform/multiselect", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"private": false, | ||
@@ -39,7 +39,7 @@ "description": "Vue 3 multiselect component with single select, multiselect and tagging options.", | ||
"babel-core": "^7.0.0-bridge.0", | ||
"babel-jest": "^26.6.1", | ||
"babel-jest": "^27.3.1", | ||
"babel-plugin-rename-umd-globals": "^1.0.0", | ||
"flush-promises": "^1.0.2", | ||
"fraction.js": "^4.1.1", | ||
"jest": "^26.6.1", | ||
"jest": "^27.3.1", | ||
"jest-environment-jsdom-sixteen": "^1.0.3", | ||
@@ -52,12 +52,12 @@ "node-sass": "^5.0.0", | ||
"typescript": "^4.1.2", | ||
"vue-next": "npm:vue@^3.0.4", | ||
"vue-next-jest": "npm:vue-jest@^5.0.0-alpha.4", | ||
"vue-next": "npm:vue@^3.2.20", | ||
"vue-next-jest": "npm:@vue/vue3-jest@^27.0.0-alpha.1", | ||
"vue-next-rollup-plugin-vue": "npm:rollup-plugin-vue@^6.0.0", | ||
"vue-next-test-utils": "npm:@vue/test-utils@^2.0.0-beta.6", | ||
"vue-prev": "npm:vue@^2.6.12", | ||
"vue-prev-composition-api": "npm:@vue/composition-api@^1.0.0-beta.17", | ||
"vue-prev-jest": "npm:vue-jest@^3.0.7", | ||
"vue-next-test-utils": "npm:@vue/test-utils@2.0.0-rc.16", | ||
"vue-prev": "npm:vue@^2.6.14", | ||
"vue-prev-composition-api": "npm:@vue/composition-api@^1.2.4", | ||
"vue-prev-jest": "npm:@vue/vue2-jest@^27.0.0-alpha.2", | ||
"vue-prev-rollup-plugin-vue": "npm:rollup-plugin-vue@^5.1.9", | ||
"vue-prev-test-utils": "npm:@vue/test-utils@^1.1.0", | ||
"vue-template-compiler": "^2.6.12" | ||
"vue-prev-test-utils": "npm:@vue/test-utils@1.2.2", | ||
"vue-template-compiler": "^2.6.14" | ||
}, | ||
@@ -64,0 +64,0 @@ "browserslist": [ |
@@ -191,3 +191,4 @@ <div align="center"> | ||
| **disabled** | `boolean` | `false` | Whether the input should be disabled for the user (API can still be used programmatically). | | ||
| **inputType** | `string` | `text` | The `type` attribute of search input. | | ||
| **inputType** | `string` | `text` | The `type` attribute of the search input. | | ||
| **autocomplete** | `string` | `undefined` | The `autocomplete` attribute of the search input. | | ||
| **max** | `number` | `-1` | The maximum number of options that **can be selected** when using `multiple` or `tags` mode. If `-1` the number of options won't be limited. | | ||
@@ -231,5 +232,5 @@ | **limit** | `number` | `-1` | The maximum number of options that **should be displayed**. If `-1` the number of options won't be limited. | | ||
| **close** | | Closes the options list and blurs the multiselect. | | ||
| **select** | `value`, `option` | Selects an option based on its value. | | ||
| **deselect** | `value`, `option` | Deselects an option based on its value. | | ||
| **remove** | `value`, `option` | Alias for `deselect`. | | ||
| **select** | `option` | Selects an option based on its value. | | ||
| **deselect** | `option` | Deselects an option based on its value. | | ||
| **remove** | `option` | Alias for `deselect`. | | ||
| **clear** | | Deselects all selected options. | | ||
@@ -342,2 +343,4 @@ | **clearSearch** | | Clears current search query. | | ||
--ms-group-label-line-height: 1.375; | ||
--ms-group-label-bg: #E5E7EB; | ||
--ms-group-label-color: #374151; | ||
--ms-group-label-bg-pointed: #D1D5DB; | ||
@@ -357,10 +360,10 @@ --ms-group-label-color-pointed: #374151; | ||
--ms-option-bg-pointed: #FFFFFF; | ||
--ms-option-color-pointed: #1F2937; | ||
--ms-option-bg-selected: #10B981; | ||
--ms-option-color-selected: #FFFFFF; | ||
--ms-option-bg-disabled: #FFFFFF; | ||
--ms-option-color-disabled: #D1D5DB; | ||
--ms-option-bg-selected-pointed: #26C08E; | ||
--ms-option-color-selected-pointed: #FFFFFF; | ||
--ms-option-bg-selected-disabled: #FFFFFF; | ||
--ms-option-color-pointed: #1F2937; | ||
--ms-option-color-selected: #FFFFFF; | ||
--ms-option-color-disabled: #D1D5DB; | ||
--ms-option-color-selected-pointed: #FFFFFF; | ||
--ms-option-color-selected-disabled: #D1FAE5; | ||
@@ -443,4 +446,2 @@ --ms-option-py: 0.5rem; | ||
``` vue | ||
<!-- eg. App.vue ---> | ||
<template> | ||
@@ -453,3 +454,3 @@ <div id="app"> | ||
<script> | ||
<!-- ... ---> | ||
// ... | ||
</script> | ||
@@ -456,0 +457,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
256620
785