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

@vaadin/combo-box

Package Overview
Dependencies
Maintainers
12
Versions
414
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.17 to 22.0.18

26

package.json
{
"name": "@vaadin/combo-box",
"version": "22.0.17",
"version": "22.0.18",
"publishConfig": {

@@ -36,21 +36,21 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "^22.0.17",
"@vaadin/field-base": "^22.0.17",
"@vaadin/input-container": "^22.0.17",
"@vaadin/item": "^22.0.17",
"@vaadin/vaadin-lumo-styles": "^22.0.17",
"@vaadin/vaadin-material-styles": "^22.0.17",
"@vaadin/vaadin-overlay": "^22.0.17",
"@vaadin/vaadin-themable-mixin": "^22.0.17"
"@vaadin/component-base": "^22.0.18",
"@vaadin/field-base": "^22.0.18",
"@vaadin/input-container": "^22.0.18",
"@vaadin/item": "^22.0.18",
"@vaadin/vaadin-lumo-styles": "^22.0.18",
"@vaadin/vaadin-material-styles": "^22.0.18",
"@vaadin/vaadin-overlay": "^22.0.18",
"@vaadin/vaadin-themable-mixin": "^22.0.18"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@vaadin/dialog": "^22.0.17",
"@vaadin/polymer-legacy-adapter": "^22.0.17",
"@vaadin/dialog": "^22.0.18",
"@vaadin/polymer-legacy-adapter": "^22.0.18",
"@vaadin/testing-helpers": "^0.3.2",
"@vaadin/text-field": "^22.0.17",
"@vaadin/text-field": "^22.0.18",
"lit": "^2.0.0",
"sinon": "^9.2.0"
},
"gitHead": "4ba77c19889036fb954052cf1f32bc96089fcc25"
"gitHead": "8f5d45192adbb084661af01c8837d0898cd68a23"
}

@@ -1093,2 +1093,8 @@ /**

_onFocusout(event) {
// VoiceOver on iOS fires `focusout` event when moving focus to the item in the dropdown.
// Do not focus the input in this case, because it would break announcement for the item.
if (event.relatedTarget && this._getItemElements().includes(event.relatedTarget)) {
return;
}
// Fixes the problem with `focusout` happening when clicking on the scroll bar on Edge

@@ -1095,0 +1101,0 @@ if (event.relatedTarget === this.$.dropdown.$.overlay) {

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