mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
Publish
- uppy@0.30.2 - @uppy/aws-s3-multipart@0.30.2 - @uppy/aws-s3@0.30.2 - @uppy/companion-client@0.28.2 - @uppy/companion@0.17.2 - @uppy/core@0.30.2 - @uppy/dashboard@0.30.2 - @uppy/drag-drop@0.30.2 - @uppy/dropbox@0.30.2 - @uppy/file-input@0.30.2 - @uppy/form@0.30.2 - @uppy/golden-retriever@0.30.2 - @uppy/google-drive@0.30.2 - @uppy/informer@0.30.2 - @uppy/instagram@0.30.2 - @uppy/progress-bar@0.30.2 - @uppy/provider-views@0.30.2 - @uppy/react@0.30.2 - @uppy/redux-dev-tools@0.30.2 - @uppy/robodog@0.30.2 - @uppy/status-bar@0.30.2 - @uppy/store-default@0.28.2 - @uppy/store-redux@0.28.2 - @uppy/thumbnail-generator@0.30.2 - @uppy/transloadit@0.30.2 - @uppy/tus@0.30.2 - @uppy/url@0.30.2 - @uppy/utils@0.30.2 - @uppy/webcam@0.30.2 - @uppy/xhr-upload@0.30.2
This commit is contained in:
parent
e864aeb5f1
commit
f94bc77deb
38 changed files with 154 additions and 154 deletions
|
|
@ -65,7 +65,7 @@ $ npm install @uppy/core @uppy/dashboard @uppy/tus
|
|||
|
||||
We recommend installing from npm and then using a module bundler such as [Webpack](http://webpack.github.io/), [Browserify](http://browserify.org/) or [Rollup.js](http://rollupjs.org/).
|
||||
|
||||
Add CSS [uppy.min.css](https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.css), either to `<head>` of your HTML page or include in JS, if your bundler of choice supports it — transforms and plugins are available for Browserify and Webpack.
|
||||
Add CSS [uppy.min.css](https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.css), either to `<head>` of your HTML page or include in JS, if your bundler of choice supports it — transforms and plugins are available for Browserify and Webpack.
|
||||
|
||||
Alternatively, you can also use a pre-built bundle from Transloadit's CDN: Edgly. In that case `Uppy` will attach itself to the global `window.Uppy` object.
|
||||
|
||||
|
|
@ -73,10 +73,10 @@ Alternatively, you can also use a pre-built bundle from Transloadit's CDN: Edgly
|
|||
|
||||
```html
|
||||
<!-- 1. Add CSS to `<head>` -->
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.0/dist/uppy.min.css" rel="stylesheet">
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.css" rel="stylesheet">
|
||||
|
||||
<!-- 2. Add JS before the closing `</body>` -->
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.0/dist/uppy.min.js"></script>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.js"></script>
|
||||
|
||||
<!-- 3. Initialize -->
|
||||
<div class="UppyDragDrop"></div>
|
||||
|
|
@ -163,7 +163,7 @@ If you're using Uppy via a script tag, you can load the polyfills from [JSDelivr
|
|||
```html
|
||||
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4.2.5/dist/es6-promise.auto.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/whatwg-fetch@3.0.0/dist/fetch.umd.min.js"></script>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.js"></script>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.js"></script>
|
||||
```
|
||||
|
||||
## FAQ
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
# - Checks if a tag is being built (on Travis - otherwise opts to continue execution regardless)
|
||||
# - Installs AWS CLI if needed
|
||||
# - Assumed a fully built uppy is in root dir (unless a specific tag was specified, then it's fetched from npm)
|
||||
# - Runs npm pack, and stores files to e.g. https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.css
|
||||
# - Runs npm pack, and stores files to e.g. https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.css
|
||||
# - Uses local package by default, if [version] argument was specified, takes package from npm
|
||||
#
|
||||
# Run as:
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@
|
|||
<title></title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.css" rel="stylesheet">
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<button id="uppyModalOpener">Open Modal</button>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.js"></script>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.js"></script>
|
||||
<script>
|
||||
const uppy = Uppy.Core({debug: true, autoProceed: false})
|
||||
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" href="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.css">
|
||||
<link rel="stylesheet" href="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.css">
|
||||
<style>
|
||||
body {
|
||||
font-family: Roboto, Open Sans;
|
||||
|
|
|
|||
|
|
@ -4,11 +4,11 @@
|
|||
<title></title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.css" rel="stylesheet">
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<button id="uppyModalOpener">Open Modal</button>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.js"></script>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.js"></script>
|
||||
<script>
|
||||
const uppy = Uppy.Core({debug: true, autoProceed: false})
|
||||
.use(Uppy.Dashboard, { trigger: '#uppyModalOpener' })
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/aws-s3-multipart",
|
||||
"description": "Upload to Amazon S3 with Uppy and S3's Multipart upload strategy",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -23,12 +23,12 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/companion-client": "0.28.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/companion-client": "^0.28.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"resolve-url": "^0.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/aws-s3",
|
||||
"description": "Upload to Amazon S3 with Uppy",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -22,13 +22,13 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/companion-client": "0.28.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/xhr-upload": "0.30.1",
|
||||
"@uppy/companion-client": "^0.28.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"@uppy/xhr-upload": "^0.30.2",
|
||||
"resolve-url": "^0.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/companion-client",
|
||||
"description": "Client library for communication with Companion. Intended for use in Uppy plugins.",
|
||||
"version": "0.28.1",
|
||||
"version": "0.28.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@uppy/companion",
|
||||
"version": "0.17.1",
|
||||
"version": "0.17.2",
|
||||
"description": "OAuth helper and remote fetcher for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:",
|
||||
"main": "lib/uppy.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/core",
|
||||
"description": "Core module for the extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
@ -20,8 +20,8 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/store-default": "0.28.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/store-default": "^0.28.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"cuid": "^2.1.1",
|
||||
"lodash.throttle": "^4.1.1",
|
||||
"mime-match": "^1.0.2",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/dashboard",
|
||||
"description": "Universal UI plugin for Uppy.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
@ -22,11 +22,11 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/informer": "0.30.1",
|
||||
"@uppy/provider-views": "0.30.1",
|
||||
"@uppy/status-bar": "0.30.1",
|
||||
"@uppy/thumbnail-generator": "0.30.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/informer": "^0.30.2",
|
||||
"@uppy/provider-views": "^0.30.2",
|
||||
"@uppy/status-bar": "^0.30.2",
|
||||
"@uppy/thumbnail-generator": "^0.30.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"classnames": "^2.2.6",
|
||||
"cuid": "^2.1.1",
|
||||
"drag-drop": "2.13.3",
|
||||
|
|
@ -37,8 +37,8 @@
|
|||
"resize-observer-polyfill": "^1.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1",
|
||||
"@uppy/google-drive": "0.30.1"
|
||||
"@uppy/core": "^0.30.2",
|
||||
"@uppy/google-drive": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/drag-drop",
|
||||
"description": "Droppable zone UI for Uppy. Drag and drop files into it to upload.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
@ -25,12 +25,12 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"drag-drop": "2.13.3",
|
||||
"preact": "^8.2.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/dropbox",
|
||||
"description": "Import files from Dropbox, into Uppy.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -20,13 +20,13 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/companion-client": "0.28.1",
|
||||
"@uppy/provider-views": "0.30.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/companion-client": "^0.28.2",
|
||||
"@uppy/provider-views": "^0.30.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"preact": "^8.2.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/file-input",
|
||||
"description": "Simple UI of a file input button that works with Uppy right out of the box",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
@ -22,11 +22,11 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"preact": "^8.2.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/form",
|
||||
"description": "Connect Uppy to an existing HTML <form>.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -20,11 +20,11 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"get-form-data": "^2.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/golden-retriever",
|
||||
"description": "The GoldenRetriever Uppy plugin saves selected files in browser cache to seamlessly resume uploding after browser crash or accidentally closed tab",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -23,11 +23,11 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"prettier-bytes": "^1.0.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/google-drive",
|
||||
"description": "The Google Drive plugin for Uppy lets users import files from their Google Drive account",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -21,13 +21,13 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/companion-client": "0.28.1",
|
||||
"@uppy/provider-views": "0.30.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/companion-client": "^0.28.2",
|
||||
"@uppy/provider-views": "^0.30.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"preact": "^8.2.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/informer",
|
||||
"description": "A notification and error pop-up bar for Uppy.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
@ -23,11 +23,11 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"preact": "^8.2.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/instagram",
|
||||
"description": "Import photos and videos from Instagram, into Uppy.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -23,13 +23,13 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/companion-client": "0.28.1",
|
||||
"@uppy/provider-views": "0.30.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/companion-client": "^0.28.2",
|
||||
"@uppy/provider-views": "^0.30.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"preact": "^8.2.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/progress-bar",
|
||||
"description": "A progress bar UI for Uppy",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
@ -23,11 +23,11 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"preact": "^8.2.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/provider-views",
|
||||
"description": "View library for Uppy remote provider plugins.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
@ -19,12 +19,12 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"classnames": "^2.2.6",
|
||||
"preact": "^8.2.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/react",
|
||||
"description": "React component wrappers around Uppy's official UI plugins.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"module": "index.mjs",
|
||||
|
|
@ -22,15 +22,15 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/dashboard": "0.30.1",
|
||||
"@uppy/drag-drop": "0.30.1",
|
||||
"@uppy/progress-bar": "0.30.1",
|
||||
"@uppy/status-bar": "0.30.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/dashboard": "^0.30.2",
|
||||
"@uppy/drag-drop": "^0.30.2",
|
||||
"@uppy/progress-bar": "^0.30.2",
|
||||
"@uppy/status-bar": "^0.30.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"prop-types": "^15.6.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/redux-dev-tools",
|
||||
"description": "Redux developer tools plugin for Uppy that simply syncs Uppy’s state with redux-devtools browser or JS extensions, and allows for basic time travel",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/robodog",
|
||||
"description": "Transloadit SDK for browsers based on Uppy",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"jsnext:main": "src/index.js",
|
||||
|
|
@ -28,17 +28,17 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/core": "0.30.1",
|
||||
"@uppy/dashboard": "0.30.1",
|
||||
"@uppy/dropbox": "0.30.1",
|
||||
"@uppy/form": "0.30.1",
|
||||
"@uppy/google-drive": "0.30.1",
|
||||
"@uppy/instagram": "0.30.1",
|
||||
"@uppy/status-bar": "0.30.1",
|
||||
"@uppy/transloadit": "0.30.1",
|
||||
"@uppy/url": "0.30.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/webcam": "0.30.1",
|
||||
"@uppy/core": "^0.30.2",
|
||||
"@uppy/dashboard": "^0.30.2",
|
||||
"@uppy/dropbox": "^0.30.2",
|
||||
"@uppy/form": "^0.30.2",
|
||||
"@uppy/google-drive": "^0.30.2",
|
||||
"@uppy/instagram": "^0.30.2",
|
||||
"@uppy/status-bar": "^0.30.2",
|
||||
"@uppy/transloadit": "^0.30.2",
|
||||
"@uppy/url": "^0.30.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"@uppy/webcam": "^0.30.2",
|
||||
"es6-promise": "4.2.5",
|
||||
"whatwg-fetch": "3.0.0"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/status-bar",
|
||||
"description": "A progress bar for Uppy, with many bells and whistles.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
@ -26,14 +26,14 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"classnames": "^2.2.6",
|
||||
"lodash.throttle": "^4.1.1",
|
||||
"preact": "^8.2.9",
|
||||
"prettier-bytes": "^1.0.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/store-default",
|
||||
"description": "The default simple object-based store for Uppy.",
|
||||
"version": "0.28.1",
|
||||
"version": "0.28.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/store-redux",
|
||||
"description": "Make Uppy use your existing Redux store.",
|
||||
"version": "0.28.1",
|
||||
"version": "0.28.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/thumbnail-generator",
|
||||
"description": "Uppy plugin that generates small previews of images to show on your upload UI.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -22,10 +22,10 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/utils": "0.30.1"
|
||||
"@uppy/utils": "^0.30.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1",
|
||||
"@uppy/core": "^0.30.2",
|
||||
"namespace-emitter": "^2.0.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/transloadit",
|
||||
"description": "The Transloadit plugin can be used to upload files to Transloadit for all kinds of processing, such as transcoding video, resizing images, zipping/unzipping, and more",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -27,15 +27,15 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/companion-client": "0.28.1",
|
||||
"@uppy/provider-views": "0.30.1",
|
||||
"@uppy/tus": "0.30.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/companion-client": "^0.28.2",
|
||||
"@uppy/provider-views": "^0.30.2",
|
||||
"@uppy/tus": "^0.30.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"component-emitter": "^1.2.1",
|
||||
"socket.io-client": "^2.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/tus",
|
||||
"description": "Resumable uploads for Uppy using Tus.io",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -22,12 +22,12 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/companion-client": "0.28.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/companion-client": "^0.28.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"tus-js-client": "1.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/url",
|
||||
"description": "The Url plugin lets users import files from the Internet. Paste any URL and it’ll be added!",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
@ -22,12 +22,12 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/companion-client": "0.28.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/companion-client": "^0.28.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"preact": "^8.2.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/utils",
|
||||
"description": "Shared utility functions for Uppy Core and plugins maintained by the Uppy team.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/webcam",
|
||||
"description": "Uppy plugin that takes photos or records videos using the device's camera.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"style": "dist/style.min.css",
|
||||
|
|
@ -26,11 +26,11 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"preact": "^8.2.9"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@uppy/xhr-upload",
|
||||
"description": "Plain and simple classic HTML multipart form uploads with Uppy, as well as uploads using the HTTP PUT method.",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "lib/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
|
|
@ -24,12 +24,12 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/companion-client": "0.28.1",
|
||||
"@uppy/utils": "0.30.1",
|
||||
"@uppy/companion-client": "^0.28.2",
|
||||
"@uppy/utils": "^0.30.2",
|
||||
"cuid": "^2.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@uppy/core": "0.30.1"
|
||||
"@uppy/core": "^0.30.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@uppy/core": "^0.30.0"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "uppy",
|
||||
"description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:",
|
||||
"version": "0.30.1",
|
||||
"version": "0.30.2",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"module": "index.mjs",
|
||||
|
|
@ -30,31 +30,31 @@
|
|||
"url": "git+https://github.com/transloadit/uppy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uppy/aws-s3": "0.30.1",
|
||||
"@uppy/aws-s3-multipart": "0.30.1",
|
||||
"@uppy/companion-client": "0.28.1",
|
||||
"@uppy/core": "0.30.1",
|
||||
"@uppy/dashboard": "0.30.1",
|
||||
"@uppy/drag-drop": "0.30.1",
|
||||
"@uppy/dropbox": "0.30.1",
|
||||
"@uppy/file-input": "0.30.1",
|
||||
"@uppy/form": "0.30.1",
|
||||
"@uppy/golden-retriever": "0.30.1",
|
||||
"@uppy/google-drive": "0.30.1",
|
||||
"@uppy/informer": "0.30.1",
|
||||
"@uppy/instagram": "0.30.1",
|
||||
"@uppy/progress-bar": "0.30.1",
|
||||
"@uppy/provider-views": "0.30.1",
|
||||
"@uppy/redux-dev-tools": "0.30.1",
|
||||
"@uppy/status-bar": "0.30.1",
|
||||
"@uppy/store-default": "0.28.1",
|
||||
"@uppy/store-redux": "0.28.1",
|
||||
"@uppy/thumbnail-generator": "0.30.1",
|
||||
"@uppy/transloadit": "0.30.1",
|
||||
"@uppy/tus": "0.30.1",
|
||||
"@uppy/url": "0.30.1",
|
||||
"@uppy/webcam": "0.30.1",
|
||||
"@uppy/xhr-upload": "0.30.1"
|
||||
"@uppy/aws-s3": "^0.30.2",
|
||||
"@uppy/aws-s3-multipart": "^0.30.2",
|
||||
"@uppy/companion-client": "^0.28.2",
|
||||
"@uppy/core": "^0.30.2",
|
||||
"@uppy/dashboard": "^0.30.2",
|
||||
"@uppy/drag-drop": "^0.30.2",
|
||||
"@uppy/dropbox": "^0.30.2",
|
||||
"@uppy/file-input": "^0.30.2",
|
||||
"@uppy/form": "^0.30.2",
|
||||
"@uppy/golden-retriever": "^0.30.2",
|
||||
"@uppy/google-drive": "^0.30.2",
|
||||
"@uppy/informer": "^0.30.2",
|
||||
"@uppy/instagram": "^0.30.2",
|
||||
"@uppy/progress-bar": "^0.30.2",
|
||||
"@uppy/provider-views": "^0.30.2",
|
||||
"@uppy/redux-dev-tools": "^0.30.2",
|
||||
"@uppy/status-bar": "^0.30.2",
|
||||
"@uppy/store-default": "^0.28.2",
|
||||
"@uppy/store-redux": "^0.28.2",
|
||||
"@uppy/thumbnail-generator": "^0.30.2",
|
||||
"@uppy/transloadit": "^0.30.2",
|
||||
"@uppy/tus": "^0.30.2",
|
||||
"@uppy/url": "^0.30.2",
|
||||
"@uppy/webcam": "^0.30.2",
|
||||
"@uppy/xhr-upload": "^0.30.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"es6-promise": "4.2.5",
|
||||
|
|
|
|||
|
|
@ -18,12 +18,12 @@ Here’s the simplest example html page with Uppy (it uses a CDN bundle, while w
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Uppy</title>
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.css" rel="stylesheet">
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div id="drag-drop-area"></div>
|
||||
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.js"></script>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.js"></script>
|
||||
<script>
|
||||
var uppy = Uppy.Core()
|
||||
.use(Uppy.Dashboard, {
|
||||
|
|
@ -112,12 +112,12 @@ You can also use a pre-built bundle from Transloadit's CDN: Edgly. `Uppy` will a
|
|||
1\. Add a script at the bottom of the closing `</body>` tag:
|
||||
|
||||
``` html
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.js"></script>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.js"></script>
|
||||
```
|
||||
|
||||
2\. Add CSS to `<head>`:
|
||||
``` html
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.css" rel="stylesheet">
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.css" rel="stylesheet">
|
||||
```
|
||||
|
||||
3\. Initialize at the bottom of the closing `</body>` tag:
|
||||
|
|
@ -168,5 +168,5 @@ If you're using Uppy via a script tag, you can load the polyfills from [JSDelivr
|
|||
```html
|
||||
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4.2.5/dist/es6-promise.auto.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/whatwg-fetch@3.0.0/dist/fetch.umd.min.js"></script>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.js"></script>
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.js"></script>
|
||||
```
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
<!-- Basic Uppy styles. You can use Transloadit's CDN, Edgly:
|
||||
https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.css -->
|
||||
https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.css -->
|
||||
<link rel="stylesheet" href="/uppy/uppy.min.css">
|
||||
|
||||
<div class="UppyDragDrop"></div>
|
||||
|
||||
<!-- Load Uppy pre-built bundled version. You can use Transloadit's CDN, Edgly:
|
||||
https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.js -->
|
||||
https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.js -->
|
||||
<script src="/uppy/uppy.min.js"></script>
|
||||
<script>
|
||||
var uppy = Uppy.Core({ debug: true, autoProceed: true });
|
||||
|
|
|
|||
|
|
@ -82,8 +82,8 @@
|
|||
<p><a href="/privacy-policy/">Privacy Policy</a></p>
|
||||
</footer>
|
||||
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.css" rel="stylesheet">
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.1/dist/uppy.min.js"></script>
|
||||
<link href="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.css" rel="stylesheet">
|
||||
<script src="https://transloadit.edgly.net/releases/uppy/v0.30.2/uppy.min.js"></script>
|
||||
|
||||
<script>
|
||||
var TUS_ENDPOINT = 'https://master.tus.io/files/'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue