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

@uppy/remote-sources

Package Overview
Dependencies
Maintainers
8
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uppy/remote-sources - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

7

CHANGELOG.md
# @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 @@

7

lib/index.js

@@ -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

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