@authing/guard-shim-react 4.5.50-alpha.9 → 4.5.51-alpha.1
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/guard.min.js +337 -311
- package/dist/typings/src/Login/hooks/useLoginMultiple.d.ts +1 -1
- package/dist/typings/src/SendCode/SendCodeByEmail.d.ts +2 -4
- package/dist/typings/src/SendCode/SendCodeByPhone.d.ts +2 -4
- package/dist/typings/src/Type/application.d.ts +1 -0
- package/dist/typings/src/_utils/config/index.d.ts +1 -1
- package/dist/typings/src/_utils/popupCenter.d.ts +4 -0
- package/package.json +1 -1
- package/dist/typings/src/_utils/tencentCaptcha.d.ts +0 -5
|
@@ -62,7 +62,7 @@ declare function useLoginSelectAccount(setLoginWay: React.Dispatch<any>): {
|
|
|
62
62
|
getOriginAccount: () => string;
|
|
63
63
|
getOriginWay: () => string;
|
|
64
64
|
} | undefined;
|
|
65
|
-
referMultipleState: ((type: "
|
|
65
|
+
referMultipleState: ((type: "multiple" | "login") => void) | undefined;
|
|
66
66
|
backfillData: BackFillMultipleState | undefined;
|
|
67
67
|
defaultQrWay: string | undefined;
|
|
68
68
|
};
|
|
@@ -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>;
|
|
@@ -54,7 +54,7 @@ export declare const useFetchConsoleConfig: (forceUpdate: number, appId?: string
|
|
|
54
54
|
loginMethods?: LoginMethods[] | undefined;
|
|
55
55
|
passwordLoginMethods?: string[] | undefined;
|
|
56
56
|
socialConnections?: import("../../Type").SocialConnectionProvider[] | undefined;
|
|
57
|
-
socialConnectionsBtnShape?: "button" | "
|
|
57
|
+
socialConnectionsBtnShape?: "button" | "icon" | "default" | undefined;
|
|
58
58
|
enterpriseConnections?: string[] | undefined;
|
|
59
59
|
qrCodeScanOptions?: {
|
|
60
60
|
extIdpConnId?: string | undefined;
|
package/package.json
CHANGED