Comparing version 4.6.1 to 4.7.0
# Changelog | ||
## 4.7.0 | ||
- Add support for [chunked uploads](https://pqina.nl/filepond/docs/patterns/api/server/#process-chunks). Thanks to Ryan Olson (@ams-ryanolson) Arctic Media for donating the funds to build this. | ||
## 4.6.1 | ||
- Add missing Blob type to TypeScript server config | ||
- Add missing Blob type to TypeScript server config. | ||
@@ -10,3 +15,3 @@ | ||
- Add TypeScript declarations | ||
- Add TypeScript declarations. | ||
@@ -13,0 +18,0 @@ |
{ | ||
"name": "filepond", | ||
"version": "4.6.1", | ||
"version": "4.7.0", | ||
"description": "FilePond, Where files go to stretch their bits.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -140,2 +140,7 @@ # <img src="https://github.com/pqina/filepond-github-assets/blob/master/logo.svg" height="44" alt="FilePond"/> | ||
## Sponsors | ||
Thanks go out to Ryan Olson (@ams-ryanolson) Arctic Media for donating the funds to build the chunked uploading feature. | ||
## Publications | ||
@@ -161,2 +166,3 @@ | ||
## License | ||
@@ -163,0 +169,0 @@ |
@@ -804,2 +804,26 @@ // Based on definitions by Zach Posten for React-Filepond <https://github.com/zposten> | ||
/** | ||
* Enable or disable chunked uploads | ||
* @default false | ||
*/ | ||
chunkUploads: boolean; | ||
/** | ||
* Force use of chunk uploads even for files smaller than chunk size | ||
* @default false | ||
*/ | ||
chunkForce: boolean; | ||
/** | ||
* Size of chunks (5MB default) | ||
* @default 5000000 | ||
*/ | ||
chunkSize: number | string; | ||
/** | ||
* Amount of times to retry upload of a chunk when it fails | ||
* @default [500, 1000, 3000] | ||
*/ | ||
chunkRetryDelays: number[]; | ||
/** | ||
@@ -810,2 +834,3 @@ * FilePond will catch all files dropped on the webpage. | ||
dropOnPage: boolean; | ||
/** | ||
@@ -816,2 +841,3 @@ * Require drop on the FilePond element itself to catch the file. | ||
dropOnElement: boolean; | ||
/** | ||
@@ -823,2 +849,3 @@ * When enabled, files are validated before they are dropped. | ||
dropValidation: boolean; | ||
/** | ||
@@ -825,0 +852,0 @@ * Ignored file names when handling dropped directories. |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
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
863166
20703
191