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

@uppy/url

Package Overview
Dependencies
Maintainers
5
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uppy/url - npm Package Compare versions

Comparing version 0.29.0 to 0.29.1

11

package.json
{
"name": "@uppy/url",
"description": "The Url plugin lets users import files from the Internet. Paste any URL and it’ll be added!",
"version": "0.29.0",
"version": "0.29.1",
"license": "MIT",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"style": "dist/style.min.css",

@@ -26,8 +25,8 @@ "types": "types/index.d.ts",

"dependencies": {
"@uppy/companion-client": "0.27.2",
"@uppy/utils": "0.29.0",
"@uppy/companion-client": "0.27.3",
"@uppy/utils": "0.29.1",
"preact": "^8.2.9"
},
"devDependencies": {
"@uppy/core": "0.29.0"
"@uppy/core": "0.29.1"
},

@@ -37,3 +36,3 @@ "peerDependencies": {

},
"gitHead": "c68f2c7e68d2c12f8a8fb7119f1dae4ca08e4174"
"gitHead": "3ddf4c7548766a0c522b9a45c03b1fd7d4e03d43"
}

@@ -1,16 +0,20 @@

import { Plugin, PluginOptions, Uppy } from '@uppy/core';
import Uppy = require('@uppy/core');
export interface UrlOptions extends PluginOptions {
serverUrl: string;
// TODO inherit from ProviderOptions
declare module Url {
export interface UrlOptions extends Uppy.PluginOptions {
serverUrl: string;
// TODO inherit from ProviderOptions
}
}
export default class Url extends Plugin {
constructor(uppy: Uppy, opts: Partial<UrlOptions>);
declare class Url extends Uppy.Plugin {
constructor(uppy: Uppy.Uppy, opts: Partial<Url.UrlOptions>);
}
export = Url;
declare module '@uppy/core' {
export interface Uppy {
use(pluginClass: typeof Url, opts: Partial<UrlOptions>): Uppy;
use(pluginClass: typeof Url, opts: Partial<Url.UrlOptions>): Uppy.Uppy;
}
}
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