@authing/react-ui-components 4.4.1-alpha.8 → 4.4.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/lib/index.min.css +2 -2
- package/lib/index.min.js +1 -1
- package/package.json +9 -9
- package/types/CompleteInfo/interface.d.ts +4 -1
- package/types/CompleteInfo/utils.d.ts +6 -0
- package/types/ForgetPassword/core/resetPassword.d.ts +1 -0
- package/types/Guard/core/hooks/useMultipleAccounts.d.ts +4 -2
- package/types/Guard/event.d.ts +2 -1
- package/types/Guard/module.d.ts +1 -0
- package/types/IdentityBinding/businessRequest.d.ts +1 -1
- package/types/Login/hooks/useLoginMultiple.d.ts +2 -1
- package/types/Register/core/WithEmail.d.ts +1 -2
- package/types/SelectAccount2Login/index.d.ts +3 -0
- package/types/Type/application.d.ts +1 -4
- package/types/Type/index.d.ts +1 -0
- package/types/_utils/GuardErrorCode.d.ts +1 -0
- package/types/_utils/context.d.ts +2 -1
- package/types/_utils/guardHttp.d.ts +1 -1
- package/types/_utils/http.d.ts +0 -2
- package/types/_utils/index.d.ts +5 -4
- package/types/_utils/responseManagement/interface.d.ts +2 -2
- package/types/version/version.d.ts +1 -1
- package/dist/asset-manifest.json +0 -26
- package/dist/index.html +0 -1
- package/dist/static/css/2.839329b5.chunk.css +0 -3
- package/dist/static/css/2.839329b5.chunk.css.map +0 -1
- package/dist/static/css/main.98fc077f.chunk.css +0 -2
- package/dist/static/css/main.98fc077f.chunk.css.map +0 -1
- package/dist/static/js/2.acd455a5.chunk.js +0 -3
- package/dist/static/js/2.acd455a5.chunk.js.LICENSE.txt +0 -124
- package/dist/static/js/2.acd455a5.chunk.js.map +0 -1
- package/dist/static/js/3.ca746d7e.chunk.js +0 -2
- package/dist/static/js/3.ca746d7e.chunk.js.map +0 -1
- package/dist/static/js/main.59425d4f.chunk.js +0 -2
- package/dist/static/js/main.59425d4f.chunk.js.map +0 -1
- package/dist/static/js/runtime-main.5d2cd96c.js +0 -2
- package/dist/static/js/runtime-main.5d2cd96c.js.map +0 -1
- package/dist/static/media/loading.3cf0104f.svg +0 -32
- package/types/Login/hooks/useOtpPushLogin.d.ts +0 -10
- package/types/_utils/workflowHandleStorage.d.ts +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@authing/react-ui-components",
|
|
3
|
-
"version": "4.4.1
|
|
3
|
+
"version": "4.4.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "lib/index.min.js",
|
|
6
6
|
"typings": "types/index.d.ts",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"antd": "^4.8.0",
|
|
14
|
-
"authing-js-sdk": "4.23.
|
|
14
|
+
"authing-js-sdk": "4.23.48",
|
|
15
15
|
"classnames": "^2.3.1",
|
|
16
16
|
"fastclick": "^1.0.6",
|
|
17
17
|
"global": "^4.4.0",
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "node ./scripts/build.js",
|
|
33
33
|
"build:types": "npx tsc",
|
|
34
|
-
"build:lib": "clear &&
|
|
35
|
-
"clear": "
|
|
34
|
+
"build:lib": "yarn clear && yarn build:types && node ./scripts/lib.js",
|
|
35
|
+
"clear": "yarn clear:dist && yarn clear:lib && yarn clear:types",
|
|
36
36
|
"clear:dist": "rm -rf dist",
|
|
37
37
|
"clear:lib": "rm -rf lib",
|
|
38
38
|
"clear:types": "rm -rf types",
|
|
39
39
|
"log-tag": "node ./scripts/tag.js",
|
|
40
40
|
"pretty-quick": "pretty-quick",
|
|
41
|
-
"prestart": "
|
|
42
|
-
"prebuild:lib": "
|
|
41
|
+
"prestart": "yarn log-tag && yarn generate-version && yarn generate-examples",
|
|
42
|
+
"prebuild:lib": "yarn log-tag && yarn generate-version && yarn generate-examples",
|
|
43
43
|
"prepare": "cd ../.. && husky install packages/react-components/.husky",
|
|
44
|
-
"pub": "
|
|
45
|
-
"start": "PORT=1221 node ./scripts/start.js",
|
|
44
|
+
"pub": "yarn build:lib && node ./scripts/publish.js",
|
|
45
|
+
"start": "cross-env PORT=1221 node ./scripts/start.js",
|
|
46
46
|
"vite": "vite",
|
|
47
47
|
"generate-version": "node ./scripts/generate-version",
|
|
48
48
|
"generate-examples": "node ./scripts/generate-examples.js",
|
|
@@ -237,4 +237,4 @@
|
|
|
237
237
|
"webpack-manifest-plugin": "2.2.0",
|
|
238
238
|
"workbox-webpack-plugin": "5.1.4"
|
|
239
239
|
}
|
|
240
|
-
}
|
|
240
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AuthenticationClient, CommonMessage, User } from 'authing-js-sdk';
|
|
2
|
-
import { IG2Config, IG2Events, IG2FCProps } from '../Type';
|
|
2
|
+
import { IG2Config, IG2Events, IG2FCProps, Lang } from '../Type';
|
|
3
3
|
export interface CompleteInfoConfig extends IG2Config {
|
|
4
4
|
}
|
|
5
5
|
export declare const getDefaultCompleteInfoConfig: () => CompleteInfoConfig;
|
|
@@ -41,6 +41,9 @@ export interface CompleteInfoRule {
|
|
|
41
41
|
type: FormValidateRule;
|
|
42
42
|
content: string;
|
|
43
43
|
errorMessage?: string;
|
|
44
|
+
i18n?: {
|
|
45
|
+
errorMessage: Record<Lang, []>;
|
|
46
|
+
};
|
|
44
47
|
}
|
|
45
48
|
export interface CompleteInfoSelectOption {
|
|
46
49
|
value: string;
|
|
@@ -20,3 +20,9 @@ export declare const fieldValuesToRegisterProfile: (extendsFields: ApplicationCo
|
|
|
20
20
|
value: string;
|
|
21
21
|
}[];
|
|
22
22
|
};
|
|
23
|
+
/**
|
|
24
|
+
* @description 获取对应key的国际化value
|
|
25
|
+
* @param record :example {key:"",i18n:{key:{zh_CN:{enabled:true,value:""}}}
|
|
26
|
+
* @param key
|
|
27
|
+
*/
|
|
28
|
+
export declare const getI18nValue: (record: any, key: string) => any;
|
|
@@ -10,6 +10,7 @@ interface ResetPasswordProps {
|
|
|
10
10
|
setCustomPasswordStrength: any;
|
|
11
11
|
setPhoneOrEmailText: any;
|
|
12
12
|
setResetToken: React.Dispatch<React.SetStateAction<string>>;
|
|
13
|
+
setUserId: React.Dispatch<React.SetStateAction<string>>;
|
|
13
14
|
}
|
|
14
15
|
export declare const ResetPassword: (props: ResetPasswordProps) => JSX.Element;
|
|
15
16
|
export {};
|
|
@@ -249,7 +249,8 @@ declare class MultipleAccount {
|
|
|
249
249
|
setUserInfo: (user: Pick<User & {
|
|
250
250
|
id: string;
|
|
251
251
|
loginAccount?: string | undefined;
|
|
252
|
-
|
|
252
|
+
usertype?: string | undefined;
|
|
253
|
+
}, "email" | "username" | "phone" | "photo" | "id" | "name" | "nickname" | "_updateTime" | "qrCodeId" | "areaCode" | "loginAccount" | "usertype">) => void;
|
|
253
254
|
setLoginWayByHttpData: (account: string, data: {
|
|
254
255
|
username?: string | undefined;
|
|
255
256
|
phone?: string | undefined;
|
|
@@ -292,7 +293,8 @@ declare const useMultipleAccounts: ({ appId, finallyConfig, }: {
|
|
|
292
293
|
setUserInfo: (user: Pick<User & {
|
|
293
294
|
id: string;
|
|
294
295
|
loginAccount?: string | undefined;
|
|
295
|
-
|
|
296
|
+
usertype?: string | undefined;
|
|
297
|
+
}, "email" | "username" | "phone" | "photo" | "id" | "name" | "nickname" | "_updateTime" | "qrCodeId" | "areaCode" | "loginAccount" | "usertype">) => void;
|
|
296
298
|
setLoginWayByHttpData: (account: string, data: {
|
|
297
299
|
username?: string | undefined;
|
|
298
300
|
phone?: string | undefined;
|
package/types/Guard/event.d.ts
CHANGED
|
@@ -28,7 +28,8 @@ export declare const guardEventsFilter: (props: any, multipleInstance?: {
|
|
|
28
28
|
setUserInfo: (user: Pick<import("./core/hooks/useMultipleAccounts").User & {
|
|
29
29
|
id: string;
|
|
30
30
|
loginAccount?: string | undefined;
|
|
31
|
-
|
|
31
|
+
usertype?: string | undefined;
|
|
32
|
+
}, "email" | "username" | "phone" | "photo" | "id" | "name" | "nickname" | "_updateTime" | "qrCodeId" | "areaCode" | "loginAccount" | "usertype">) => void;
|
|
32
33
|
setLoginWayByHttpData: (account: string, data: {
|
|
33
34
|
username?: string | undefined;
|
|
34
35
|
phone?: string | undefined;
|
package/types/Guard/module.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export declare enum GuardModuleType {
|
|
|
21
21
|
IDENTITY_BINDING_NO_ASK = "identityBindingNoAsk",
|
|
22
22
|
SELF_UNLOCK = "selfUnlock",
|
|
23
23
|
FLOW_SELECT_ACCOUNT = "flowSelectAccount",
|
|
24
|
+
SELECT_ACCOUNT_2_LOGIN = "selectAccout2Login",
|
|
24
25
|
/** 多租户门户选择页 */
|
|
25
26
|
TENANT_PORTAL = "tenant-portal",
|
|
26
27
|
New_SUBMIT_SUCCESS = "newSubmitSuccess",
|
|
@@ -29,7 +29,7 @@ export declare enum IdentityBindingAction {
|
|
|
29
29
|
export declare const PhoneCode: (params: PhoneCodeParams) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
|
|
30
30
|
export declare const EmailCode: (params: EmailCodeParams) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
|
|
31
31
|
export declare const Password: (params: PasswordParams) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
|
|
32
|
-
export declare const useIdentityBindingBusinessRequest: (type?: 'register' | 'bind'
|
|
32
|
+
export declare const useIdentityBindingBusinessRequest: (type?: 'register' | 'bind') => {
|
|
33
33
|
"phone-code": (params: PhoneCodeParams) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
|
|
34
34
|
"emial-code": (params: EmailCodeParams) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
|
|
35
35
|
password: (params: PasswordParams) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
|
|
@@ -35,7 +35,8 @@ declare function useLoginMultiple(setLoginWay: React.Dispatch<any>): {
|
|
|
35
35
|
setUserInfo: (user: Pick<import("../../Guard/core/hooks/useMultipleAccounts").User & {
|
|
36
36
|
id: string;
|
|
37
37
|
loginAccount?: string | undefined;
|
|
38
|
-
|
|
38
|
+
usertype?: string | undefined;
|
|
39
|
+
}, "email" | "username" | "phone" | "photo" | "id" | "name" | "nickname" | "_updateTime" | "qrCodeId" | "areaCode" | "loginAccount" | "usertype">) => void;
|
|
39
40
|
setLoginWayByHttpData: (account: string, data: {
|
|
40
41
|
username?: string | undefined;
|
|
41
42
|
phone?: string | undefined;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Agreement, ApplicationConfig } from '../../Type/application';
|
|
3
|
-
import { PasswordLoginMethods } from '../../Type';
|
|
4
3
|
export interface RegisterWithEmailProps {
|
|
5
4
|
onRegisterSuccess: Function;
|
|
6
5
|
onRegisterFailed: Function;
|
|
@@ -9,6 +8,6 @@ export interface RegisterWithEmailProps {
|
|
|
9
8
|
agreements: Agreement[];
|
|
10
9
|
registeContext?: any;
|
|
11
10
|
label?: string;
|
|
12
|
-
method?:
|
|
11
|
+
method?: string;
|
|
13
12
|
}
|
|
14
13
|
export declare const RegisterWithEmail: React.FC<RegisterWithEmailProps>;
|
|
@@ -168,7 +168,6 @@ export interface Agreement {
|
|
|
168
168
|
availableAt?: number;
|
|
169
169
|
}
|
|
170
170
|
export declare type PasswordLoginMethods = 'username-password' | 'email-password' | 'phone-password';
|
|
171
|
-
export declare const normalMethods: PasswordLoginMethods[];
|
|
172
171
|
export declare type VerifyLoginMethods = 'email-code' | 'phone-code';
|
|
173
172
|
export declare type ComplateFiledsPlace = 'register' | 'login';
|
|
174
173
|
export interface TabFieldsI18nItem {
|
|
@@ -204,6 +203,7 @@ export interface ApplicationConfig {
|
|
|
204
203
|
name: string;
|
|
205
204
|
logo: string;
|
|
206
205
|
description?: string;
|
|
206
|
+
deviceFuncEnabled?: boolean;
|
|
207
207
|
redirectUris: string[];
|
|
208
208
|
registerDisabled: boolean;
|
|
209
209
|
mergeAdAndAccountPasswordLogin: boolean;
|
|
@@ -334,7 +334,4 @@ export interface ApplicationConfig {
|
|
|
334
334
|
appRobotVerify: 'always_enable' | 'disable' | 'condition_set';
|
|
335
335
|
/** 用户池的人机验证策略,始终开启、不开启、设置条件触发 */
|
|
336
336
|
userpoolRobotVerify: 'always_enable' | 'disable' | 'condition_set';
|
|
337
|
-
enabledLoginAuthnWorkflow: boolean;
|
|
338
|
-
enabledRegistryAuthnWorkflow: boolean;
|
|
339
|
-
enabledResetPwdAuthnWorkflow: boolean;
|
|
340
337
|
}
|
package/types/Type/index.d.ts
CHANGED
|
@@ -119,7 +119,8 @@ export declare const useGuardMultipleInstance: () => {
|
|
|
119
119
|
setUserInfo: (user: Pick<import("../Guard/core/hooks/useMultipleAccounts").User & {
|
|
120
120
|
id: string;
|
|
121
121
|
loginAccount?: string | undefined;
|
|
122
|
-
|
|
122
|
+
usertype?: string | undefined;
|
|
123
|
+
}, "email" | "username" | "phone" | "photo" | "id" | "name" | "nickname" | "_updateTime" | "qrCodeId" | "areaCode" | "loginAccount" | "usertype">) => void;
|
|
123
124
|
setLoginWayByHttpData: (account: string, data: {
|
|
124
125
|
username?: string | undefined;
|
|
125
126
|
phone?: string | undefined;
|
|
@@ -9,6 +9,7 @@ export declare class GuardHttp {
|
|
|
9
9
|
setUserpoolId(userpoolId: string): this;
|
|
10
10
|
setAppId(appId: string): this;
|
|
11
11
|
setTenantId(tenantId: string): this;
|
|
12
|
+
setDeviceId(deviceId: string): this;
|
|
12
13
|
setBaseUrl(baseUrl: string): this;
|
|
13
14
|
getHeaders: () => Record<string, string>;
|
|
14
15
|
get: <T = any>(path: string, query?: Record<string, any>, config?: any) => Promise<AuthingGuardResponse<T>>;
|
|
@@ -19,7 +20,6 @@ export declare class GuardHttp {
|
|
|
19
20
|
headers: any;
|
|
20
21
|
} | undefined) => Promise<AuthingGuardResponse<T>>;
|
|
21
22
|
authFlow: <T = any>(action: string, data?: any) => Promise<AuthingGuardResponse<T>>;
|
|
22
|
-
authWorkFlow: <T = any>(action: string, data?: any, ignoreWorkFlow?: boolean | undefined) => Promise<AuthingGuardResponse<T>>;
|
|
23
23
|
initErrorCodeInterceptor: (callBack: (code: CodeAction, res: AuthingResponse) => AuthingGuardResponse) => this | undefined;
|
|
24
24
|
responseIntercept: (res: AuthingResponse) => AuthingGuardResponse;
|
|
25
25
|
}
|
package/types/_utils/http.d.ts
CHANGED
|
@@ -26,8 +26,6 @@ export interface AuthingResponse<T = any> {
|
|
|
26
26
|
messages?: string;
|
|
27
27
|
message?: string;
|
|
28
28
|
flowHandle?: string;
|
|
29
|
-
workflowInstanceId?: string;
|
|
30
|
-
taskName?: string;
|
|
31
29
|
}
|
|
32
30
|
export interface AuthingGuardResponse<T = any> extends AuthingResponse<T> {
|
|
33
31
|
onGuardHandling?: () => CodeAction;
|
package/types/_utils/index.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare const getClassnames: (classnames: (string | boolean | undefined)[
|
|
|
27
27
|
* @param item
|
|
28
28
|
* @returns {boolean}
|
|
29
29
|
*/
|
|
30
|
-
export declare function isObject(item: any):
|
|
30
|
+
export declare function isObject(item: any): any;
|
|
31
31
|
/**
|
|
32
32
|
* https://www.itranslater.com/qa/details/2115518846294557696
|
|
33
33
|
* Deep merge two objects.
|
|
@@ -65,15 +65,16 @@ export declare enum PasswordStrength {
|
|
|
65
65
|
Low = 1,
|
|
66
66
|
Middle = 2,
|
|
67
67
|
High = 3,
|
|
68
|
-
AUTO = 4
|
|
68
|
+
AUTO = 4,
|
|
69
|
+
Custom = 5
|
|
69
70
|
}
|
|
70
71
|
export declare const PASSWORD_STRENGTH_TEXT_MAP: Record<PasswordStrength, {
|
|
71
72
|
placeholder: () => string;
|
|
72
73
|
validateMessage: () => string;
|
|
73
74
|
}>;
|
|
74
75
|
export declare const getSymbolTypeLength: (pwd: string) => number;
|
|
75
|
-
export declare const getPasswordValidate: (strength?: PasswordStrength, customPasswordStrength?: any, fieldRequiredRuleMessage?: string | undefined) => Rule[];
|
|
76
|
-
export declare const getPasswordValidateRules: (strength?: PasswordStrength, customPasswordStrength?: any, customValidateTrigger?: string | undefined, fieldRequiredRuleMessage?: string | undefined) => Rule[];
|
|
76
|
+
export declare const getPasswordValidate: (strength?: PasswordStrength, customPasswordStrength?: any, fieldRequiredRuleMessage?: string | undefined, userId?: string | undefined) => Rule[];
|
|
77
|
+
export declare const getPasswordValidateRules: (strength?: PasswordStrength, customPasswordStrength?: any, customValidateTrigger?: string | undefined, fieldRequiredRuleMessage?: string | undefined, userId?: string | undefined) => Rule[];
|
|
77
78
|
export declare const sleep: (delay: number) => Promise<unknown>;
|
|
78
79
|
export declare const shoudGoToComplete: (user: User, contextType: ComplateFiledsPlace, config: ApplicationConfig | undefined, autoRegister?: boolean | undefined) => boolean;
|
|
79
80
|
export declare const transformMethod: (method: RegisterMethods | string) => string;
|
|
@@ -19,8 +19,8 @@ export declare enum ApiCode {
|
|
|
19
19
|
UNSAFE_PASSWORD_TIP = 2061,
|
|
20
20
|
UNSAFE_PASSWORD_RESET = 2071,
|
|
21
21
|
FLOW_SELECT_ACCOUNT = 2921,
|
|
22
|
+
SELECT_ACCOUNT_2_LOGIN = 2930,
|
|
22
23
|
TENANT_PORTAL = 1644,
|
|
23
|
-
RESET_ACCOUNT_NAME = 1108
|
|
24
|
-
NODE_EXCEPTION = 1708
|
|
24
|
+
RESET_ACCOUNT_NAME = 1108
|
|
25
25
|
}
|
|
26
26
|
export declare const ChangeModuleApiCodeMapping: Record<string, GuardModuleType>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.4.1
|
|
1
|
+
declare const _default: "4.4.1";
|
|
2
2
|
export default _default;
|
package/dist/asset-manifest.json
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"files": {
|
|
3
|
-
"main.css": "/static/css/main.98fc077f.chunk.css",
|
|
4
|
-
"main.js": "/static/js/main.59425d4f.chunk.js",
|
|
5
|
-
"main.js.map": "/static/js/main.59425d4f.chunk.js.map",
|
|
6
|
-
"runtime-main.js": "/static/js/runtime-main.5d2cd96c.js",
|
|
7
|
-
"runtime-main.js.map": "/static/js/runtime-main.5d2cd96c.js.map",
|
|
8
|
-
"static/css/2.839329b5.chunk.css": "/static/css/2.839329b5.chunk.css",
|
|
9
|
-
"static/js/2.acd455a5.chunk.js": "/static/js/2.acd455a5.chunk.js",
|
|
10
|
-
"static/js/2.acd455a5.chunk.js.map": "/static/js/2.acd455a5.chunk.js.map",
|
|
11
|
-
"static/js/3.ca746d7e.chunk.js": "/static/js/3.ca746d7e.chunk.js",
|
|
12
|
-
"static/js/3.ca746d7e.chunk.js.map": "/static/js/3.ca746d7e.chunk.js.map",
|
|
13
|
-
"index.html": "/index.html",
|
|
14
|
-
"static/css/2.839329b5.chunk.css.map": "/static/css/2.839329b5.chunk.css.map",
|
|
15
|
-
"static/css/main.98fc077f.chunk.css.map": "/static/css/main.98fc077f.chunk.css.map",
|
|
16
|
-
"static/js/2.acd455a5.chunk.js.LICENSE.txt": "/static/js/2.acd455a5.chunk.js.LICENSE.txt",
|
|
17
|
-
"static/media/loading.3cf0104f.svg": "/static/media/loading.3cf0104f.svg"
|
|
18
|
-
},
|
|
19
|
-
"entrypoints": [
|
|
20
|
-
"static/js/runtime-main.5d2cd96c.js",
|
|
21
|
-
"static/css/2.839329b5.chunk.css",
|
|
22
|
-
"static/js/2.acd455a5.chunk.js",
|
|
23
|
-
"static/css/main.98fc077f.chunk.css",
|
|
24
|
-
"static/js/main.59425d4f.chunk.js"
|
|
25
|
-
]
|
|
26
|
-
}
|
package/dist/index.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!doctype html><html lang="zh-TW"><head><meta charset="utf-8"/><link rel="icon" href="https://files.authing.co/authing-console/login_logo.svg"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Guard Examples</title><link href="/static/css/2.839329b5.chunk.css" rel="stylesheet"><link href="/static/css/main.98fc077f.chunk.css" rel="stylesheet"></head><body><div id="root"></div><script>!function(e){function t(t){for(var n,a,i=t[0],c=t[1],l=t[2],s=0,p=[];s<i.length;s++)a=i[s],Object.prototype.hasOwnProperty.call(o,a)&&o[a]&&p.push(o[a][0]),o[a]=0;for(n in c)Object.prototype.hasOwnProperty.call(c,n)&&(e[n]=c[n]);for(f&&f(t);p.length;)p.shift()();return u.push.apply(u,l||[]),r()}function r(){for(var e,t=0;t<u.length;t++){for(var r=u[t],n=!0,i=1;i<r.length;i++){var c=r[i];0!==o[c]&&(n=!1)}n&&(u.splice(t--,1),e=a(a.s=r[0]))}return e}var n={},o={1:0},u=[];function a(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,a),r.l=!0,r.exports}a.e=function(e){var t=[],r=o[e];if(0!==r)if(r)t.push(r[2]);else{var n=new Promise((function(t,n){r=o[e]=[t,n]}));t.push(r[2]=n);var u,i=document.createElement("script");i.charset="utf-8",i.timeout=120,a.nc&&i.setAttribute("nonce",a.nc),i.src=function(e){return a.p+"static/js/"+({}[e]||e)+"."+{3:"ca746d7e"}[e]+".chunk.js"}(e);var c=new Error;u=function(t){i.onerror=i.onload=null,clearTimeout(l);var r=o[e];if(0!==r){if(r){var n=t&&("load"===t.type?"missing":t.type),u=t&&t.target&&t.target.src;c.message="Loading chunk "+e+" failed.\n("+n+": "+u+")",c.name="ChunkLoadError",c.type=n,c.request=u,r[1](c)}o[e]=void 0}};var l=setTimeout((function(){u({type:"timeout",target:i})}),12e4);i.onerror=i.onload=u,document.head.appendChild(i)}return Promise.all(t)},a.m=e,a.c=n,a.d=function(e,t,r){a.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},a.t=function(e,t){if(1&t&&(e=a(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(a.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)a.d(r,n,function(t){return e[t]}.bind(null,n));return r},a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,"a",t),t},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.p="/",a.oe=function(e){throw console.error(e),e};var i=this["webpackJsonp@authing/react-ui-components"]=this["webpackJsonp@authing/react-ui-components"]||[],c=i.push.bind(i);i.push=t,i=i.slice();for(var l=0;l<i.length;l++)t(i[l]);var f=c;r()}([])</script><script src="/static/js/2.acd455a5.chunk.js"></script><script src="/static/js/main.59425d4f.chunk.js"></script></body></html>
|