@ebiz/designer-components 0.1.26 → 0.1.27

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/dist/index.mjs CHANGED
@@ -51609,7 +51609,8 @@ const aG = /* @__PURE__ */ qe($z, [["render", Az], ["__scopeId", "data-v-bf930ef
51609
51609
  get() {
51610
51610
  return console.log("props.modelValue", r.modelValue), r.modelValue == null || r.modelValue == "" || r.modelValue.length == 0 ? [] : r.modelValue instanceof Array ? r.modelValue.map((C) => ({
51611
51611
  name: C.name,
51612
- url: C
51612
+ url: C.url,
51613
+ size: C.size
51613
51614
  })) : r.modelValue && r.modelValue.length > 0 ? [
51614
51615
  {
51615
51616
  name: r.modelValue.split("/").pop(),
@@ -51752,7 +51753,7 @@ const aG = /* @__PURE__ */ qe($z, [["render", Az], ["__scopeId", "data-v-bf930ef
51752
51753
  ]), 1032, ["modelValue", "accept", "action", "allowUploadDuplicateFile", "autoUpload", "files", "data", "disabled", "draggable", "fileListDisplay", "format", "formatRequest", "headers", "isBatchUpload", "max", "method", "multiple", "name", "placeholder", "showUploadProgress", "sizeLimit", "status", "theme", "tips", "uploadAllFilesInOneRequest", "uploadButton", "useMockProgress", "withCredentials"])
51753
51754
  ]));
51754
51755
  }
51755
- }), Nz = /* @__PURE__ */ qe(Rz, [["__scopeId", "data-v-f6765e2d"]]), Bz = {
51756
+ }), Nz = /* @__PURE__ */ qe(Rz, [["__scopeId", "data-v-5cb180a4"]]), Bz = {
51756
51757
  __name: "EbizTabHeader",
51757
51758
  props: {
51758
51759
  // 远程请求的配置
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ebiz/designer-components",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -261,7 +261,8 @@ const computedModelValue = computed({
261
261
  // 从文件路径获取文件名
262
262
  return {
263
263
  name: file.name,
264
- url: file
264
+ url: file.url,
265
+ size: file.size
265
266
  }
266
267
  });
267
268
  }