bt-core-app 2.0.272 → 2.0.274
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/bt-core-app.js +4 -2
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -5704,7 +5704,7 @@ const Jie = [
|
|
|
5704
5704
|
"use:microsoftteams",
|
|
5705
5705
|
"use:xero",
|
|
5706
5706
|
"use:myob",
|
|
5707
|
-
"use:
|
|
5707
|
+
"use:smtpserver"
|
|
5708
5708
|
];
|
|
5709
5709
|
function eoe() {
|
|
5710
5710
|
return [
|
|
@@ -77671,8 +77671,10 @@ const xre = Ge({
|
|
|
77671
77671
|
S(Ga, {
|
|
77672
77672
|
modelValue: i.value,
|
|
77673
77673
|
"onUpdate:modelValue": C[2] || (C[2] = (b) => i.value = b),
|
|
77674
|
+
label: n.value.label,
|
|
77675
|
+
placeholder: n.value.placeholder,
|
|
77674
77676
|
rules: n.value.rules
|
|
77675
|
-
}, null, 8, ["modelValue", "rules"])
|
|
77677
|
+
}, null, 8, ["modelValue", "label", "placeholder", "rules"])
|
|
77676
77678
|
]),
|
|
77677
77679
|
actions: Y(() => [
|
|
77678
77680
|
S(Ae, {
|
package/dist/index.d.ts
CHANGED
|
@@ -2221,7 +2221,9 @@ export declare interface UseDialogStringOptions {
|
|
|
2221
2221
|
cancelText?: string;
|
|
2222
2222
|
confirmText?: string;
|
|
2223
2223
|
height?: string;
|
|
2224
|
+
label?: string;
|
|
2224
2225
|
maxWidth?: string;
|
|
2226
|
+
placeholder?: string;
|
|
2225
2227
|
rules?: any[];
|
|
2226
2228
|
startValue?: string;
|
|
2227
2229
|
subtitle?: string;
|
package/package.json
CHANGED