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

@vaadin/overlay

Package Overview
Dependencies
Maintainers
12
Versions
265
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.0.0-alpha3 to 24.0.0-alpha4

20

package.json
{
"name": "@vaadin/overlay",
"version": "24.0.0-alpha3",
"version": "24.0.0-alpha4",
"publishConfig": {

@@ -38,18 +38,18 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "24.0.0-alpha3",
"@vaadin/vaadin-lumo-styles": "24.0.0-alpha3",
"@vaadin/vaadin-material-styles": "24.0.0-alpha3",
"@vaadin/vaadin-themable-mixin": "24.0.0-alpha3"
"@vaadin/component-base": "24.0.0-alpha4",
"@vaadin/vaadin-lumo-styles": "24.0.0-alpha4",
"@vaadin/vaadin-material-styles": "24.0.0-alpha4",
"@vaadin/vaadin-themable-mixin": "24.0.0-alpha4"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4",
"@vaadin/button": "24.0.0-alpha3",
"@vaadin/polymer-legacy-adapter": "24.0.0-alpha3",
"@vaadin/radio-group": "24.0.0-alpha3",
"@vaadin/button": "24.0.0-alpha4",
"@vaadin/polymer-legacy-adapter": "24.0.0-alpha4",
"@vaadin/radio-group": "24.0.0-alpha4",
"@vaadin/testing-helpers": "^0.3.2",
"@vaadin/text-field": "24.0.0-alpha3",
"@vaadin/text-field": "24.0.0-alpha4",
"lit": "^2.0.0",
"sinon": "^13.0.2"
},
"gitHead": "7a013a3c5a56abd61dd4f7773c6ec77c3541bdf2"
"gitHead": "66be46e82c4d0a673859fbc9bdb1581dd89f360c"
}

@@ -173,6 +173,2 @@ /**

get __isRTL() {
return this.getAttribute('dir') === 'rtl';
}
__positionSettingsChanged() {

@@ -201,5 +197,5 @@ this._updatePosition();

const shouldAlignStartHorizontally = this.__shouldAlignStartHorizontally(targetRect, this.__isRTL);
const flexStart =
(!this.__isRTL && shouldAlignStartHorizontally) || (this.__isRTL && !shouldAlignStartHorizontally);
const isRTL = this.__isRTL;
const shouldAlignStartHorizontally = this.__shouldAlignStartHorizontally(targetRect, isRTL);
const flexStart = (!isRTL && shouldAlignStartHorizontally) || (isRTL && !shouldAlignStartHorizontally);
this.style.alignItems = flexStart ? 'flex-start' : 'flex-end';

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