Browse Source

Update static files

pull/18772/head
Enis Necipoglu 3 years ago
parent
commit
2d77f2a771
No known key found for this signature in database GPG Key ID: 1EC55E13241E1680
  1. 21
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/prismjs/LICENSE
  2. 28
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/README.md
  3. 2941
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.css
  4. 42133
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.js
  5. 513
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.js.map
  6. 56
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.legacy.min.js
  7. 7
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.legacy.min.js.map
  8. 4
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.min.css
  9. 65
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.min.js
  10. 5295
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.min.js.map
  11. 63
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.min.mjs
  12. 7
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.min.mjs.map
  13. 534
      modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock

21
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/prismjs/LICENSE

@ -0,0 +1,21 @@
MIT LICENSE
Copyright (c) 2012 Lea Verou
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

28
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/README.md

@ -1,17 +1,17 @@
# Uppy
Hi, thanks for trying out the bundled version of the Uppy File Uploader. You can use
this from a CDN (e.g. `<script src="https://releases.transloadit.com/uppy/v1.31.1/uppy.min.js"></script>`) or bundle it with your webapp.
this from a CDN (`<script src="https://releases.transloadit.com/uppy/v3.21.0/uppy.min.js"></script>`) or bundle it with your webapp.
Note that the recommended way to use Uppy is to install it with yarn/npm and use a
bundler like Webpack so that you can create a smaller custom build with just the
Note that the recommended way to use Uppy is to install it with yarn/npm and use a
bundler like Webpack so that you can create a smaller custom build with only the
things that you need. More info on <https://uppy.io/docs/#With-a-module-bundler>.
## How to use this bundle
You can extract the contents of this zip to e.g. `./js/uppy`
You can extract the contents of this zip to a directory, such as `./js/uppy`.
Now you can create an HTML file, e.g.: `./upload.html` with the following contents:
Now you can create an HTML file, for example `./upload.html`, with the following contents:
```html
<html>
@ -28,13 +28,13 @@ Now you can create an HTML file, e.g.: `./upload.html` with the following conten
</div>
</body>
<script src="./js/uppy/uppy.min.js"></script>
<script>
var uppy = Uppy.Core({
<script type="module">
import {Uppy, Dashboard, Tus} from "./js/uppy/uppy.min.mjs"
var uppy = new Uppy({
debug : true,
autoProceed: false,
})
.use(Uppy.Dashboard, {
.use(Dashboard, {
browserBackButtonClose: false,
height : 470,
inline : false,
@ -47,7 +47,7 @@ Now you can create an HTML file, e.g.: `./upload.html` with the following conten
{ id: 'caption', name: 'Caption', placeholder: 'describe what the image is about' }
]
})
.use(Uppy.Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
.use(Tus, { endpoint: 'https://tusd.tusdemo.net/files/' })
.on('upload-success', function (file, response) {
var url = response.uploadURL
var fileName = file.name
@ -62,10 +62,10 @@ Now open `upload.html` in your browser, and the Uppy Dashboard will appear.
## Next steps
In the example you just built, Uppy uploads to a demo server where files will be deleted
shortly after uploading. You'll want to target your own tusd server, S3 bucket, or Nginx/Apache server. For the latter, use the Xhr plugin: <https://uppy.io/docs/xhr-upload/> which uploads using regular multipart form posts, that you'll existing Ruby or PHP backend will be able to make sense of, just as if a `<input type="file">` had been used.
In the example you built, Uppy uploads to a demo server where files will be deleted
shortly after uploading. Youll want to target your own tusd server, S3 bucket, or Nginx/Apache server. For the latter, use the Xhr plugin: <https://uppy.io/docs/xhr-upload/> which uploads using regular multipart form posts, that youll existing Ruby or PHP backend will be able to make sense of, as if a `<input type="file">` had been used.
The Dashboard currently opens when clicking the button, but you can also draw it inline into the page. This, and many more configuration options can be found here: <https://uppy.io/docs/dashboard/>.
The Dashboard now opens when clicking the button, but you can also draw it inline into the page. This, and many more configuration options can be found here: <https://uppy.io/docs/dashboard/>.
Uppy has many more Plugins besides Xhr and the Dashboard. For example, you can enable Webcam, Instagram, or video encoding support. For a full list of Plugins check here: <https://uppy.io/docs/plugins/>.
@ -73,4 +73,4 @@ Note that for some Plugins, you will need to run a server side component called:
## Getting help
Stuck with anything? We're welcoming all your questions and feedback over at <https://community.transloadit.com/c/uppy/5>.
Stuck with anything? Were welcoming all your questions and feedback over at <https://community.transloadit.com/c/uppy/5>.

2941
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.css

File diff suppressed because it is too large

42133
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.js

File diff suppressed because one or more lines are too long

513
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.js.map

File diff suppressed because one or more lines are too long

56
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.legacy.min.js

File diff suppressed because one or more lines are too long

7
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.legacy.min.js.map

File diff suppressed because one or more lines are too long

4
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.min.css

File diff suppressed because one or more lines are too long

65
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.min.js

File diff suppressed because one or more lines are too long

5295
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.min.js.map

File diff suppressed because one or more lines are too long

63
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.min.mjs

File diff suppressed because one or more lines are too long

7
modules/cms-kit/host/Volo.CmsKit.Web.Unified/wwwroot/libs/uppy/uppy.min.mjs.map

File diff suppressed because one or more lines are too long

534
modules/cms-kit/host/Volo.CmsKit.Web.Unified/yarn.lock

@ -312,6 +312,24 @@
resolved "https://registry.yarnpkg.com/@transloadit/prettier-bytes/-/prettier-bytes-0.0.7.tgz#cdb5399f445fdd606ed833872fa0cabdbc51686b"
integrity sha512-VeJbUb0wEKbcwaSlj5n+LscBl9IPgLPkHVGBkh00cztv6X4L/TJXK58LzFuBKX7/GAfiGhIwH67YTLTlzvIzBA==
"@transloadit/prettier-bytes@0.0.9", "@transloadit/prettier-bytes@^0.0.9":
version "0.0.9"
resolved "https://registry.yarnpkg.com/@transloadit/prettier-bytes/-/prettier-bytes-0.0.9.tgz#8d3146f75fd9d3c544cb63ec7dbdeb6670d3e2d7"
integrity sha512-pCvdmea/F3Tn4hAtHqNXmjcixSaroJJ+L3STXlYJdir1g1m2mRQpWbN8a4SvgQtaw2930Ckhdx8qXdXBFMKbAA==
"@types/retry@0.12.2":
version "0.12.2"
resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.2.tgz#ed279a64fa438bb69f2480eda44937912bb7480a"
integrity sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==
"@uppy/audio@^1.1.4":
version "1.1.4"
resolved "https://registry.yarnpkg.com/@uppy/audio/-/audio-1.1.4.tgz#b2b86e2c7862cdf62bf1249f799a15dec4fcd0ad"
integrity sha512-4EWT+sNsIY0jku3QK9xgGbkiSO/pvyBmFWiOgzJZDJdSRaWhnCWfBE6br2uZPMHxB8rDWFMv79xSRXKu/Zsg/g==
dependencies:
"@uppy/utils" "^5.5.2"
preact "^10.5.13"
"@uppy/aws-s3-multipart@^1.8.18":
version "1.8.18"
resolved "https://registry.yarnpkg.com/@uppy/aws-s3-multipart/-/aws-s3-multipart-1.8.18.tgz#d0b3ede025d06b615ad3df90c3771eed38f68d87"
@ -320,6 +338,14 @@
"@uppy/companion-client" "^1.10.2"
"@uppy/utils" "^3.6.2"
"@uppy/aws-s3-multipart@^3.10.0":
version "3.10.0"
resolved "https://registry.yarnpkg.com/@uppy/aws-s3-multipart/-/aws-s3-multipart-3.10.0.tgz#545e290bddb6e12067fe60de88d79d39c2d4c876"
integrity sha512-WzMOMFwz+zDpTPgiciIguz4ANskdmNYgUdQ0mkz/8UEnwOcfncD6S9MO6nMmRPqax2C0+CugROYGUzA2t5aSWA==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/utils" "^5.7.0"
"@uppy/aws-s3@^1.8.0":
version "1.8.0"
resolved "https://registry.yarnpkg.com/@uppy/aws-s3/-/aws-s3-1.8.0.tgz#3f1ffdc01891011e6d68a9020736cf6e705ab0fb"
@ -332,6 +358,17 @@
qs-stringify "^1.1.0"
url-parse "^1.4.7"
"@uppy/aws-s3@^3.6.0":
version "3.6.0"
resolved "https://registry.yarnpkg.com/@uppy/aws-s3/-/aws-s3-3.6.0.tgz#e50c41a277bd2b1945281a9cd20622975c7edf75"
integrity sha512-CbQH+RwX2ZdZZur7kG8N+Re17PQO/TGe0Tl4kh1Lbz/Tajjg3M1vL7a0DAd9MFakIC44h27MMIUiD3sZqaOWuQ==
dependencies:
"@uppy/aws-s3-multipart" "^3.10.0"
"@uppy/companion-client" "^3.7.0"
"@uppy/utils" "^5.7.0"
"@uppy/xhr-upload" "^3.6.0"
nanoid "^4.0.0"
"@uppy/box@^0.3.12":
version "0.3.12"
resolved "https://registry.yarnpkg.com/@uppy/box/-/box-0.3.12.tgz#4da1c9e4f1aabfd63275add72c52b6727eaa3fa8"
@ -342,6 +379,16 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/box@^2.1.4", "@uppy/box@^2.2.0":
version "2.2.0"
resolved "https://registry.yarnpkg.com/@uppy/box/-/box-2.2.0.tgz#44c13627badb6835b6748e8c046d0ea57275275b"
integrity sha512-n59tcqTzYLgYMbZ3U7bUq9VUIMqifrLPu/yJOfx875jg+tjwsAVNVKN1SIlpcr2DArcd7Q1mhlPPshUWJpH47A==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/provider-views" "^3.8.0"
"@uppy/utils" "^5.7.0"
preact "^10.5.13"
"@uppy/companion-client@^1.10.2":
version "1.10.2"
resolved "https://registry.yarnpkg.com/@uppy/companion-client/-/companion-client-1.10.2.tgz#a640b3ef90b91751c49bf4b6a7a63c2ebac294f6"
@ -352,6 +399,26 @@
qs-stringify "^1.1.0"
url-parse "^1.4.7"
"@uppy/companion-client@^3.5.0", "@uppy/companion-client@^3.6.0", "@uppy/companion-client@^3.7.0":
version "3.7.0"
resolved "https://registry.yarnpkg.com/@uppy/companion-client/-/companion-client-3.7.0.tgz#74760cb5c215b70e948b279305d6192a5b56df8d"
integrity sha512-37qJNMkqo01SM9h2gkFbV6e+aXM02s2zAda2dGsRLRsjvl/Tx69NlmxJ3xqG/7HWRnYcbBWtspb7y0tt1i/afg==
dependencies:
"@uppy/utils" "^5.7.0"
namespace-emitter "^2.0.1"
p-retry "^6.1.0"
"@uppy/compressor@^1.0.5":
version "1.0.5"
resolved "https://registry.yarnpkg.com/@uppy/compressor/-/compressor-1.0.5.tgz#877093b7f8c96a290af01eaeeb783efb7df86696"
integrity sha512-OJucPmpoWVO4fd+XRExZtJAkn0u/aqFLX5mBl280L10ozoGl4tEKMaT1VpySQEhDDtdZq7+N5hb+F7Vb3S9bIg==
dependencies:
"@transloadit/prettier-bytes" "^0.0.9"
"@uppy/utils" "^5.5.2"
compressorjs "^1.1.1"
preact "^10.5.13"
promise-queue "^2.2.5"
"@uppy/core@^1.20.1":
version "1.20.1"
resolved "https://registry.yarnpkg.com/@uppy/core/-/core-1.20.1.tgz#23ca28d4388c29987fdc4e65a968474dcdc303c6"
@ -366,6 +433,20 @@
namespace-emitter "^2.0.1"
preact "8.2.9"
"@uppy/core@^3.8.0":
version "3.8.0"
resolved "https://registry.yarnpkg.com/@uppy/core/-/core-3.8.0.tgz#2697c48aab5ec777a86440237da939d7ff0ffe5d"
integrity sha512-C93vVhid929+VLGjaD9CZOLJDg8GkEGMUGveFp3Tyo/wujiG+sB3fOF+c6TzKpzPLfNtVpskU1BnI7tZrq1LWw==
dependencies:
"@transloadit/prettier-bytes" "0.0.9"
"@uppy/store-default" "^3.2.0"
"@uppy/utils" "^5.7.0"
lodash "^4.17.21"
mime-match "^1.0.2"
namespace-emitter "^2.0.1"
nanoid "^4.0.0"
preact "^10.5.13"
"@uppy/dashboard@^1.21.1":
version "1.21.1"
resolved "https://registry.yarnpkg.com/@uppy/dashboard/-/dashboard-1.21.1.tgz#c920d3af69b61413ef109608dde9b12d3c8a434b"
@ -386,6 +467,24 @@
preact "8.2.9"
resize-observer-polyfill "^1.5.0"
"@uppy/dashboard@^3.6.0", "@uppy/dashboard@^3.7.1":
version "3.7.1"
resolved "https://registry.yarnpkg.com/@uppy/dashboard/-/dashboard-3.7.1.tgz#74dfb0ad69341b00676676f313fbfbaca6704b10"
integrity sha512-qtCMXd2Ymrw0qNGSTlEEMyyDkGUCm+wX5/VrmV9lnfT7JtlSfotUK0K6KvkBeu2v1Chsu27C6Xlq6RddZMR2xQ==
dependencies:
"@transloadit/prettier-bytes" "0.0.7"
"@uppy/informer" "^3.0.4"
"@uppy/provider-views" "^3.7.0"
"@uppy/status-bar" "^3.2.5"
"@uppy/thumbnail-generator" "^3.0.6"
"@uppy/utils" "^5.6.0"
classnames "^2.2.6"
is-shallow-equal "^1.0.1"
lodash "^4.17.21"
memoize-one "^6.0.0"
nanoid "^4.0.0"
preact "^10.5.13"
"@uppy/drag-drop@^1.4.31":
version "1.4.31"
resolved "https://registry.yarnpkg.com/@uppy/drag-drop/-/drag-drop-1.4.31.tgz#fe342e2d653c8454c8dd9be1e95dbed5726772a6"
@ -394,6 +493,14 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/drag-drop@^3.0.3":
version "3.0.3"
resolved "https://registry.yarnpkg.com/@uppy/drag-drop/-/drag-drop-3.0.3.tgz#9cd67d683d30f8d4ddebb41ebc4bb941278e5df3"
integrity sha512-0bCgQKxg+9vkxQipTgrX9yQIuK9a0hZrkipm1+Ynq6jTeig49b7II1bWYnoKdiYhi6nRE4UnDJf4z09yCAU7rA==
dependencies:
"@uppy/utils" "^5.4.3"
preact "^10.5.13"
"@uppy/drop-target@^0.2.4":
version "0.2.4"
resolved "https://registry.yarnpkg.com/@uppy/drop-target/-/drop-target-0.2.4.tgz#92e4ffa0d34781a37760e98850262c14b8718c2d"
@ -401,6 +508,13 @@
dependencies:
"@uppy/utils" "^3.6.2"
"@uppy/drop-target@^2.0.2":
version "2.0.2"
resolved "https://registry.yarnpkg.com/@uppy/drop-target/-/drop-target-2.0.2.tgz#dbc1686b4425e108694aee6ed547ed60e47afe6b"
integrity sha512-tlvO1hn/2UFmnEvuXHDgqAsKKofHNI2y39cQ8cVsMo8D5wOJ0WdqCYmXnJmmvLXTQ7splmJAdlnPwowXz0AD8w==
dependencies:
"@uppy/utils" "^5.5.2"
"@uppy/dropbox@^1.5.2":
version "1.5.2"
resolved "https://registry.yarnpkg.com/@uppy/dropbox/-/dropbox-1.5.2.tgz#aed0455fadfa21014e78ea70934b09af34a5afa7"
@ -411,6 +525,16 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/dropbox@^3.1.4", "@uppy/dropbox@^3.2.0":
version "3.2.0"
resolved "https://registry.yarnpkg.com/@uppy/dropbox/-/dropbox-3.2.0.tgz#34268c8b85d77272bfc60d21f7e489847eb50c90"
integrity sha512-gJ3516kmG3Ogg92GyevKh26W4ByNzTEEZsf+vQe/InaPsdxZcuJKq7vRlGn9z6xMu5gisSX32z1YzGgjSNAtFw==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/provider-views" "^3.8.0"
"@uppy/utils" "^5.7.0"
preact "^10.5.13"
"@uppy/facebook@^1.2.2":
version "1.2.2"
resolved "https://registry.yarnpkg.com/@uppy/facebook/-/facebook-1.2.2.tgz#c0a8467e053cb0d741133fb20fc0c04bc3c8e8a1"
@ -421,6 +545,16 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/facebook@^3.1.3", "@uppy/facebook@^3.2.0":
version "3.2.0"
resolved "https://registry.yarnpkg.com/@uppy/facebook/-/facebook-3.2.0.tgz#7fc9f59e26ae938b7a295bd0265fc9b44fd67073"
integrity sha512-G2VWV/IrFV1M5pAD3o6tqo3hmtkbCgLbIUxOtRzvcPfKFDLAkjURQPUbsr0sgSjbot7FgAYWRwb5lmbLh5Szjg==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/provider-views" "^3.8.0"
"@uppy/utils" "^5.7.0"
preact "^10.5.13"
"@uppy/file-input@^1.5.2":
version "1.5.2"
resolved "https://registry.yarnpkg.com/@uppy/file-input/-/file-input-1.5.2.tgz#0f9797ae9053946ba16d73ee2606c69afc64b872"
@ -429,6 +563,14 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/file-input@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@uppy/file-input/-/file-input-3.0.4.tgz#b47e6e6f30491c2e20ac03378dc136f49838e663"
integrity sha512-D7Nw9GgpABYTcC8SZluDyxd+ppe7+gJejNbPZqMpQyW1S/ME3me55dkDQaVWn8yrgv7347zO2ciue9Rfmko+rQ==
dependencies:
"@uppy/utils" "^5.5.2"
preact "^10.5.13"
"@uppy/form@^1.3.31":
version "1.3.31"
resolved "https://registry.yarnpkg.com/@uppy/form/-/form-1.3.31.tgz#13b3537d2fb8b62ed3186e2190da85261dbf11af"
@ -437,6 +579,14 @@
"@uppy/utils" "^3.6.2"
get-form-data "^2.0.0"
"@uppy/form@^3.0.3":
version "3.0.3"
resolved "https://registry.yarnpkg.com/@uppy/form/-/form-3.0.3.tgz#615863454e3b5936f2cbd7ccf092fe07aa7ad7e6"
integrity sha512-Wwljh1v3/EcBunU9CYJ7riVfnCLBiCBau4W9/SHoxZLvULDieSuinqH9PEebaPZ/C/Lf4Thl2DCJRxyHxHP1hw==
dependencies:
"@uppy/utils" "^5.5.2"
get-form-data "^3.0.0"
"@uppy/golden-retriever@^1.4.2":
version "1.4.2"
resolved "https://registry.yarnpkg.com/@uppy/golden-retriever/-/golden-retriever-1.4.2.tgz#ff994721a391db23f6229c4dfedeaf3f9a6c4660"
@ -446,6 +596,15 @@
"@uppy/utils" "^3.6.2"
lodash.throttle "^4.1.1"
"@uppy/golden-retriever@^3.1.1":
version "3.1.1"
resolved "https://registry.yarnpkg.com/@uppy/golden-retriever/-/golden-retriever-3.1.1.tgz#98c03264f34ba559561d51d01669f204e26201f5"
integrity sha512-wm/f54ubMH26XOi1oQj7g5T9VcTt1XikfIy6w5VuVB3WvK/AigiMFOBGCb8jyhRXj2FTYObneClsQsaF9thJvQ==
dependencies:
"@transloadit/prettier-bytes" "0.0.9"
"@uppy/utils" "^5.5.2"
lodash "^4.17.21"
"@uppy/google-drive@^1.7.2":
version "1.7.2"
resolved "https://registry.yarnpkg.com/@uppy/google-drive/-/google-drive-1.7.2.tgz#59869c965de9c197aa052cfda3f885df1f9f96c4"
@ -456,6 +615,16 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/google-drive@^3.3.0", "@uppy/google-drive@^3.4.0":
version "3.4.0"
resolved "https://registry.yarnpkg.com/@uppy/google-drive/-/google-drive-3.4.0.tgz#00f930a4e252e2a2efed96b4e14b07bce7224a2b"
integrity sha512-QqWNaIi9VYap7hjFA34f0p47/dKylOyzwkF1nKl5REtLG5t0e99gOfQpTYEc7cUBvEqiOB3EipXmrVyDvBNqMA==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/provider-views" "^3.8.0"
"@uppy/utils" "^5.7.0"
preact "^10.5.13"
"@uppy/image-editor@^0.4.0":
version "0.4.0"
resolved "https://registry.yarnpkg.com/@uppy/image-editor/-/image-editor-0.4.0.tgz#43f1347cf65fb188f34fe01e9861838c4d29f3de"
@ -465,6 +634,15 @@
cropperjs "1.5.7"
preact "8.2.9"
"@uppy/image-editor@^2.4.0":
version "2.4.0"
resolved "https://registry.yarnpkg.com/@uppy/image-editor/-/image-editor-2.4.0.tgz#d1ba54ca1bc7a72d58e681fee60e97c971bec5d5"
integrity sha512-X6isSLmtZEHhWgeK/juD1TG5D3Z0DdZ2AwdOZNGQQbznVL8y1bH10J9MVnnkmwYyWhsaUopE2tAcYCqZAVCZ+w==
dependencies:
"@uppy/utils" "^5.7.0"
cropperjs "1.5.7"
preact "^10.5.13"
"@uppy/informer@^1.6.6":
version "1.6.6"
resolved "https://registry.yarnpkg.com/@uppy/informer/-/informer-1.6.6.tgz#94090ab74997f10c2a2151c04b1c75484bdfe7eb"
@ -473,6 +651,14 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/informer@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@uppy/informer/-/informer-3.0.4.tgz#dc8cfd870135caead5975b3357c043cc442732ab"
integrity sha512-gzocdxn8qAFsW2EryehwjghladaBgv6Isjte53FTBV7o/vjaHPP6huKGbYpljyuQi8i9V+KrmvNGslofssgJ4g==
dependencies:
"@uppy/utils" "^5.5.2"
preact "^10.5.13"
"@uppy/instagram@^1.5.2":
version "1.5.2"
resolved "https://registry.yarnpkg.com/@uppy/instagram/-/instagram-1.5.2.tgz#6141457e3d0b2fb5812d5c49b808d430cd66dd33"
@ -483,6 +669,16 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/instagram@^3.1.3", "@uppy/instagram@^3.2.0":
version "3.2.0"
resolved "https://registry.yarnpkg.com/@uppy/instagram/-/instagram-3.2.0.tgz#f5a48c4bf94430881e285514aa8c6d578b9087d7"
integrity sha512-KmSi/Frn1WNHTu6zQA0GwAJuy4K8JopuYg16jjy02imq8H5szG/dTC2lr6wxsfhXGzOGvX0/x9oLUFC6ipD9dg==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/provider-views" "^3.8.0"
"@uppy/utils" "^5.7.0"
preact "^10.5.13"
"@uppy/onedrive@^1.2.2":
version "1.2.2"
resolved "https://registry.yarnpkg.com/@uppy/onedrive/-/onedrive-1.2.2.tgz#476872b02775521d78f0d3649efec5221ddae817"
@ -493,6 +689,16 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/onedrive@^3.1.4", "@uppy/onedrive@^3.2.0":
version "3.2.0"
resolved "https://registry.yarnpkg.com/@uppy/onedrive/-/onedrive-3.2.0.tgz#52639303fab1ae9e6ee09bc50ea2e7f1b775891a"
integrity sha512-VsAcWUAi6T+V0KxB5PyxTIT3c/bYGlAWWIDZTD+a4zkmgf7wDMozd5ww8NTMUHBjssrv+TVLVXgc06e0b++0gA==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/provider-views" "^3.8.0"
"@uppy/utils" "^5.7.0"
preact "^10.5.13"
"@uppy/progress-bar@^1.3.30":
version "1.3.30"
resolved "https://registry.yarnpkg.com/@uppy/progress-bar/-/progress-bar-1.3.30.tgz#5bdbc8aab782df15def535c6be47d45ca07964da"
@ -501,6 +707,14 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/progress-bar@^3.0.4":
version "3.0.4"
resolved "https://registry.yarnpkg.com/@uppy/progress-bar/-/progress-bar-3.0.4.tgz#3e684a77cb8b38ff227dbd06045a5f8dd74d5771"
integrity sha512-sxv/mG7Uc9uyTnRvfcXBhO+TWd+UqjuW5aHXCKWwTkMgDShHR0T46sEk12q+jwgbFwyeFg3p0GU3hgUxqxiEUQ==
dependencies:
"@uppy/utils" "^5.5.2"
preact "^10.5.13"
"@uppy/provider-views@^1.12.3":
version "1.12.3"
resolved "https://registry.yarnpkg.com/@uppy/provider-views/-/provider-views-1.12.3.tgz#aecfed615bc174abc548539a3c17b39e455aed0e"
@ -510,11 +724,43 @@
classnames "^2.2.6"
preact "8.2.9"
"@uppy/provider-views@^3.6.0", "@uppy/provider-views@^3.7.0", "@uppy/provider-views@^3.8.0":
version "3.8.0"
resolved "https://registry.yarnpkg.com/@uppy/provider-views/-/provider-views-3.8.0.tgz#531c82a383052f345b85b171b1fb6187afb959b9"
integrity sha512-sTtx5bgsg2WVR+MyF0gnnM3Z7g3CyFx+Stlz//AvB6g27EMqtqO4zwDR3mestMrETkWYov5bhhqUbt2BaeANpA==
dependencies:
"@uppy/utils" "^5.7.0"
classnames "^2.2.6"
nanoid "^4.0.0"
p-queue "^7.3.4"
preact "^10.5.13"
"@uppy/redux-dev-tools@^1.3.9":
version "1.3.9"
resolved "https://registry.yarnpkg.com/@uppy/redux-dev-tools/-/redux-dev-tools-1.3.9.tgz#987020ff58bbe8f2093e8cd4b66aeded7c06d62d"
integrity sha512-OVugq1AbIZ89nRifl5suv7AiC2uE5Ot4QbaTgoS8l0DwMMRpYKYAOc904Wj9F9cTZhaUBXEmTqKlZgL9NVK3FQ==
"@uppy/redux-dev-tools@^3.0.3":
version "3.0.3"
resolved "https://registry.yarnpkg.com/@uppy/redux-dev-tools/-/redux-dev-tools-3.0.3.tgz#e5bebd0397b551c93e90f97e1c8db8dbb6e8f683"
integrity sha512-WwAF+Yp+C3k0tbeLN+AnQDsZZsSpbt0nPUyCTtvUrGXK4p05tI8vEFheVmChgZKud038nZ/ULPGsKNFmuOm81Q==
"@uppy/remote-sources@^1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@uppy/remote-sources/-/remote-sources-1.1.0.tgz#e26cc0d0582dd95a9ec54213419491ea8b1c39ee"
integrity sha512-OHLoNafZAfDzGHOr3RRxapih0HifUFNMWNorP7W5qf0Khrf2PSs7hLQTu+SG/akCrZLzlBt8ooBUISmEwGs46g==
dependencies:
"@uppy/box" "^2.1.4"
"@uppy/dashboard" "^3.6.0"
"@uppy/dropbox" "^3.1.4"
"@uppy/facebook" "^3.1.3"
"@uppy/google-drive" "^3.3.0"
"@uppy/instagram" "^3.1.3"
"@uppy/onedrive" "^3.1.4"
"@uppy/unsplash" "^3.2.3"
"@uppy/url" "^3.3.4"
"@uppy/zoom" "^2.1.3"
"@uppy/screen-capture@^1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@uppy/screen-capture/-/screen-capture-1.1.0.tgz#adbf3378ae35dc4548cdaac9a1b9139ce082ccee"
@ -523,6 +769,14 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/screen-capture@^3.1.3":
version "3.1.3"
resolved "https://registry.yarnpkg.com/@uppy/screen-capture/-/screen-capture-3.1.3.tgz#b4063ca941b336b897fc6f1c3e7f871ac22b82c0"
integrity sha512-vCIlTuATxK3U4z0ZUe1qXqmYFdzLabdEUi0voiIM7llyJ1M59Q3wh1C9a6cDxy1SyxK+fCPB6heHwzscKl9g2A==
dependencies:
"@uppy/utils" "^5.5.2"
preact "^10.5.13"
"@uppy/status-bar@^1.9.6":
version "1.9.6"
resolved "https://registry.yarnpkg.com/@uppy/status-bar/-/status-bar-1.9.6.tgz#a04f699444fc7f156c260e5b7c001125e5190a5f"
@ -534,11 +788,26 @@
lodash.throttle "^4.1.1"
preact "8.2.9"
"@uppy/status-bar@^3.2.5":
version "3.2.5"
resolved "https://registry.yarnpkg.com/@uppy/status-bar/-/status-bar-3.2.5.tgz#7ded2e8b4456fa369bc5b679b26ce12427fee556"
integrity sha512-bRSxBPio5B+Kuf6w8ll+/i9VUwG8f0FnbZ1yQvCr8J9vxhd0Z5hvwhX4NP8uzHC6ZPJHlEQOTsxzGQ6y+Mdm0A==
dependencies:
"@transloadit/prettier-bytes" "0.0.9"
"@uppy/utils" "^5.5.2"
classnames "^2.2.6"
preact "^10.5.13"
"@uppy/store-default@^1.2.7":
version "1.2.7"
resolved "https://registry.yarnpkg.com/@uppy/store-default/-/store-default-1.2.7.tgz#41a0b1579f4d5b86c236e7f5e52fdc01960bb011"
integrity sha512-58IG9yk/i/kYQ9uEwAwMFl1H2V3syOoODrYoFfVHlxaqv+9MkXBg2tHE2gk40iaAIxcCErcPxZkBOvkqzO1SQA==
"@uppy/store-default@^3.2.0":
version "3.2.0"
resolved "https://registry.yarnpkg.com/@uppy/store-default/-/store-default-3.2.0.tgz#1f65206126f80e52bfa1de1ca1e58724cf2b47f8"
integrity sha512-Y7t0peUG89ZKa30vM4qlRIC6uKxIfOANeMT9Nzjwcxvzz8l7es22jG3eAj9WF2F7YSu7xdsH8ODs6SIrJJ8gow==
"@uppy/store-redux@^1.2.8":
version "1.2.8"
resolved "https://registry.yarnpkg.com/@uppy/store-redux/-/store-redux-1.2.8.tgz#baef9eed933b316cd2d79478a239cd5a5c8b9a85"
@ -546,6 +815,13 @@
dependencies:
cuid "^2.1.1"
"@uppy/store-redux@^3.0.5":
version "3.0.5"
resolved "https://registry.yarnpkg.com/@uppy/store-redux/-/store-redux-3.0.5.tgz#9942b29ad53d472b4a235d84581cd6d3856b7d49"
integrity sha512-NoXQnB+sPwRv9VZ8gPrEyNaUZSyiGvirm7c1DPzx3AgZ6S1geJ3UV5Mdr+7dnAM7Q/NHZ3Tq9qlDTP2UCwoo6Q==
dependencies:
nanoid "^4.0.0"
"@uppy/thumbnail-generator@^1.7.11":
version "1.7.11"
resolved "https://registry.yarnpkg.com/@uppy/thumbnail-generator/-/thumbnail-generator-1.7.11.tgz#c6f49be90469f220a419ac43c129bf835cc11c41"
@ -555,6 +831,14 @@
exifr "^6.0.0"
math-log2 "^1.0.1"
"@uppy/thumbnail-generator@^3.0.6":
version "3.0.6"
resolved "https://registry.yarnpkg.com/@uppy/thumbnail-generator/-/thumbnail-generator-3.0.6.tgz#9718fa9b4c1561cdf04bc4a7a5ac92c0289fcbfa"
integrity sha512-gsi/BQBiunHneXCbo8VglFbhEb0CoQXQjCyGNKoEq/deEcbXhBBDxkiGcgv83l5GZJl2jLiKWqXnXAXREkldrQ==
dependencies:
"@uppy/utils" "^5.5.2"
exifr "^7.0.0"
"@uppy/transloadit@^1.7.0":
version "1.7.0"
resolved "https://registry.yarnpkg.com/@uppy/transloadit/-/transloadit-1.7.0.tgz#39393afd71be47e0f6363618222f3cd0c82f9412"
@ -568,6 +852,17 @@
socket.io-client "~2.2.0"
url-parse "^1.4.7"
"@uppy/transloadit@^3.4.0":
version "3.4.0"
resolved "https://registry.yarnpkg.com/@uppy/transloadit/-/transloadit-3.4.0.tgz#a79e21a0a844f23b5dca0b8f0da5840f51240936"
integrity sha512-Ug7UuZYWMpL8eb5kaj/SxtUxg26JksV6M8LFvr0UVGooKrJd5pvybBJ/fihLs33s/HHreLjtvwCfBYBdmSl+GA==
dependencies:
"@uppy/companion-client" "^3.6.0"
"@uppy/provider-views" "^3.7.0"
"@uppy/tus" "^3.4.0"
"@uppy/utils" "^5.6.0"
component-emitter "^1.2.1"
"@uppy/tus@^1.9.2":
version "1.9.2"
resolved "https://registry.yarnpkg.com/@uppy/tus/-/tus-1.9.2.tgz#d6e4fa715bc386daa8e7be6e80eb93e4f2abb46e"
@ -577,6 +872,15 @@
"@uppy/utils" "^3.6.2"
tus-js-client "^2.1.1"
"@uppy/tus@^3.4.0", "@uppy/tus@^3.5.0":
version "3.5.0"
resolved "https://registry.yarnpkg.com/@uppy/tus/-/tus-3.5.0.tgz#e40ac1c139db5f22a54d5b4bbe556471140bd3dd"
integrity sha512-rz+zYA6U0NskO+w/+lVMZdM5aMABAgg5z/OnVYyj1Shzg+8t39Uujy+JRAjfnJmEQ20AHKW/1sixVffzS8M8Vg==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/utils" "^5.7.0"
tus-js-client "^3.0.0"
"@uppy/unsplash@^0.1.13":
version "0.1.13"
resolved "https://registry.yarnpkg.com/@uppy/unsplash/-/unsplash-0.1.13.tgz#e8c3a0d70f098f525a740f0e634a53b8419f2f60"
@ -587,6 +891,16 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/unsplash@^3.2.3":
version "3.2.3"
resolved "https://registry.yarnpkg.com/@uppy/unsplash/-/unsplash-3.2.3.tgz#050615c12cfcc7135aa4100882e7d24e74bb0bc3"
integrity sha512-+3ubnrACFO0kqnYGOCZQXKPcl6WJaj4GouXdnn+c6axgYQrMNUQMrMeGGTRx/pvKAm8qWY4y8LEv+UjJMIHpKw==
dependencies:
"@uppy/companion-client" "^3.5.0"
"@uppy/provider-views" "^3.6.0"
"@uppy/utils" "^5.5.2"
preact "^10.5.13"
"@uppy/url@^1.5.23":
version "1.5.23"
resolved "https://registry.yarnpkg.com/@uppy/url/-/url-1.5.23.tgz#08622157fa124fc62bab2014a1bc9c712d5b2625"
@ -596,6 +910,16 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/url@^3.3.4", "@uppy/url@^3.5.0":
version "3.5.0"
resolved "https://registry.yarnpkg.com/@uppy/url/-/url-3.5.0.tgz#264f4b4303ffbf85cc0c5c0a70b861d77a278167"
integrity sha512-uNdfe0OLAtkrDlL9fwLN+zo/sQl01StEsaytT/JrhK4Hdw/15KYiTmmMbDGBdSSpDoKC54wuebSpR+c8KKC2EA==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/utils" "^5.7.0"
nanoid "^4.0.0"
preact "^10.5.13"
"@uppy/utils@^3.6.2":
version "3.6.2"
resolved "https://registry.yarnpkg.com/@uppy/utils/-/utils-3.6.2.tgz#78b02455b9c469d927d22736be5b68cda2600826"
@ -604,6 +928,14 @@
abortcontroller-polyfill "^1.4.0"
lodash.throttle "^4.1.1"
"@uppy/utils@^5.4.3", "@uppy/utils@^5.5.2", "@uppy/utils@^5.6.0", "@uppy/utils@^5.7.0":
version "5.7.0"
resolved "https://registry.yarnpkg.com/@uppy/utils/-/utils-5.7.0.tgz#763c0f0d88eb15f457278713d6d676c1b58109c9"
integrity sha512-AJj7gAx5YfMgyevwOxVdIP2h4Nw/O6h57wKA6gj+Lce6tMORcqzGt4yQiKBsrBI0bPyFWCbzA3vX5t0//1JCBA==
dependencies:
lodash "^4.17.21"
preact "^10.5.13"
"@uppy/webcam@^1.8.13":
version "1.8.13"
resolved "https://registry.yarnpkg.com/@uppy/webcam/-/webcam-1.8.13.tgz#33a6d8c771c6b589eafee94eec8ed854a435c39d"
@ -612,6 +944,15 @@
"@uppy/utils" "^3.6.2"
preact "8.2.9"
"@uppy/webcam@^3.3.4":
version "3.3.4"
resolved "https://registry.yarnpkg.com/@uppy/webcam/-/webcam-3.3.4.tgz#501667402a27d4b2f861437734422ae37e8a1828"
integrity sha512-K6YQTxjj7wlYQas8RbNPxyXPsKVOKx06oy5hHJIax3rKfXwaKz86dIK1Vc+WHwX/aHxc4z7YQyU+A2dwa++tZg==
dependencies:
"@uppy/utils" "^5.5.2"
is-mobile "^3.1.1"
preact "^10.5.13"
"@uppy/xhr-upload@^1.7.5":
version "1.7.5"
resolved "https://registry.yarnpkg.com/@uppy/xhr-upload/-/xhr-upload-1.7.5.tgz#990ba3e698503bd51534a59fd426096e37ef942b"
@ -621,6 +962,25 @@
"@uppy/utils" "^3.6.2"
cuid "^2.1.1"
"@uppy/xhr-upload@^3.6.0":
version "3.6.0"
resolved "https://registry.yarnpkg.com/@uppy/xhr-upload/-/xhr-upload-3.6.0.tgz#ef33c75d4830540c8045dd611ef0f64dbfa5ca0e"
integrity sha512-HgWr+CvJzJXAp639AiZatdEWmRdhhN5LrjTZurAkvm9nPQarpi1bo0DChO+1bpkXWOR/1VarBbZOr8lNecEn7Q==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/utils" "^5.7.0"
nanoid "^4.0.0"
"@uppy/zoom@^2.1.3", "@uppy/zoom@^2.2.0":
version "2.2.0"
resolved "https://registry.yarnpkg.com/@uppy/zoom/-/zoom-2.2.0.tgz#5e05f2f9998d899d44299f8e049c2aab8ec4f9a8"
integrity sha512-+UTfuFicCFaBsp7SiJVJ7O+YJSxz1g83AJ/ZL6zQAq2HWw/jT0GF/Ttb+f40nauJ6vMLrIbucOJZEWSj42Im8Q==
dependencies:
"@uppy/companion-client" "^3.7.0"
"@uppy/provider-views" "^3.8.0"
"@uppy/utils" "^5.7.0"
preact "^10.5.13"
abortcontroller-polyfill@^1.4.0:
version "1.7.5"
resolved "https://registry.yarnpkg.com/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz#6738495f4e901fbb57b6c0611d0c75f76c485bed"
@ -857,6 +1217,11 @@ blob@0.0.5:
resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683"
integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig==
blueimp-canvas-to-blob@^3.29.0:
version "3.29.0"
resolved "https://registry.yarnpkg.com/blueimp-canvas-to-blob/-/blueimp-canvas-to-blob-3.29.0.tgz#d965f06cb1a67fdae207a2be56683f55ef531466"
integrity sha512-0pcSSGxC0QxT+yVkivxIqW0Y4VlO2XSDPofBAqoJ1qJxgH9eiUDLv50Rixij2cDuEfx4M6DpD9UGZpRhT5Q8qg==
bootstrap-datepicker@^1.9.0:
version "1.9.0"
resolved "https://registry.yarnpkg.com/bootstrap-datepicker/-/bootstrap-datepicker-1.9.0.tgz#e4bfce3fcce1967876b21dc6833ec5994aaed090"
@ -1087,6 +1452,14 @@ component-inherit@0.0.3:
resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143"
integrity sha512-w+LhYREhatpVqTESyGFg3NlP6Iu0kEKUHETY9GoZP/pQyW4mHFZuFWRUCIqVPZ36ueVLtoOEZaAqbCF2RDndaA==
compressorjs@^1.1.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/compressorjs/-/compressorjs-1.2.1.tgz#4dee18ef5032f8166bd0a3258f045eda2cd07671"
integrity sha512-+geIjeRnPhQ+LLvvA7wxBQE5ddeLU7pJ3FsKFWirDw6veY3s9iLxAQEw7lXGHnhCJvBujEQWuNnGzZcvCvdkLQ==
dependencies:
blueimp-canvas-to-blob "^3.29.0"
is-blob "^2.1.0"
concat-map@0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
@ -1335,11 +1708,21 @@ es6-weak-map@^2.0.1:
es6-iterator "^2.0.3"
es6-symbol "^3.1.1"
eventemitter3@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4"
integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==
exifr@^6.0.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/exifr/-/exifr-6.3.0.tgz#ba6a49c0a30372a969d109684e1cd8450a05ba43"
integrity sha512-NCSOP15py+4QyvD90etFN0QOVj12ygVE8kfEDG8GDc+SXf9YAOxua2x5kGp6WvxbGjufA5C3r/1ZKHOpHbEWFg==
exifr@^7.0.0:
version "7.1.3"
resolved "https://registry.yarnpkg.com/exifr/-/exifr-7.1.3.tgz#f6218012c36dbb7d843222011b27f065fddbab6f"
integrity sha512-g/aje2noHivrRSLbAUtBPWFbxKdKhgj/xr1vATDdUXPOFYJlQ62Ft0oy+72V6XLIpDJfHs6gXLbBLAolqOXYRw==
expand-brackets@^2.1.4:
version "2.1.4"
resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
@ -1550,6 +1933,11 @@ get-form-data@^2.0.0:
resolved "https://registry.yarnpkg.com/get-form-data/-/get-form-data-2.0.0.tgz#f211018ea617cc54678522235f0e2a9025d89411"
integrity sha512-YUpw0aTWeGliifqMYrTohe/YdqVmKLmaNwuscd2WlRNGfba57JHGuuvvv2c6LiZdFys285POVWANTh6SqcwFag==
get-form-data@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/get-form-data/-/get-form-data-3.0.0.tgz#7abbf0e75e5ff155f75ba26eadeb9a4d70bf95dc"
integrity sha512-1d53Kn08wlPuLu31/boF1tW2WRYKw3xAWae3mqcjqpDjoqVBtXolbQnudbbEFyFWL7+2SLGRAFdotxNY06V7MA==
get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f"
@ -1652,6 +2040,11 @@ graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6:
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
graceful-fs@^4.2.4:
version "4.2.11"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
gulp-cli@^2.2.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/gulp-cli/-/gulp-cli-2.3.0.tgz#ec0d380e29e52aa45e47977f0d32e18fd161122f"
@ -1834,6 +2227,11 @@ is-binary-path@^1.0.0:
dependencies:
binary-extensions "^1.0.0"
is-blob@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-blob/-/is-blob-2.1.0.tgz#e36cd82c90653f1e1b930f11baf9c64216a05385"
integrity sha512-SZ/fTft5eUhQM6oF/ZaASFDEdbFVe89Imltn9uZr03wdKMcWNVYSMjQPFtg05QuNkt5l5c135ElvXEQG0rk4tw==
is-buffer@^1.1.5:
version "1.1.6"
resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
@ -1916,11 +2314,21 @@ is-glob@^4.0.0:
dependencies:
is-extglob "^2.1.1"
is-mobile@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/is-mobile/-/is-mobile-3.1.1.tgz#3b9e48f40068e4ea2da411f5009779844ce8d6aa"
integrity sha512-RRoXXR2HNFxNkUnxtaBdGBXtFlUMFa06S0NUKf/LCF+MuGLu13gi9iBCkoEmc6+rpXuwi5Mso5V8Zf7mNynMBQ==
is-negated-glob@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2"
integrity sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==
is-network-error@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-network-error/-/is-network-error-1.0.1.tgz#a68061a20387e9144e145571bea693056a370b92"
integrity sha512-OwQXkwBJeESyhFw+OumbJVD58BFBJJI5OM5S1+eyrDKlgDZPX2XNT5gXS56GSD3NPbbwUuMlR1Q71SRp5SobuQ==
is-number@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
@ -2051,6 +2459,11 @@ js-base64@^2.6.1:
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4"
integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==
js-base64@^3.7.2:
version "3.7.5"
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-3.7.5.tgz#21e24cf6b886f76d6f5f165bfcd69cc55b9e3fca"
integrity sha512-3MEt5DTINKqfScXKfJFrRbxkrnk2AxPWGBL/ycjz4dK8iqiSJ06UxD8jh8xuh6p10TX4t2+7FsBYVxxQbMg+qA==
json-stable-stringify-without-jsonify@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
@ -2262,6 +2675,11 @@ memoize-one@^5.0.4:
resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-5.2.1.tgz#8337aa3c4335581839ec01c3d594090cebe8f00e"
integrity sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==
memoize-one@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/memoize-one/-/memoize-one-6.0.0.tgz#b2591b871ed82948aee4727dc6abceeeac8c1045"
integrity sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==
merge-stream@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
@ -2341,6 +2759,11 @@ nan@^2.12.1:
resolved "https://registry.yarnpkg.com/nan/-/nan-2.17.0.tgz#c0150a2368a182f033e9aa5195ec76ea41a199cb"
integrity sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==
nanoid@^4.0.0:
version "4.0.2"
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-4.0.2.tgz#140b3c5003959adbebf521c170f282c5e7f9fb9e"
integrity sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==
nanomatch@^1.2.9:
version "1.2.13"
resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
@ -2487,6 +2910,28 @@ os-locale@^1.4.0:
dependencies:
lcid "^1.0.0"
p-queue@^7.3.4:
version "7.4.1"
resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-7.4.1.tgz#7f86f853048beca8272abdbb7cec1ed2afc0f265"
integrity sha512-vRpMXmIkYF2/1hLBKisKeVYJZ8S2tZ0zEAmIJgdVKP2nq0nh4qCdf8bgw+ZgKrkh71AOCaqzwbJJk1WtdcF3VA==
dependencies:
eventemitter3 "^5.0.1"
p-timeout "^5.0.2"
p-retry@^6.1.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-6.2.0.tgz#8d6df01af298750009691ce2f9b3ad2d5968f3bd"
integrity sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==
dependencies:
"@types/retry" "0.12.2"
is-network-error "^1.0.0"
retry "^0.13.1"
p-timeout@^5.0.2:
version "5.1.0"
resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-5.1.0.tgz#b3c691cf4415138ce2d9cfe071dba11f0fee085b"
integrity sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==
parse-filepath@^1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891"
@ -2607,6 +3052,11 @@ preact@8.2.9:
resolved "https://registry.yarnpkg.com/preact/-/preact-8.2.9.tgz#813ba9dd45e5d97c5ea0d6c86d375b3be711cc40"
integrity sha512-ThuGXBmJS3VsT+jIP+eQufD3L8pRw/PY3FoCys6O9Pu6aF12Pn9zAJDX99TfwRAFOCEKm/P0lwiPTbqKMJp0fA==
preact@^10.5.13:
version "10.19.3"
resolved "https://registry.yarnpkg.com/preact/-/preact-10.19.3.tgz#7a7107ed2598a60676c943709ea3efb8aaafa899"
integrity sha512-nHHTeFVBTHRGxJXKkKu5hT8C/YWBkPso4/Gad6xuj5dbptt9iF9NZr9pHbPhBrnT2klheu7mHTxTZ/LjwJiEiQ==
pretty-hrtime@^1.0.0:
version "1.0.3"
resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
@ -2622,6 +3072,11 @@ process-nextick-args@^2.0.0, process-nextick-args@~2.0.0:
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
promise-queue@^2.2.5:
version "2.2.5"
resolved "https://registry.yarnpkg.com/promise-queue/-/promise-queue-2.2.5.tgz#2f6f5f7c0f6d08109e967659c79b88a9ed5e93b4"
integrity sha512-p/iXrPSVfnqPft24ZdNNLECw/UrtLTpT3jpAAMzl/o5/rDsGCPo3/CQS2611flL6LkoEJ3oQZw7C8Q80ZISXRQ==
proper-lockfile@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/proper-lockfile/-/proper-lockfile-2.0.1.tgz#159fb06193d32003f4b3691dd2ec1a634aa80d1d"
@ -2630,6 +3085,15 @@ proper-lockfile@^2.0.1:
graceful-fs "^4.1.2"
retry "^0.10.0"
proper-lockfile@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/proper-lockfile/-/proper-lockfile-4.1.2.tgz#c8b9de2af6b2f1601067f98e01ac66baa223141f"
integrity sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==
dependencies:
graceful-fs "^4.2.4"
retry "^0.12.0"
signal-exit "^3.0.2"
pump@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909"
@ -2816,6 +3280,16 @@ retry@^0.10.0:
resolved "https://registry.yarnpkg.com/retry/-/retry-0.10.1.tgz#e76388d217992c252750241d3d3956fed98d8ff4"
integrity sha512-ZXUSQYTHdl3uS7IuCehYfMzKyIDBNoAuUblvy5oGO5UJSUTmStUUVPXbA9Qxd173Bgre53yCQczQuHgRWAdvJQ==
retry@^0.12.0:
version "0.12.0"
resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==
retry@^0.13.1:
version "0.13.1"
resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658"
integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==
safe-buffer@^5.1.0:
version "5.2.1"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
@ -2870,6 +3344,11 @@ set-value@^2.0.0, set-value@^2.0.1:
is-plain-object "^2.0.3"
split-string "^3.0.1"
signal-exit@^3.0.2:
version "3.0.7"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
slugify@^1.6.5:
version "1.6.5"
resolved "https://registry.yarnpkg.com/slugify/-/slugify-1.6.5.tgz#c8f5c072bf2135b80703589b39a3d41451fbe8c8"
@ -3174,6 +3653,19 @@ tus-js-client@^2.1.1:
proper-lockfile "^2.0.1"
url-parse "^1.5.7"
tus-js-client@^3.0.0:
version "3.1.3"
resolved "https://registry.yarnpkg.com/tus-js-client/-/tus-js-client-3.1.3.tgz#bac62c14c770ba71492072179b55292baa19a074"
integrity sha512-n9k6rI/nPOuP2TaqPG6Ogz3a3V1cSH9en7N0VH4gh95jmG8JA58TJzLms2lBfb7aKVb3fdUunqYEG3WnQnZRvQ==
dependencies:
buffer-from "^1.1.2"
combine-errors "^3.0.3"
is-stream "^2.0.0"
js-base64 "^3.7.2"
lodash.throttle "^4.1.1"
proper-lockfile "^4.1.2"
url-parse "^1.5.7"
type@^1.0.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0"
@ -3284,6 +3776,48 @@ uppy@^1.16.1:
"@uppy/webcam" "^1.8.13"
"@uppy/xhr-upload" "^1.7.5"
uppy@^3.21.0:
version "3.21.0"
resolved "https://registry.yarnpkg.com/uppy/-/uppy-3.21.0.tgz#ba7066d6cb17f6b1e294b7b43dbd65a0f7e98249"
integrity sha512-JZlbkMMjd0lvLXLifSi1URJoJszRl5XBdmRQSKLjQ74FcMWwRjIYac+5kIVpTsTgxhgTBbKx5Dj/gaKeBVnVlg==
dependencies:
"@uppy/audio" "^1.1.4"
"@uppy/aws-s3" "^3.6.0"
"@uppy/aws-s3-multipart" "^3.10.0"
"@uppy/box" "^2.2.0"
"@uppy/companion-client" "^3.7.0"
"@uppy/compressor" "^1.0.5"
"@uppy/core" "^3.8.0"
"@uppy/dashboard" "^3.7.1"
"@uppy/drag-drop" "^3.0.3"
"@uppy/drop-target" "^2.0.2"
"@uppy/dropbox" "^3.2.0"
"@uppy/facebook" "^3.2.0"
"@uppy/file-input" "^3.0.4"
"@uppy/form" "^3.0.3"
"@uppy/golden-retriever" "^3.1.1"
"@uppy/google-drive" "^3.4.0"
"@uppy/image-editor" "^2.4.0"
"@uppy/informer" "^3.0.4"
"@uppy/instagram" "^3.2.0"
"@uppy/onedrive" "^3.2.0"
"@uppy/progress-bar" "^3.0.4"
"@uppy/provider-views" "^3.8.0"
"@uppy/redux-dev-tools" "^3.0.3"
"@uppy/remote-sources" "^1.1.0"
"@uppy/screen-capture" "^3.1.3"
"@uppy/status-bar" "^3.2.5"
"@uppy/store-default" "^3.2.0"
"@uppy/store-redux" "^3.0.5"
"@uppy/thumbnail-generator" "^3.0.6"
"@uppy/transloadit" "^3.4.0"
"@uppy/tus" "^3.5.0"
"@uppy/unsplash" "^3.2.3"
"@uppy/url" "^3.5.0"
"@uppy/webcam" "^3.3.4"
"@uppy/xhr-upload" "^3.6.0"
"@uppy/zoom" "^2.2.0"
urix@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"

Loading…
Cancel
Save