@bsgoal/common 2.24.34 → 2.24.35
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 +9 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -6858,6 +6858,13 @@ const h1 = { class: "bsgoal-base-button" }, m1 = {
|
|
|
6858
6858
|
tooltipPlacement: {
|
|
6859
6859
|
type: [String],
|
|
6860
6860
|
default: "top"
|
|
6861
|
+
},
|
|
6862
|
+
/**
|
|
6863
|
+
* 气泡确认框内容的宽度
|
|
6864
|
+
*/
|
|
6865
|
+
confirmWidth: {
|
|
6866
|
+
type: [String, Number],
|
|
6867
|
+
default: ""
|
|
6861
6868
|
}
|
|
6862
6869
|
},
|
|
6863
6870
|
setup(i) {
|
|
@@ -6954,6 +6961,7 @@ const h1 = { class: "bsgoal-base-button" }, m1 = {
|
|
|
6954
6961
|
i.hasConfirm && !i.disabled ? (y(), D("div", m1, [
|
|
6955
6962
|
U(Y, {
|
|
6956
6963
|
title: i.title,
|
|
6964
|
+
width: i.confirmWidth,
|
|
6957
6965
|
onConfirm: g
|
|
6958
6966
|
}, {
|
|
6959
6967
|
reference: W(() => [
|
|
@@ -6986,7 +6994,7 @@ const h1 = { class: "bsgoal-base-button" }, m1 = {
|
|
|
6986
6994
|
])
|
|
6987
6995
|
]),
|
|
6988
6996
|
_: 3
|
|
6989
|
-
}, 8, ["title"])
|
|
6997
|
+
}, 8, ["title", "width"])
|
|
6990
6998
|
])) : (y(), D("div", {
|
|
6991
6999
|
key: 1,
|
|
6992
7000
|
class: "base_button",
|