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/package.json
CHANGED
package/pagination/index.es.js
CHANGED
|
@@ -9084,7 +9084,6 @@ var Tag = defineComponent({
|
|
|
9084
9084
|
} = toRefs(props);
|
|
9085
9085
|
const tagClass = useClass(props);
|
|
9086
9086
|
const themeColor = useColor(props);
|
|
9087
|
-
const tagTitle = titleContent.value || "";
|
|
9088
9087
|
const isDefaultTag = () => !type4.value && !color.value;
|
|
9089
9088
|
const handleClick = (e) => {
|
|
9090
9089
|
emit("click", e);
|
|
@@ -9123,7 +9122,7 @@ var Tag = defineComponent({
|
|
|
9123
9122
|
color: contentColor.value,
|
|
9124
9123
|
backgroundColor: checked.value ? themeColor.value : !color.value ? "" : "var(--devui-base-bg, #ffffff)"
|
|
9125
9124
|
},
|
|
9126
|
-
"title":
|
|
9125
|
+
"title": titleContent.value || ""
|
|
9127
9126
|
}, [(_a = slots.default) == null ? void 0 : _a.call(slots), closeIconEl()])]);
|
|
9128
9127
|
};
|
|
9129
9128
|
}
|