DEV: Revert uppy upgrade

This rolls uppy back to the previous bundle that was used,
which will break multipart functionality (which is not yet
enabled anywhere).

No other upload functionality should be affected by this change,
it will be as if d295a16dab had
not been merged.
This commit is contained in:
Martin Brennan 2021-08-26 15:13:32 +10:00 committed by Robin Ward
parent f0005025c4
commit 2eddf210d3
4 changed files with 8008 additions and 6943 deletions

View File

@ -32,7 +32,7 @@ define("@popperjs/core", ["exports"], function (__exports__) {
define("@uppy/core", ["exports"], function (__exports__) {
__exports__.default = window.Uppy.Core;
__exports__.BasePlugin = window.Uppy.BasePlugin;
__exports__.Plugin = window.Uppy.Plugin;
});
define("@uppy/aws-s3", ["exports"], function (__exports__) {

View File

@ -1,8 +1,8 @@
import { BasePlugin } from "@uppy/core";
import { Plugin } from "@uppy/core";
import { warn } from "@ember/debug";
import { Promise } from "rsvp";
export default class UppyChecksum extends BasePlugin {
export default class UppyChecksum extends Plugin {
constructor(uppy, opts) {
super(uppy, opts);
this.id = opts.id || "uppy-checksum";

View File

@ -1,8 +1,8 @@
import { BasePlugin } from "@uppy/core";
import { Plugin } from "@uppy/core";
import { warn } from "@ember/debug";
import { Promise } from "rsvp";
export default class UppyMediaOptimization extends BasePlugin {
export default class UppyMediaOptimization extends Plugin {
constructor(uppy, opts) {
super(uppy, opts);
this.id = opts.id || "uppy-media-optimization";

File diff suppressed because one or more lines are too long