Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/combo-box

Package Overview
Dependencies
Maintainers
14
Versions
405
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/combo-box - npm Package Compare versions

Comparing version 22.0.13 to 22.0.14

26

package.json
{
"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,

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc