@jctrans-materials/comps-vue3 1.0.42-beta.3 → 1.0.42-beta.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.
|
@@ -5,9 +5,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
5
5
|
title?: string;
|
|
6
6
|
/** 是否显示密码验证 tab,关闭后仅展示 Email + Mobile */
|
|
7
7
|
showPasswordTab?: boolean;
|
|
8
|
+
/** 账号绑定信息:邮箱/手机/是否设置过密码;不存在/未设置时对应 Tab 直接隐藏 */
|
|
8
9
|
userAccount?: {
|
|
9
10
|
email?: string;
|
|
10
11
|
mobile?: string;
|
|
12
|
+
hasPassword?: boolean;
|
|
11
13
|
};
|
|
12
14
|
}>, {
|
|
13
15
|
visible: boolean;
|
|
@@ -26,9 +28,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
28
|
title?: string;
|
|
27
29
|
/** 是否显示密码验证 tab,关闭后仅展示 Email + Mobile */
|
|
28
30
|
showPasswordTab?: boolean;
|
|
31
|
+
/** 账号绑定信息:邮箱/手机/是否设置过密码;不存在/未设置时对应 Tab 直接隐藏 */
|
|
29
32
|
userAccount?: {
|
|
30
33
|
email?: string;
|
|
31
34
|
mobile?: string;
|
|
35
|
+
hasPassword?: boolean;
|
|
32
36
|
};
|
|
33
37
|
}>, {
|
|
34
38
|
visible: boolean;
|
|
@@ -48,6 +52,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
48
52
|
userAccount: {
|
|
49
53
|
email?: string;
|
|
50
54
|
mobile?: string;
|
|
55
|
+
hasPassword?: boolean;
|
|
51
56
|
};
|
|
52
57
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
53
58
|
export default _default;
|