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

@uppy/drop-target

Package Overview
Dependencies
Maintainers
5
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uppy/drop-target - npm Package Compare versions

Comparing version 2.0.5 to 2.1.0

7

CHANGELOG.md
# @uppy/drop-target
## 2.1.0
Released: 2024-04-29
Included in: Uppy v3.25.0
- @uppy/drop-target: change drop event type to DragEvent (Alireza Heydari / #5107)
## 2.0.5

@@ -4,0 +11,0 @@

2

lib/index.js

@@ -7,3 +7,3 @@ import BasePlugin from '@uppy/core/lib/BasePlugin.js';

const packageJson = {
"version": "2.0.5"
"version": "2.1.0"
};

@@ -10,0 +10,0 @@ // Default options

{
"name": "@uppy/drop-target",
"description": "Lets your users drag and drop files on a DOM element",
"version": "2.0.5",
"version": "2.1.0",
"license": "MIT",

@@ -28,6 +28,6 @@ "main": "lib/index.js",

"dependencies": {
"@uppy/utils": "^5.7.5"
"@uppy/utils": "^5.9.0"
},
"peerDependencies": {
"@uppy/core": "^3.10.0"
"@uppy/core": "^3.11.0"
},

@@ -34,0 +34,0 @@ "publishConfig": {

@@ -5,5 +5,5 @@ import type { PluginOptions, BasePlugin } from '@uppy/core'

target: string | Element
onDragOver?: (event: MouseEvent) => void
onDrop?: (event: MouseEvent) => void
onDragLeave?: (event: MouseEvent) => void
onDragOver?: (event: DragEvent) => void
onDrop?: (event: DragEvent) => void
onDragLeave?: (event: DragEvent) => void
}

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