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

@uploadthing/dropzone

Package Overview
Dependencies
Maintainers
1
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uploadthing/dropzone - npm Package Compare versions

Comparing version 0.3.2-canary.4cbc7bd to 0.3.2-canary.c0e4c9a

vue/index.cjs

4

core/index.d.ts

@@ -18,3 +18,5 @@ type AcceptProp = Record<string, string[]>;

declare const isPropagationStopped: (event: Event) => boolean;
declare const isPropagationStopped: (event: Event & {
isPropagationStopped?: () => boolean;
}) => boolean;
declare function isFileAccepted(file: File, accept: string | string[]): boolean;

@@ -21,0 +23,0 @@ declare function isEnterOrSpace(event: {

@@ -29,2 +29,5 @@ /**

const isPropagationStopped = (event)=>{
if (typeof event.isPropagationStopped === "function") {
return event.isPropagationStopped();
}
if (typeof event.cancelBubble !== "undefined") {

@@ -31,0 +34,0 @@ return event.cancelBubble;

{
"name": "@uploadthing/dropzone",
"version": "0.3.2-canary.4cbc7bd",
"version": "0.3.2-canary.c0e4c9a",
"type": "module",

@@ -47,2 +47,12 @@ "license": "MIT",

}
},
"./vue": {
"import": {
"types": "./vue/index.d.ts",
"default": "./vue/index.js"
},
"require": {
"types": "./vue/index.d.cts",
"default": "./vue/index.cjs"
}
}

@@ -54,3 +64,4 @@ },

"solid",
"svelte"
"svelte",
"vue"
],

@@ -80,3 +91,4 @@ "publishConfig": {

"svelte": "^4.2.12",
"typescript": "^5.4.2"
"typescript": "^5.4.2",
"vue": "^3.4.21"
},

@@ -86,3 +98,4 @@ "peerDependencies": {

"solid-js": "^1.7.11",
"svelte": "^4.2.12"
"svelte": "^4.2.12",
"vue": "^3.4.0"
},

@@ -98,2 +111,5 @@ "peerDependenciesMeta": {

"optional": true
},
"vue": {
"optional": true
}

@@ -100,0 +116,0 @@ },

Sorry, the diff of this file is not supported yet

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