@vaadin/multi-select-combo-box 24.3.19 → 24.3.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/multi-select-combo-box",
|
|
3
|
-
"version": "24.3.
|
|
3
|
+
"version": "24.3.20",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,17 +38,17 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/a11y-base": "~24.3.
|
|
42
|
-
"@vaadin/combo-box": "~24.3.
|
|
43
|
-
"@vaadin/component-base": "~24.3.
|
|
44
|
-
"@vaadin/field-base": "~24.3.
|
|
45
|
-
"@vaadin/input-container": "~24.3.
|
|
46
|
-
"@vaadin/item": "~24.3.
|
|
47
|
-
"@vaadin/lit-renderer": "~24.3.
|
|
48
|
-
"@vaadin/overlay": "~24.3.
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "~24.3.
|
|
50
|
-
"@vaadin/vaadin-material-styles": "~24.3.
|
|
51
|
-
"@vaadin/vaadin-themable-mixin": "~24.3.
|
|
41
|
+
"@vaadin/a11y-base": "~24.3.20",
|
|
42
|
+
"@vaadin/combo-box": "~24.3.20",
|
|
43
|
+
"@vaadin/component-base": "~24.3.20",
|
|
44
|
+
"@vaadin/field-base": "~24.3.20",
|
|
45
|
+
"@vaadin/input-container": "~24.3.20",
|
|
46
|
+
"@vaadin/item": "~24.3.20",
|
|
47
|
+
"@vaadin/lit-renderer": "~24.3.20",
|
|
48
|
+
"@vaadin/overlay": "~24.3.20",
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "~24.3.20",
|
|
50
|
+
"@vaadin/vaadin-material-styles": "~24.3.20",
|
|
51
|
+
"@vaadin/vaadin-themable-mixin": "~24.3.20"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"web-types.json",
|
|
61
61
|
"web-types.lit.json"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "3b21cd1e7318085fc256af1ce8d2a00e2d7f596e"
|
|
64
64
|
}
|
|
@@ -358,6 +358,10 @@ class MultiSelectComboBoxInternal extends ComboBoxDataProviderMixin(ComboBoxMixi
|
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
if (this.opened) {
|
|
361
|
+
// Store filter value for checking if user input is matching
|
|
362
|
+
// an item which is already selected, to not un-select it.
|
|
363
|
+
this.lastFilter = this.filter;
|
|
364
|
+
|
|
361
365
|
this.dispatchEvent(
|
|
362
366
|
new CustomEvent('combo-box-item-selected', {
|
|
363
367
|
detail: {
|
package/web-types.json
CHANGED