@julingbase/jly-arco-design 0.0.6 → 0.0.7

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/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # 更新日志
2
2
 
3
+ ## 0.0.7
4
+ ### 新增功能
5
+
6
+ - **Uploader组件**
7
+ - 新增多文件上传增加文件数量传参
8
+
3
9
  ## 0.0.6
4
10
  ### 新增功能
5
11
 
package/dist/arco-vue.js CHANGED
@@ -49035,7 +49035,7 @@
49035
49035
  for (let i2 = 0; i2 < files.length; i2++) {
49036
49036
  const file = files[i2];
49037
49037
  if (isFunction$1(props.onBeforeUpload)) {
49038
- Promise.resolve(props.onBeforeUpload(file)).then((result) => {
49038
+ Promise.resolve(props.onBeforeUpload(file, files.length)).then((result) => {
49039
49039
  if (result) {
49040
49040
  initUpload(isBoolean$1(result) ? file : result, i2);
49041
49041
  }