@keyblade/pro-components 1.15.0-alpha.10 → 1.15.0-alpha.11
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.
|
@@ -20,7 +20,7 @@ declare function __VLS_template(): {
|
|
|
20
20
|
readonly onSendSmsCode?: ((value: string) => void) | undefined;
|
|
21
21
|
readonly current?: (EFindPasswordSteps | number) | undefined;
|
|
22
22
|
readonly phoneNum?: string | undefined;
|
|
23
|
-
readonly onNext?: ((current: number) => void) | undefined;
|
|
23
|
+
readonly onNext?: ((current: number, value: VerifyUserNameFormField | ResetPasswordFormField) => void) | undefined;
|
|
24
24
|
readonly onEntry?: (() => void) | undefined;
|
|
25
25
|
readonly 'update:current'?: ((value: number) => void) | undefined;
|
|
26
26
|
readonly prefixClsName: string;
|
|
@@ -2443,7 +2443,7 @@ declare const __VLS_component: import('vue').DefineComponent<IFindPassword, {
|
|
|
2443
2443
|
readonly onSendSmsCode?: ((value: string) => void) | undefined;
|
|
2444
2444
|
readonly current?: (EFindPasswordSteps | number) | undefined;
|
|
2445
2445
|
readonly phoneNum?: string | undefined;
|
|
2446
|
-
readonly onNext?: ((current: number) => void) | undefined;
|
|
2446
|
+
readonly onNext?: ((current: number, value: VerifyUserNameFormField | ResetPasswordFormField) => void) | undefined;
|
|
2447
2447
|
readonly onEntry?: (() => void) | undefined;
|
|
2448
2448
|
readonly 'update:current'?: ((value: number) => void) | undefined;
|
|
2449
2449
|
readonly prefixClsName: string;
|
|
@@ -16,7 +16,7 @@ export type IFindPassword = {
|
|
|
16
16
|
/** 表单项属性 */
|
|
17
17
|
formItemProps?: Partial<FormItemInstance>;
|
|
18
18
|
/** 下一步 */
|
|
19
|
-
onNext?: (current: number) => void;
|
|
19
|
+
onNext?: (current: number, value: VerifyUserNameFormField | ResetPasswordFormField) => void;
|
|
20
20
|
/** 获取短信验证码 */
|
|
21
21
|
onSendSmsCode?: (value: string) => void;
|
|
22
22
|
/** 修改成功,返回 */
|
package/package.json
CHANGED