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

@vaadin/vaadin-dialog

Package Overview
Dependencies
Maintainers
16
Versions
263
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-dialog - npm Package Compare versions

Comparing version 2.4.3 to 2.4.4

2

package.json

@@ -13,3 +13,3 @@ {

"name": "@vaadin/vaadin-dialog",
"version": "2.4.3",
"version": "2.4.4",
"main": "vaadin-dialog.js",

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

@@ -20,2 +20,7 @@ const TOUCH_DEVICE = (() => {

value: TOUCH_DEVICE
},
/* TODO: Expose as a public property (check naming) */
__dragHandleClassName: {
type: String
}

@@ -47,3 +52,6 @@ };

const isContentPart = e.target === this.$.overlay.$.content;
const isDraggable = e.target.classList.contains('draggable');
const isDraggable = e.composedPath().some(node => {
return node.classList && node.classList.contains(this.__dragHandleClassName || 'draggable');
});
if ((isResizerContainer && !isResizerContainerScrollbar) || isContentPart || isDraggable) {

@@ -50,0 +58,0 @@ !isDraggable && e.preventDefault();

@@ -162,3 +162,3 @@ /**

static get version() {
return '2.4.3';
return '2.4.4';
}

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