@vaadin/combo-box
Advanced tools
Comparing version 22.0.13 to 22.0.14
{ | ||
"name": "@vaadin/combo-box", | ||
"version": "22.0.13", | ||
"version": "22.0.14", | ||
"publishConfig": { | ||
@@ -36,21 +36,21 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/component-base": "^22.0.13", | ||
"@vaadin/field-base": "^22.0.13", | ||
"@vaadin/input-container": "^22.0.13", | ||
"@vaadin/item": "^22.0.13", | ||
"@vaadin/vaadin-lumo-styles": "^22.0.13", | ||
"@vaadin/vaadin-material-styles": "^22.0.13", | ||
"@vaadin/vaadin-overlay": "^22.0.13", | ||
"@vaadin/vaadin-themable-mixin": "^22.0.13" | ||
"@vaadin/component-base": "^22.0.14", | ||
"@vaadin/field-base": "^22.0.14", | ||
"@vaadin/input-container": "^22.0.14", | ||
"@vaadin/item": "^22.0.14", | ||
"@vaadin/vaadin-lumo-styles": "^22.0.14", | ||
"@vaadin/vaadin-material-styles": "^22.0.14", | ||
"@vaadin/vaadin-overlay": "^22.0.14", | ||
"@vaadin/vaadin-themable-mixin": "^22.0.14" | ||
}, | ||
"devDependencies": { | ||
"@esm-bundle/chai": "^4.3.4", | ||
"@vaadin/dialog": "^22.0.13", | ||
"@vaadin/polymer-legacy-adapter": "^22.0.13", | ||
"@vaadin/dialog": "^22.0.14", | ||
"@vaadin/polymer-legacy-adapter": "^22.0.14", | ||
"@vaadin/testing-helpers": "^0.3.2", | ||
"@vaadin/text-field": "^22.0.13", | ||
"@vaadin/text-field": "^22.0.14", | ||
"lit": "^2.0.0", | ||
"sinon": "^9.2.0" | ||
}, | ||
"gitHead": "0ef3a237a2db4255710aa878debb169eb52a1715" | ||
"gitHead": "62419e3f8f41fe9dc4f0bce5e1717b16828459b6" | ||
} |
@@ -969,6 +969,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 { | ||
@@ -975,0 +976,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
132787
3365
Updated@vaadin/field-base@^22.0.14
Updated@vaadin/item@^22.0.14