New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/overlay

Package Overview
Dependencies
Maintainers
0
Versions
303
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/overlay - npm Package Compare versions

Comparing version 24.7.0-alpha1 to 24.7.0-alpha10

19

package.json
{
"name": "@vaadin/overlay",
"version": "24.7.0-alpha1",
"version": "24.7.0-alpha10",
"publishConfig": {

@@ -39,15 +39,16 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/a11y-base": "24.7.0-alpha1",
"@vaadin/component-base": "24.7.0-alpha1",
"@vaadin/vaadin-lumo-styles": "24.7.0-alpha1",
"@vaadin/vaadin-material-styles": "24.7.0-alpha1",
"@vaadin/vaadin-themable-mixin": "24.7.0-alpha1",
"@vaadin/a11y-base": "24.7.0-alpha10",
"@vaadin/component-base": "24.7.0-alpha10",
"@vaadin/vaadin-lumo-styles": "24.7.0-alpha10",
"@vaadin/vaadin-material-styles": "24.7.0-alpha10",
"@vaadin/vaadin-themable-mixin": "24.7.0-alpha10",
"lit": "^3.0.0"
},
"devDependencies": {
"@vaadin/chai-plugins": "24.7.0-alpha1",
"@vaadin/testing-helpers": "^1.0.0",
"@vaadin/chai-plugins": "24.7.0-alpha10",
"@vaadin/test-runner-commands": "24.7.0-alpha10",
"@vaadin/testing-helpers": "^1.1.0",
"sinon": "^18.0.0"
},
"gitHead": "04be941c9a7b659871c97f31b9cc3ffd7528087b"
"gitHead": "c0f8933df2a6a40648d3fb9cfbae6bbf86a8aa90"
}
/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -31,3 +31,20 @@ */

const overlayMap = new WeakMap();
/**
* Stores the reference to the nested overlay for given parent,
* or removes it when the nested overlay is null.
* @param {HTMLElement} parent
* @param {HTMLElement} nested
* @protected
*/
export const setNestedOverlay = (parent, nested) => {
if (nested != null) {
overlayMap.set(parent, nested);
} else {
overlayMap.delete(parent);
}
};
/**
* @polymerMixin

@@ -67,2 +84,7 @@ */

this.__zIndex = zIndex || parseFloat(getComputedStyle(this).zIndex);
// If there is a nested overlay, call `bringToFront()` for it as well.
if (overlayMap.has(this)) {
overlayMap.get(this).bringToFront();
}
}

@@ -69,0 +91,0 @@

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2024 Vaadin Ltd.
* Copyright (c) 2024 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2024 Vaadin Ltd.
* Copyright (c) 2024 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,0 @@ */

/**
* @license
* Copyright (c) 2017 - 2024 Vaadin Ltd.
* Copyright (c) 2017 - 2025 Vaadin Ltd.
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/

@@ -5,0 +5,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