quasar-ui-danx 0.3.35 → 0.3.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-danx",
3
- "version": "0.3.35",
3
+ "version": "0.3.36",
4
4
  "author": "Dan <dan@flytedesk.com>",
5
5
  "description": "DanX Vue / Quasar component library",
6
6
  "license": "MIT",
@@ -268,6 +268,7 @@ export class FileUpload {
268
268
  * Start uploading all files
269
269
  */
270
270
  async upload() {
271
+ console.log && console.log("FileUploader@upload()", this.fileUploads, this.options);
271
272
  for (const fileUpload of this.fileUploads) {
272
273
  const mimeType = fileUpload.file.mimeType || fileUpload.file.type;
273
274
  const presignedUrl = this.options.presignedUploadUrl(this.options.directory, fileUpload.file.name, mimeType);