- Fix ERR: A 'declare' modifier is required for a top level declaration in a .d.ts file.
- Fix ERR: Property 'file' does not exist on type 'File'
when using it like `this.image = URL.createObjectURL(upload.file)`
- `VueUpload.File` type is conflicted with https://developer.mozilla.org/en-US/docs/Web/API/File so need to change to VUFile (ts don't have a way to resolve this)
We forced the `header` for the chunk upload request to be `multipart/form-data` but the header must be set auotmatically when sending the `FormData`. This was causing the backend being unable to read parameters sent
Changed the way we stop the chunk process when the upload fails in `upload` phase. We no longer set the `file.active = false` since that would prevent the next file to start uploading
* `chunk-enabled` prop added to enable chunk upload
* `chunk` prop added to modify chunk upload parameters
* `ChunkUploadHandler` class created to handler chunk upload process
* Example added to the docs
* Chunk documentation added to the docs
* `chunk-enabled` prop added to enable chunk upload
* `chunk` prop added to modify chunk upload parameters
* `ChunkUploadHandler` class created to handler chunk upload process
* Example added to the docs
* Chunk documentation added to the docs