@vaadin/multi-select-combo-box 25.2.6 → 25.2.8
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": "25.2.
|
|
3
|
+
"version": "25.2.8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -37,23 +37,23 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
40
|
-
"@vaadin/a11y-base": "~25.2.
|
|
41
|
-
"@vaadin/combo-box": "~25.2.
|
|
42
|
-
"@vaadin/component-base": "~25.2.
|
|
43
|
-
"@vaadin/field-base": "~25.2.
|
|
44
|
-
"@vaadin/input-container": "~25.2.
|
|
45
|
-
"@vaadin/item": "~25.2.
|
|
46
|
-
"@vaadin/lit-renderer": "~25.2.
|
|
47
|
-
"@vaadin/overlay": "~25.2.
|
|
48
|
-
"@vaadin/vaadin-themable-mixin": "~25.2.
|
|
40
|
+
"@vaadin/a11y-base": "~25.2.8",
|
|
41
|
+
"@vaadin/combo-box": "~25.2.8",
|
|
42
|
+
"@vaadin/component-base": "~25.2.8",
|
|
43
|
+
"@vaadin/field-base": "~25.2.8",
|
|
44
|
+
"@vaadin/input-container": "~25.2.8",
|
|
45
|
+
"@vaadin/item": "~25.2.8",
|
|
46
|
+
"@vaadin/lit-renderer": "~25.2.8",
|
|
47
|
+
"@vaadin/overlay": "~25.2.8",
|
|
48
|
+
"@vaadin/vaadin-themable-mixin": "~25.2.8",
|
|
49
49
|
"lit": "^3.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@vaadin/aura": "~25.2.
|
|
53
|
-
"@vaadin/chai-plugins": "~25.2.
|
|
54
|
-
"@vaadin/test-runner-commands": "~25.2.
|
|
52
|
+
"@vaadin/aura": "~25.2.8",
|
|
53
|
+
"@vaadin/chai-plugins": "~25.2.8",
|
|
54
|
+
"@vaadin/test-runner-commands": "~25.2.8",
|
|
55
55
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
56
|
-
"@vaadin/vaadin-lumo-styles": "~25.2.
|
|
56
|
+
"@vaadin/vaadin-lumo-styles": "~25.2.8",
|
|
57
57
|
"sinon": "^22.0.0"
|
|
58
58
|
},
|
|
59
59
|
"customElements": "custom-elements.json",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"web-types.json",
|
|
62
62
|
"web-types.lit.json"
|
|
63
63
|
],
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "46ec4be23967061d203ca4dad6e7b8291d4edd9c"
|
|
65
65
|
}
|
|
@@ -574,7 +574,11 @@ export const MultiSelectComboBoxMixin = (superClass) =>
|
|
|
574
574
|
* @protected
|
|
575
575
|
*/
|
|
576
576
|
_setFocused(focused) {
|
|
577
|
-
|
|
577
|
+
// Do not validate, commit or close on internal blur triggered
|
|
578
|
+
// on overlay touch action needed to hide the virtual keyboard.
|
|
579
|
+
const blurred = !focused && !this._closeOnBlurIsPrevented;
|
|
580
|
+
|
|
581
|
+
if (blurred) {
|
|
578
582
|
this._ignoreCommitValue = true;
|
|
579
583
|
}
|
|
580
584
|
|
|
@@ -582,12 +586,12 @@ export const MultiSelectComboBoxMixin = (superClass) =>
|
|
|
582
586
|
|
|
583
587
|
// Do not validate when focusout is caused by document
|
|
584
588
|
// losing focus, which happens on browser tab switch.
|
|
585
|
-
if (
|
|
589
|
+
if (blurred && document.hasFocus()) {
|
|
586
590
|
this._focusedChipIndex = -1;
|
|
587
591
|
this._requestValidation();
|
|
588
592
|
}
|
|
589
593
|
|
|
590
|
-
if (
|
|
594
|
+
if (blurred && this.readonly) {
|
|
591
595
|
this.close();
|
|
592
596
|
}
|
|
593
597
|
}
|
package/web-types.json
CHANGED