vue-devui 1.6.36-alpha.1 → 1.6.36-alpha.2
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/category-search/index.es.js +13 -11
- package/category-search/index.umd.js +10 -10
- package/package.json +1 -1
- package/pagination/index.es.js +1 -2
- package/pagination/index.umd.js +9 -9
- package/select/index.es.js +1 -2
- package/select/index.umd.js +10 -10
- package/tag/index.es.js +1 -2
- package/tag/index.umd.js +1 -1
- package/time-select/index.es.js +1 -2
- package/time-select/index.umd.js +16 -16
- package/vue-devui.es.js +13 -11
- package/vue-devui.umd.js +1 -1
package/select/index.es.js
CHANGED
|
@@ -9070,7 +9070,6 @@ var Tag = defineComponent({
|
|
|
9070
9070
|
} = toRefs(props);
|
|
9071
9071
|
const tagClass = useClass(props);
|
|
9072
9072
|
const themeColor = useColor(props);
|
|
9073
|
-
const tagTitle = titleContent.value || "";
|
|
9074
9073
|
const isDefaultTag = () => !type4.value && !color.value;
|
|
9075
9074
|
const handleClick = (e) => {
|
|
9076
9075
|
emit("click", e);
|
|
@@ -9109,7 +9108,7 @@ var Tag = defineComponent({
|
|
|
9109
9108
|
color: contentColor.value,
|
|
9110
9109
|
backgroundColor: checked.value ? themeColor.value : !color.value ? "" : "var(--devui-base-bg, #ffffff)"
|
|
9111
9110
|
},
|
|
9112
|
-
"title":
|
|
9111
|
+
"title": titleContent.value || ""
|
|
9113
9112
|
}, [(_a = slots.default) == null ? void 0 : _a.call(slots), closeIconEl()])]);
|
|
9114
9113
|
};
|
|
9115
9114
|
}
|