@vaadin/combo-box
Advanced tools
Comparing version 23.0.7 to 23.0.8
{ | ||
"name": "@vaadin/combo-box", | ||
"version": "23.0.7", | ||
"version": "23.0.8", | ||
"publishConfig": { | ||
@@ -37,21 +37,21 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/component-base": "^23.0.7", | ||
"@vaadin/field-base": "^23.0.7", | ||
"@vaadin/input-container": "^23.0.7", | ||
"@vaadin/item": "^23.0.7", | ||
"@vaadin/vaadin-lumo-styles": "^23.0.7", | ||
"@vaadin/vaadin-material-styles": "^23.0.7", | ||
"@vaadin/vaadin-overlay": "^23.0.7", | ||
"@vaadin/vaadin-themable-mixin": "^23.0.7" | ||
"@vaadin/component-base": "^23.0.8", | ||
"@vaadin/field-base": "^23.0.8", | ||
"@vaadin/input-container": "^23.0.8", | ||
"@vaadin/item": "^23.0.8", | ||
"@vaadin/vaadin-lumo-styles": "^23.0.8", | ||
"@vaadin/vaadin-material-styles": "^23.0.8", | ||
"@vaadin/vaadin-overlay": "^23.0.8", | ||
"@vaadin/vaadin-themable-mixin": "^23.0.8" | ||
}, | ||
"devDependencies": { | ||
"@esm-bundle/chai": "^4.3.4", | ||
"@vaadin/dialog": "^23.0.7", | ||
"@vaadin/polymer-legacy-adapter": "^23.0.7", | ||
"@vaadin/dialog": "^23.0.8", | ||
"@vaadin/polymer-legacy-adapter": "^23.0.8", | ||
"@vaadin/testing-helpers": "^0.3.2", | ||
"@vaadin/text-field": "^23.0.7", | ||
"@vaadin/text-field": "^23.0.8", | ||
"lit": "^2.0.0", | ||
"sinon": "^9.2.0" | ||
}, | ||
"gitHead": "005c2d85db8f50cd3b239dd89ac467add6a71049" | ||
"gitHead": "43fe9d95c8cd745adc7bef214c0097c47f4f83ed" | ||
} |
@@ -979,6 +979,7 @@ /** | ||
if (this._inputElementValue === undefined || this._inputElementValue === this.value) { | ||
const inputValue = this._inputElementValue; | ||
if (inputValue === undefined || inputValue === this._getItemLabel(this.selectedItem)) { | ||
// When the input element value is the same as the current value or not defined, | ||
// set the focused index to the item that matches the value. | ||
this._focusedIndex = this._indexOfValue(this.value, this.filteredItems); | ||
this._focusedIndex = this.$.dropdown.indexOfLabel(this._getItemLabel(this.selectedItem)); | ||
} else { | ||
@@ -985,0 +986,0 @@ // When the user filled in something that is different from the current value = filtering is enabled, |
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
133927
3392
Updated@vaadin/field-base@^23.0.8
Updated@vaadin/item@^23.0.8