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

svelte-dnd-action

Package Overview
Dependencies
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-dnd-action - npm Package Compare versions

Comparing version 0.9.42 to 0.9.43

2

package.json
{
"name": "svelte-dnd-action",
"description": "*An awesome drag and drop library for Svelte 3 and 4 (not using the browser's built-in dnd, thanks god): Rich animations, nested containers, touch support and more *",
"version": "0.9.42",
"version": "0.9.43",
"repository": {

@@ -6,0 +6,0 @@ "type": "git",

@@ -353,3 +353,3 @@ import {

}
function handleFalseAlarm() {
function handleFalseAlarm(e) {
removeMaybeListeners();

@@ -359,2 +359,7 @@ originalDragTarget = undefined;

currentMousePosition = undefined;
// dragging initiated by touch events prevents onclick from initially firing
if (e.type === "touchend") {
e.target.click();
}
}

@@ -389,2 +394,3 @@

}
e.preventDefault();
e.stopPropagation();

@@ -391,0 +397,0 @@ const c = e.touches ? e.touches[0] : e;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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