@authing/guard-shim-react18 4.5.46-alpha.7 → 4.5.46-alpha.8
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 +749 -751
- package/dist/typings/src/Login/hooks/useLoginMultiple.d.ts +1 -1
- package/dist/typings/src/Login/interface.d.ts +0 -1
- package/dist/typings/src/Type/application.d.ts +0 -4
- package/dist/typings/src/_utils/config/index.d.ts +1 -1
- package/dist/typings/src/_utils/context.d.ts +1 -1
- package/package.json +1 -1
|
@@ -39,7 +39,7 @@ declare function useLoginSelectAccount(setLoginWay: React.Dispatch<any>): {
|
|
|
39
39
|
id: string;
|
|
40
40
|
loginAccount?: string | undefined;
|
|
41
41
|
usertype?: string | undefined;
|
|
42
|
-
}, "
|
|
42
|
+
}, "way" | "tab" | "phoneCountryCode">) => void;
|
|
43
43
|
setLoginWayByHttpData: (account: string, data: {
|
|
44
44
|
username?: string | undefined;
|
|
45
45
|
phone?: string | undefined;
|
|
@@ -42,4 +42,3 @@ export interface GuardLoginInitData {
|
|
|
42
42
|
export declare const getDefaultLoginConfig: () => LoginConfig;
|
|
43
43
|
export declare const baseLoginPathMapping: Partial<Record<Protocol, string | null>>;
|
|
44
44
|
export declare const loginUrlFieldMapping: Partial<Record<Protocol, string>>;
|
|
45
|
-
export type ValidateStatus = undefined | 'validating';
|
|
@@ -406,10 +406,6 @@ export interface ApplicationConfig {
|
|
|
406
406
|
desc: I18nLang;
|
|
407
407
|
};
|
|
408
408
|
noticePwdCustomLogo?: string;
|
|
409
|
-
/**
|
|
410
|
-
* 开启延迟校验用户是否存在功能
|
|
411
|
-
*/
|
|
412
|
-
closeCheckSendUser?: boolean;
|
|
413
409
|
resetPwdLinkCustomLogo?: string;
|
|
414
410
|
resetPwdLinkTipsConfig?: {
|
|
415
411
|
title: I18nLang;
|
|
@@ -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?: "
|
|
57
|
+
socialConnectionsBtnShape?: "default" | "button" | "icon" | undefined;
|
|
58
58
|
enterpriseConnections?: string[] | undefined;
|
|
59
59
|
qrCodeScanOptions?: {
|
|
60
60
|
extIdpConnId?: string | undefined;
|
|
@@ -123,7 +123,7 @@ export declare const useGuardAccountSelectInstance: () => {
|
|
|
123
123
|
id: string;
|
|
124
124
|
loginAccount?: string | undefined;
|
|
125
125
|
usertype?: string | undefined;
|
|
126
|
-
}, "
|
|
126
|
+
}, "way" | "tab" | "phoneCountryCode">) => void;
|
|
127
127
|
setLoginWayByHttpData: (account: string, data: {
|
|
128
128
|
username?: string | undefined;
|
|
129
129
|
phone?: string | undefined;
|
package/package.json
CHANGED