vxe-pc-ui 4.15.7 → 4.15.8

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.
Files changed (36) hide show
  1. package/dist/all.esm.js +4 -4
  2. package/dist/style.css +1 -1
  3. package/dist/style.min.css +1 -1
  4. package/es/icon/style.css +1 -1
  5. package/es/style.css +1 -1
  6. package/es/style.min.css +1 -1
  7. package/es/ui/index.js +1 -1
  8. package/es/ui/src/log.js +1 -1
  9. package/es/upload/src/upload.js +2 -2
  10. package/lib/icon/style/style.css +1 -1
  11. package/lib/icon/style/style.min.css +1 -1
  12. package/lib/index.umd.js +3 -4
  13. package/lib/index.umd.min.js +1 -1
  14. package/lib/style.css +1 -1
  15. package/lib/style.min.css +1 -1
  16. package/lib/ui/index.js +1 -1
  17. package/lib/ui/index.min.js +1 -1
  18. package/lib/ui/src/log.js +1 -1
  19. package/lib/ui/src/log.min.js +1 -1
  20. package/lib/upload/src/upload.js +1 -2
  21. package/lib/upload/src/upload.min.js +1 -1
  22. package/package.json +2 -2
  23. package/packages/upload/src/upload.ts +3 -2
  24. package/types/components/gantt.d.ts +1 -0
  25. /package/es/icon/{iconfont.1782112308661.ttf → iconfont.1782137184015.ttf} +0 -0
  26. /package/es/icon/{iconfont.1782112308661.woff → iconfont.1782137184015.woff} +0 -0
  27. /package/es/icon/{iconfont.1782112308661.woff2 → iconfont.1782137184015.woff2} +0 -0
  28. /package/es/{iconfont.1782112308661.ttf → iconfont.1782137184015.ttf} +0 -0
  29. /package/es/{iconfont.1782112308661.woff → iconfont.1782137184015.woff} +0 -0
  30. /package/es/{iconfont.1782112308661.woff2 → iconfont.1782137184015.woff2} +0 -0
  31. /package/lib/icon/style/{iconfont.1782112308661.ttf → iconfont.1782137184015.ttf} +0 -0
  32. /package/lib/icon/style/{iconfont.1782112308661.woff → iconfont.1782137184015.woff} +0 -0
  33. /package/lib/icon/style/{iconfont.1782112308661.woff2 → iconfont.1782137184015.woff2} +0 -0
  34. /package/lib/{iconfont.1782112308661.ttf → iconfont.1782137184015.ttf} +0 -0
  35. /package/lib/{iconfont.1782112308661.woff → iconfont.1782137184015.woff} +0 -0
  36. /package/lib/{iconfont.1782112308661.woff2 → iconfont.1782137184015.woff2} +0 -0
package/dist/all.esm.js CHANGED
@@ -81,7 +81,7 @@ function checkDynamic() {
81
81
  }
82
82
 
83
83
  const { log } = VxeUI;
84
- const uiVersion = `ui v${"4.15.7"}`;
84
+ const uiVersion = `ui v${"4.15.8"}`;
85
85
  function createComponentLog(name) {
86
86
  const tableVersion = VxeUI.tableVersion ? `table v${VxeUI.tableVersion}` : '';
87
87
  const ganttVersion = VxeUI.ganttVersion ? `gantt v${VxeUI.ganttVersion}` : '';
@@ -94,7 +94,7 @@ function createComponentLog(name) {
94
94
  const warnLog$b = log.create('warn', uiVersion);
95
95
  log.create('error', uiVersion);
96
96
 
97
- const version = "4.15.7";
97
+ const version = "4.15.8";
98
98
  VxeUI.uiVersion = version;
99
99
  VxeUI.dynamicApp = dynamicApp;
100
100
  function config(options) {
@@ -42349,7 +42349,7 @@ var VxeUploadComponent = defineVxeComponent({
42349
42349
  }
42350
42350
  };
42351
42351
  const handleUploadFile = (files, evnt) => {
42352
- const { multiple, urlMode, showLimitSize, limitSizeText, showLimitCount, limitCountText, autoSubmit } = props;
42352
+ const { multiple, showLimitSize, limitSizeText, showLimitCount, limitCountText, autoSubmit } = props;
42353
42353
  const { fileList } = reactData;
42354
42354
  const beforeSelectFn = props.beforeSelectMethod || getConfig$3().upload.beforeSelectMethod;
42355
42355
  const uploadFn = props.uploadMethod || getConfig$3().upload.uploadMethod;
@@ -42462,7 +42462,7 @@ var VxeUploadComponent = defineVxeComponent({
42462
42462
  newFileList.forEach(item => {
42463
42463
  dispatchEvent('add', { option: item }, evnt);
42464
42464
  });
42465
- Promise.all(urlMode ? uploadPromiseRests : []).then(() => {
42465
+ Promise.all(uploadPromiseRests).then(() => {
42466
42466
  const restFileList = reactData.fileList;
42467
42467
  dispatchEvent('upload-queue-end', { options: restFileList, files: selectFiles }, evnt);
42468
42468
  handleChange(restFileList);