@douyinfe/semi-foundation 2.37.0-beta.0 → 2.37.0

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.
@@ -488,6 +488,7 @@ class UploadFoundation extends _foundation.default {
488
488
  newFileList[index].fileInstance = fileInstance;
489
489
  newFileList[index].size = (0, _utils.getFileSize)(fileInstance.size);
490
490
  newFileList[index].name = fileInstance.name;
491
+ newFileList[index].url = this._createURL(fileInstance);
491
492
  }
492
493
  newFileList[index].shouldUpload = shouldUpload;
493
494
  }
@@ -481,6 +481,7 @@ class UploadFoundation extends BaseFoundation {
481
481
  newFileList[index].fileInstance = fileInstance;
482
482
  newFileList[index].size = getFileSize(fileInstance.size);
483
483
  newFileList[index].name = fileInstance.name;
484
+ newFileList[index].url = this._createURL(fileInstance);
484
485
  }
485
486
  newFileList[index].shouldUpload = shouldUpload;
486
487
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@douyinfe/semi-foundation",
3
- "version": "2.37.0-beta.0",
3
+ "version": "2.37.0",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build:lib": "node ./scripts/compileLib.js",
@@ -23,7 +23,7 @@
23
23
  "*.scss",
24
24
  "*.css"
25
25
  ],
26
- "gitHead": "61dac2d97c5e8f9f25ecef78d31dbe68136d990e",
26
+ "gitHead": "3d2a2680186785f167b1bb0f9c719a2945c3c1f0",
27
27
  "devDependencies": {
28
28
  "@babel/plugin-transform-runtime": "^7.15.8",
29
29
  "@babel/preset-env": "^7.15.8",
@@ -487,6 +487,7 @@ class UploadFoundation<P = Record<string, any>, S = Record<string, any>> extends
487
487
  newFileList[index].fileInstance = fileInstance;
488
488
  newFileList[index].size = getFileSize(fileInstance.size);
489
489
  newFileList[index].name = fileInstance.name;
490
+ newFileList[index].url = this._createURL(fileInstance);
490
491
  }
491
492
  newFileList[index].shouldUpload = shouldUpload;
492
493
  }