@authing/guard-shim-react18 4.5.50-alpha.9 → 4.5.50
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.
|
@@ -9,10 +9,8 @@ export interface SendCodeByEmailProps extends InputProps {
|
|
|
9
9
|
fieldName?: string;
|
|
10
10
|
autoSubmit?: boolean;
|
|
11
11
|
scene: EmailScene;
|
|
12
|
-
|
|
13
|
-
randstr?: string;
|
|
12
|
+
captchaCode?: string;
|
|
14
13
|
onSendCodeError?: any;
|
|
15
|
-
|
|
16
|
-
randStrFieldName?: string;
|
|
14
|
+
codeFieldName?: string;
|
|
17
15
|
}
|
|
18
16
|
export declare const SendCodeByEmail: React.FC<SendCodeByEmailProps>;
|
|
@@ -13,9 +13,7 @@ export interface SendCodeByPhoneProps extends InputProps {
|
|
|
13
13
|
scene: SceneType;
|
|
14
14
|
areaCode?: string;
|
|
15
15
|
isInternationSms?: boolean;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
ticket?: string;
|
|
19
|
-
randstr?: string;
|
|
16
|
+
codeFieldName?: string;
|
|
17
|
+
captchaCode?: string;
|
|
20
18
|
}
|
|
21
19
|
export declare const SendCodeByPhone: React.FC<SendCodeByPhoneProps>;
|
package/package.json
CHANGED