@vaadin/multi-select-combo-box 24.5.0-alpha4 → 24.5.0-alpha6
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 +13 -13
- package/src/vaadin-multi-select-combo-box.js +4 -2
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/multi-select-combo-box",
|
|
3
|
-
"version": "24.5.0-
|
|
3
|
+
"version": "24.5.0-alpha6",
|
|
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.5.0-
|
|
42
|
-
"@vaadin/combo-box": "24.5.0-
|
|
43
|
-
"@vaadin/component-base": "24.5.0-
|
|
44
|
-
"@vaadin/field-base": "24.5.0-
|
|
45
|
-
"@vaadin/input-container": "24.5.0-
|
|
46
|
-
"@vaadin/item": "24.5.0-
|
|
47
|
-
"@vaadin/lit-renderer": "24.5.0-
|
|
48
|
-
"@vaadin/overlay": "24.5.0-
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "24.5.0-
|
|
50
|
-
"@vaadin/vaadin-material-styles": "24.5.0-
|
|
51
|
-
"@vaadin/vaadin-themable-mixin": "24.5.0-
|
|
41
|
+
"@vaadin/a11y-base": "24.5.0-alpha6",
|
|
42
|
+
"@vaadin/combo-box": "24.5.0-alpha6",
|
|
43
|
+
"@vaadin/component-base": "24.5.0-alpha6",
|
|
44
|
+
"@vaadin/field-base": "24.5.0-alpha6",
|
|
45
|
+
"@vaadin/input-container": "24.5.0-alpha6",
|
|
46
|
+
"@vaadin/item": "24.5.0-alpha6",
|
|
47
|
+
"@vaadin/lit-renderer": "24.5.0-alpha6",
|
|
48
|
+
"@vaadin/overlay": "24.5.0-alpha6",
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "24.5.0-alpha6",
|
|
50
|
+
"@vaadin/vaadin-material-styles": "24.5.0-alpha6",
|
|
51
|
+
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha6"
|
|
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": "c5f541dbe961a994730d4c60472ae957bf6b4c12"
|
|
64
64
|
}
|
|
@@ -460,7 +460,6 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
460
460
|
*/
|
|
461
461
|
placeholder: {
|
|
462
462
|
type: String,
|
|
463
|
-
value: '',
|
|
464
463
|
observer: '_placeholderChanged',
|
|
465
464
|
},
|
|
466
465
|
|
|
@@ -810,9 +809,12 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
810
809
|
// Use placeholder for announcing items
|
|
811
810
|
if (this._hasValue) {
|
|
812
811
|
const tmpPlaceholder = this._mergeItemLabels(selectedItems);
|
|
812
|
+
if (this.__tmpA11yPlaceholder === undefined) {
|
|
813
|
+
this.__savedPlaceholder = this.placeholder;
|
|
814
|
+
}
|
|
813
815
|
this.__tmpA11yPlaceholder = tmpPlaceholder;
|
|
814
816
|
this.placeholder = tmpPlaceholder;
|
|
815
|
-
} else {
|
|
817
|
+
} else if (this.__tmpA11yPlaceholder !== undefined) {
|
|
816
818
|
delete this.__tmpA11yPlaceholder;
|
|
817
819
|
this.placeholder = this.__savedPlaceholder;
|
|
818
820
|
}
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED