@uppy/remote-sources
Advanced tools
Comparing version 0.1.0 to 0.1.1
# @uppy/remote-sources | ||
## 0.1.1 | ||
Released: 2022-07-27 | ||
Included in: Uppy v2.13.1 | ||
- @uppy/dashboard,@uppy/image-editor,@uppy/remote-sources: Fix `uppy.close()` crashes when remote-sources or image-editor is installed (Merlijn Vos / #3914) | ||
## 0.1.0 | ||
@@ -4,0 +11,0 @@ |
@@ -32,3 +32,3 @@ "use strict"; | ||
const packageJson = { | ||
"version": "0.1.0" | ||
"version": "0.1.1" | ||
}; | ||
@@ -83,5 +83,6 @@ const availablePlugins = [Box, Dropbox, Facebook, GoogleDrive, Instagram, OneDrive, Unsplash, Url, Zoom]; | ||
this.uppy.use(plugin, optsForRemoteSourcePlugin); | ||
this.uppy.use(plugin, optsForRemoteSourcePlugin); // `plugin` is a class, but we want to track the instance object | ||
// so we have to do `getPlugin` here. | ||
_classPrivateFieldLooseBase(this, _installedPlugins)[_installedPlugins].add(plugin); | ||
_classPrivateFieldLooseBase(this, _installedPlugins)[_installedPlugins].add(this.uppy.getPlugin(pluginId)); | ||
}); | ||
@@ -88,0 +89,0 @@ } |
{ | ||
"name": "@uppy/remote-sources", | ||
"description": "Uppy plugin that includes all remote sources that Uppy+Companion offer, like Instagram, Google Drive, Dropox, Box, Unsplash, Url etc", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"license": "MIT", | ||
@@ -31,3 +31,3 @@ "main": "lib/index.js", | ||
"@uppy/box": "^1.0.7", | ||
"@uppy/dashboard": "^2.3.0", | ||
"@uppy/dashboard": "^2.4.1", | ||
"@uppy/dropbox": "^2.0.7", | ||
@@ -43,3 +43,3 @@ "@uppy/facebook": "^2.0.7", | ||
"peerDependencies": { | ||
"@uppy/core": "^2.3.1" | ||
"@uppy/core": "^2.3.2" | ||
}, | ||
@@ -46,0 +46,0 @@ "publishConfig": { |
@@ -73,3 +73,5 @@ import { BasePlugin } from '@uppy/core' | ||
this.uppy.use(plugin, optsForRemoteSourcePlugin) | ||
this.#installedPlugins.add(plugin) | ||
// `plugin` is a class, but we want to track the instance object | ||
// so we have to do `getPlugin` here. | ||
this.#installedPlugins.add(this.uppy.getPlugin(pluginId)) | ||
}) | ||
@@ -76,0 +78,0 @@ } |
Sorry, the diff of this file is not supported yet
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
16366
204
+ Addedpreact@10.25.1(transitive)
- Removedpreact@10.25.2(transitive)
Updated@uppy/dashboard@^2.4.1