@bsgoal/common 2.16.3 → 2.16.4
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
|
@@ -6238,6 +6238,13 @@ const up = { class: "bsgoal-base-button" }, Ti = Object.assign({
|
|
|
6238
6238
|
hasLoading: {
|
|
6239
6239
|
type: [Boolean],
|
|
6240
6240
|
default: !0
|
|
6241
|
+
},
|
|
6242
|
+
/**
|
|
6243
|
+
* disabled
|
|
6244
|
+
*/
|
|
6245
|
+
disabled: {
|
|
6246
|
+
type: [Boolean],
|
|
6247
|
+
default: !1
|
|
6241
6248
|
}
|
|
6242
6249
|
},
|
|
6243
6250
|
setup(u) {
|
|
@@ -6304,13 +6311,14 @@ const up = { class: "bsgoal-base-button" }, Ti = Object.assign({
|
|
|
6304
6311
|
type: m.value,
|
|
6305
6312
|
icon: b.value,
|
|
6306
6313
|
loading: a.value,
|
|
6307
|
-
plain: u.plain
|
|
6314
|
+
plain: u.plain,
|
|
6315
|
+
disabled: u.disabled
|
|
6308
6316
|
}, {
|
|
6309
6317
|
default: K(() => [
|
|
6310
6318
|
mt(Qe(g.value), 1)
|
|
6311
6319
|
]),
|
|
6312
6320
|
_: 1
|
|
6313
|
-
}, 8, ["type", "icon", "loading", "plain"])
|
|
6321
|
+
}, 8, ["type", "icon", "loading", "plain", "disabled"])
|
|
6314
6322
|
])
|
|
6315
6323
|
])
|
|
6316
6324
|
]);
|