lew-ui 2.6.25 → 2.6.26

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
@@ -3908,7 +3908,8 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
3908
3908
  });
3909
3909
  const altText = computed(() => {
3910
3910
  if (!props2.alt) return "";
3911
- return props2.alt.split(" ").map((word) => word.charAt(0)).join("").toUpperCase();
3911
+ const result = props2.alt.split(" ").map((word) => word.charAt(0)).join("").toUpperCase();
3912
+ return result.length > 2 ? result.charAt(0) : result;
3912
3913
  });
3913
3914
  const STATUS_PLACEMENT_CONFIG_CIRCLE = {
3914
3915
  "top-left": {
@@ -4043,7 +4044,7 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
4043
4044
  };
4044
4045
  }
4045
4046
  });
4046
- const LewAvatar = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v-27c30e37"]]);
4047
+ const LewAvatar = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v-d0f61a3f"]]);
4047
4048
  const validColors = [
4048
4049
  "blue",
4049
4050
  "gray",
@@ -13394,7 +13395,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
13394
13395
  };
13395
13396
  }
13396
13397
  });
13397
- const LewInputTag = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__scopeId", "data-v-16194526"]]);
13398
+ const LewInputTag = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__scopeId", "data-v-4500e16a"]]);
13398
13399
  const checkboxModel = {
13399
13400
  modelValue: {
13400
13401
  type: Boolean,
@@ -15721,7 +15722,7 @@ const selectMultipleProps = {
15721
15722
  },
15722
15723
  valueTextSplit: {
15723
15724
  type: String,
15724
- default: "",
15725
+ default: ",",
15725
15726
  description: "文本模式下选中值的分隔符"
15726
15727
  },
15727
15728
  placeholder: {