Comparing version 0.29.0 to 0.29.1
{ | ||
"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; | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27102
580
+ Added@uppy/companion-client@0.27.3(transitive)
- Removed@uppy/companion-client@0.27.2(transitive)
- Removed@uppy/utils@0.29.0(transitive)
Updated@uppy/utils@0.29.1