@skyfox2000/webui 1.3.3 → 1.3.4

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 (30) hide show
  1. package/lib/assets/modules/{file-upload-D4Pqs8h3.js → file-upload-BBlFaIXB.js} +1 -1
  2. package/lib/assets/modules/index-4kDAt8nS.js +333 -0
  3. package/lib/assets/modules/{index-V1j9haWy.js → index-BG1SqSVl.js} +1 -1
  4. package/lib/assets/modules/{index-CSnwbbQT.js → index-m5rogIyM.js} +2 -2
  5. package/lib/assets/modules/{menuTabs-e8XoJN7m.js → menuTabs-tPIz4a89.js} +2 -2
  6. package/lib/assets/modules/{toolIcon-BSF7eiPf.js → toolIcon-DwWoD9TN.js} +1 -1
  7. package/lib/assets/modules/{uploadList-DA4TRDWR.js → uploadList-D_Z-Y2tw.js} +2 -2
  8. package/lib/assets/modules/{uploadList-Bcf7g1bf.js → uploadList-Da7mQUNK.js} +4 -4
  9. package/lib/es/AceEditor/index.js +3 -3
  10. package/lib/es/BasicLayout/index.js +3 -3
  11. package/lib/es/Error403/index.js +1 -1
  12. package/lib/es/Error404/index.js +1 -1
  13. package/lib/es/ExcelForm/index.js +332 -202
  14. package/lib/es/UploadForm/index.js +4 -4
  15. package/lib/index.d.ts +3 -2
  16. package/lib/utils/excel-view.d.ts +25 -0
  17. package/lib/utils/form-csv.d.ts +18 -0
  18. package/lib/utils/form-excel.d.ts +2 -13
  19. package/lib/webui.css +1 -1
  20. package/lib/webui.es.js +862 -833
  21. package/package.json +2 -2
  22. package/src/components/common/loading/index.vue +1 -1
  23. package/src/components/content/dialog/excelForm.vue +384 -106
  24. package/src/components/form/autoComplete/index.vue +1 -1
  25. package/src/index.ts +25 -2
  26. package/src/utils/excel-view.ts +340 -0
  27. package/src/utils/form-csv.ts +55 -0
  28. package/src/utils/form-excel.ts +59 -192
  29. package/vite.config.ts +0 -1
  30. package/lib/assets/modules/form-excel-D1vXB4c4.js +0 -235
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyfox2000/webui",
3
- "version": "1.3.3",
3
+ "version": "1.3.4",
4
4
  "description": "后台前端通用组件定义",
5
5
  "type": "module",
6
6
  "keywords": [],
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "peerDependencies": {
34
34
  "@json2csv/plainjs": "^7.0.6",
35
- "@skyfox2000/fapi": "^1.1.19",
35
+ "@skyfox2000/fapi": "^1.2.3",
36
36
  "@skyfox2000/microbase": "^1.2.2",
37
37
  "@vue-office/excel": "^1.7.14",
38
38
  "ace-builds": "^1.42.0",
@@ -4,7 +4,7 @@ import { useAttrs } from 'vue';
4
4
  const attrs = useAttrs()
5
5
  </script>
6
6
  <template>
7
- <div class="absolute z-999 w-full h-full top-0 flex flex-flow row items-center justify-center">
7
+ <div class="absolute z-9999 w-full h-full top-0 flex flex-flow row items-center justify-center">
8
8
  <Spin style="margin-top: -10%" v-bind="attrs">
9
9
  </Spin>
10
10
  </div>