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.14 to 3.2.15

src/vaadin-overlay-position-mixin.js

2

package.json

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

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

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

@@ -13,2 +13,3 @@ /**

import { FocusablesHelper } from './vaadin-focusables-helper.js';
import { PositionMixin } from './vaadin-overlay-position-mixin.js';
import { html } from '@polymer/polymer/lib/utils/html-tag.js';

@@ -158,5 +159,8 @@ let overlayContentCounter = 0;

* @mixes Vaadin.ThemableMixin
* @mixes Vaadin.Overlay.PositionMixin
* @demo demo/index.html
*/
class OverlayElement extends ThemableMixin(PolymerElement) {
class OverlayElement extends ThemableMixin(
PositionMixin(
PolymerElement)) {
static get template() {

@@ -509,3 +513,3 @@ return html`

// TAB
if (event.key === 'Tab' && this.focusTrap) {
if (event.key === 'Tab' && this.focusTrap && !event.defaultPrevented) {
// if only tab key is pressed, cycle forward, else cycle backwards.

@@ -969,3 +973,2 @@ this._cycleTab(event.shiftKey ? -1 : 1);

customElements.define(OverlayElement.is, OverlayElement);
export { OverlayElement };
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