@deskhero/dh_ui 1.41.1 → 1.41.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/dist/dh_ui.es.js +6 -2
- package/dist/dh_ui.umd.js +1 -1
- package/dist/src/components/Copiable.vue.d.ts +4 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/dh_ui.es.js
CHANGED
|
@@ -23959,6 +23959,10 @@ const _sfc_main$h = {
|
|
|
23959
23959
|
text: {
|
|
23960
23960
|
type: String,
|
|
23961
23961
|
required: true
|
|
23962
|
+
},
|
|
23963
|
+
placement: {
|
|
23964
|
+
type: String,
|
|
23965
|
+
default: "bottom"
|
|
23962
23966
|
}
|
|
23963
23967
|
},
|
|
23964
23968
|
setup(__props) {
|
|
@@ -23971,7 +23975,7 @@ const _sfc_main$h = {
|
|
|
23971
23975
|
return openBlock(), createElementBlock("span", _hoisted_1$h, [
|
|
23972
23976
|
createTextVNode(toDisplayString(__props.text) + " ", 1),
|
|
23973
23977
|
createVNode(Tooltip, {
|
|
23974
|
-
placement:
|
|
23978
|
+
placement: __props.placement,
|
|
23975
23979
|
target: "tooltiptext",
|
|
23976
23980
|
"tooltip-text": copied.value,
|
|
23977
23981
|
trigger: "hover",
|
|
@@ -23985,7 +23989,7 @@ const _sfc_main$h = {
|
|
|
23985
23989
|
})
|
|
23986
23990
|
]),
|
|
23987
23991
|
_: 1
|
|
23988
|
-
}, 8, ["tooltip-text"])
|
|
23992
|
+
}, 8, ["placement", "tooltip-text"])
|
|
23989
23993
|
]);
|
|
23990
23994
|
};
|
|
23991
23995
|
}
|