Socket
Socket
Sign inDemoInstall

@vaadin/vaadin-dialog

Package Overview
Dependencies
Maintainers
16
Versions
262
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.5.0 to 2.5.1

2

package.json

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

"name": "@vaadin/vaadin-dialog",
"version": "2.5.0",
"version": "2.5.1",
"main": "vaadin-dialog.js",

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

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

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

@@ -50,3 +55,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) {

@@ -53,0 +61,0 @@ !isDraggable && e.preventDefault();

@@ -164,3 +164,3 @@ /**

static get version() {
return '2.5.0';
return '2.5.1';
}

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