Socket
Socket
Sign inDemoInstall

@vaadin/vaadin-overlay

Package Overview
Dependencies
Maintainers
16
Versions
268
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-overlay - npm Package Compare versions

Comparing version 3.2.15 to 3.2.16

2

package.json

@@ -14,3 +14,3 @@ {

"name": "@vaadin/vaadin-overlay",
"version": "3.2.15",
"version": "3.2.16",
"main": "vaadin-overlay.js",

@@ -17,0 +17,0 @@ "author": "Vaadin Ltd",

@@ -410,2 +410,14 @@ /**

this.$.backdrop.addEventListener('click', () => {});
// Make sure the focus stays within the overlay (even on caret browsing)
this.addEventListener('focusout', e => {
const related = e.relatedTarget;
if (this.focusTrap && (!related || !this._deepContains(related))) {
setTimeout(() => {
this.tabIndex = -1;
this.focus();
this.tabIndex = undefined;
});
}
});
}

@@ -412,0 +424,0 @@

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