@authing/react-ui-components 3.0.2-beta.5 → 3.1.1-rc.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.
Files changed (249) hide show
  1. package/.vscode/settings.json +1 -1
  2. package/LICENSE +21 -0
  3. package/config/env.js +26 -24
  4. package/config/paths.js +3 -3
  5. package/config/webpack.config.js +29 -7
  6. package/lib/index.d.ts +211 -1252
  7. package/lib/index.min.css +1 -2
  8. package/lib/index.min.js +1 -1
  9. package/lib/index.min.js.LICENSE.txt +0 -32
  10. package/package.json +14 -20
  11. package/scripts/build.js +83 -79
  12. package/scripts/start.js +73 -69
  13. package/scripts/test.js +23 -19
  14. package/{components → src/common}/AuthingDropdown/index.tsx +1 -1
  15. package/{components → src/common}/AuthingDropdown/style.less +0 -0
  16. package/{components → src/common}/AuthingTabs/index.tsx +1 -1
  17. package/{components → src/common}/AuthingTabs/style.less +0 -0
  18. package/{components → src/common}/CopyAbleText/index.tsx +1 -1
  19. package/{components → src/common}/CopyAbleText/style.less +0 -0
  20. package/{components → src/common}/VerifyCodeInput/index.tsx +0 -0
  21. package/{components → src/common}/VerifyCodeInput/style.less +0 -0
  22. package/{components → src/components}/AuthingGuard/AppMFALayout/index.tsx +2 -2
  23. package/{components → src/components}/AuthingGuard/AppMFALayout/style.less +0 -0
  24. package/{components → src/components}/AuthingGuard/CompleteUserInfoLayout/index.tsx +1 -1
  25. package/{components → src/components}/AuthingGuard/CompleteUserInfoLayout/style.less +0 -0
  26. package/{components → src/components}/AuthingGuard/Forms/ADLoginForm/index.tsx +2 -2
  27. package/{components → src/components}/AuthingGuard/Forms/Agreements/index.tsx +1 -1
  28. package/{components → src/components}/AuthingGuard/Forms/Agreements/style.less +0 -0
  29. package/{components → src/components}/AuthingGuard/Forms/CompleteUserInfoForm/index.tsx +3 -3
  30. package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/CheckEmailForm.tsx +4 -2
  31. package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/VerifyCodeForm.tsx +2 -2
  32. package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/index.tsx +1 -1
  33. package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/style.less +0 -0
  34. package/{components → src/components}/AuthingGuard/Forms/EmailRegisterForm/index.tsx +2 -2
  35. package/{components → src/components}/AuthingGuard/Forms/EmailRegisterForm/style.less +0 -0
  36. package/{components → src/components}/AuthingGuard/Forms/LdapLoginForm/index.tsx +4 -9
  37. package/{components → src/components}/AuthingGuard/Forms/LdapLoginForm/style.less +0 -0
  38. package/{components → src/components}/AuthingGuard/Forms/LoginFormFooter/index.tsx +1 -1
  39. package/{components → src/components}/AuthingGuard/Forms/LoginFormFooter/style.less +0 -0
  40. package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/Step1.tsx +2 -2
  41. package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/Step2.tsx +1 -1
  42. package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/index.tsx +1 -1
  43. package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/style.less +0 -0
  44. package/{components → src/components}/AuthingGuard/Forms/MfaVerifyForm/index.tsx +2 -2
  45. package/{components → src/components}/AuthingGuard/Forms/MfaVerifyForm/style.less +0 -0
  46. package/{components → src/components}/AuthingGuard/Forms/PasswordLoginForm/index.tsx +3 -3
  47. package/{components → src/components}/AuthingGuard/Forms/PhoneCodeLoginForm/index.tsx +2 -2
  48. package/{components → src/components}/AuthingGuard/Forms/PhoneRegisterForm/index.tsx +2 -2
  49. package/{components → src/components}/AuthingGuard/Forms/QrCodeLoginForm/index.tsx +4 -2
  50. package/{components → src/components}/AuthingGuard/Forms/QrCodeLoginForm/style.less +0 -0
  51. package/{components → src/components}/AuthingGuard/Forms/RegisterFormFooter/index.tsx +1 -1
  52. package/{components → src/components}/AuthingGuard/Forms/RegisterFormFooter/style.less +0 -0
  53. package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Footer.tsx +1 -1
  54. package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step1.tsx +2 -2
  55. package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step2.tsx +2 -2
  56. package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step3.tsx +2 -2
  57. package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step4.tsx +1 -1
  58. package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/index.tsx +1 -1
  59. package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/style.less +0 -0
  60. package/{components → src/components}/AuthingGuard/Forms/SendPhoneCode/SendCodeBtn.tsx +0 -0
  61. package/{components → src/components}/AuthingGuard/Forms/SendPhoneCode/index.tsx +2 -2
  62. package/{components → src/components}/AuthingGuard/Forms/SendPhoneCode/style.less +0 -0
  63. package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/CheckPhoneForm.tsx +2 -2
  64. package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/VerifyCodeForm.tsx +2 -2
  65. package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/index.tsx +1 -1
  66. package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/style.less +0 -0
  67. package/{components → src/components}/AuthingGuard/Forms/SocialAndIdpLogin/index.tsx +7 -7
  68. package/{components → src/components}/AuthingGuard/Forms/SocialAndIdpLogin/style.less +0 -0
  69. package/{components → src/components}/AuthingGuard/Forms/UploadImage/index.tsx +1 -1
  70. package/{components → src/components}/AuthingGuard/Forms/index.ts +0 -0
  71. package/{components → src/components}/AuthingGuard/GuardLayout/index.tsx +17 -3
  72. package/{components → src/components}/AuthingGuard/GuardLayout/style.less +0 -0
  73. package/{components → src/components}/AuthingGuard/Header/index.tsx +6 -3
  74. package/{components → src/components}/AuthingGuard/Header/style.less +23 -11
  75. package/{components → src/components}/AuthingGuard/IconFont/iconfont.js +0 -0
  76. package/{components → src/components}/AuthingGuard/IconFont/index.tsx +1 -1
  77. package/{components → src/components}/AuthingGuard/IconFont/style.less +0 -0
  78. package/{components → src/components}/AuthingGuard/IconFont/svg.js +0 -0
  79. package/{components → src/components}/AuthingGuard/LoginLayout/index.tsx +69 -25
  80. package/{components → src/components}/AuthingGuard/LoginLayout/style.less +0 -0
  81. package/{components → src/components}/AuthingGuard/MfaLayout/Steps.ts +0 -0
  82. package/{components → src/components}/AuthingGuard/MfaLayout/index.tsx +1 -1
  83. package/{components → src/components}/AuthingGuard/MfaLayout/style.less +0 -0
  84. package/{components → src/components}/AuthingGuard/RegisterLayout/index.tsx +2 -2
  85. package/{components → src/components}/AuthingGuard/RegisterLayout/style.less +0 -0
  86. package/{components → src/components}/AuthingGuard/ResetPwdLayout/index.tsx +1 -1
  87. package/{components → src/components}/AuthingGuard/ToggleLang/index.tsx +2 -2
  88. package/{components → src/components}/AuthingGuard/api/appConfig.ts +22 -14
  89. package/{components/_utils → src/components/AuthingGuard/api}/http.ts +33 -30
  90. package/{components → src/components}/AuthingGuard/api/index.ts +0 -0
  91. package/{components → src/components}/AuthingGuard/api/sso.ts +1 -1
  92. package/{components → src/components}/AuthingGuard/api/userPoolConfig.ts +3 -2
  93. package/{components → src/components}/AuthingGuard/constants.ts +2 -2
  94. package/{components → src/components}/AuthingGuard/hooks/index.tsx +0 -0
  95. package/{components → src/components}/AuthingGuard/hooks/useScreenSize.tsx +0 -0
  96. package/{components → src/components}/AuthingGuard/index.tsx +11 -3
  97. package/{components/_utils → src/components/AuthingGuard}/locales/en/common.json +26 -70
  98. package/{components/_utils → src/components/AuthingGuard}/locales/en/index.ts +0 -0
  99. package/{components/_utils → src/components/AuthingGuard}/locales/en/login.json +19 -21
  100. package/{components/_utils → src/components/AuthingGuard}/locales/en/map.json +0 -0
  101. package/{components/_utils → src/components/AuthingGuard}/locales/en/user.json +3 -4
  102. package/{components/_utils → src/components/AuthingGuard}/locales/index.ts +2 -2
  103. package/{components/_utils → src/components/AuthingGuard}/locales/zh/common.json +9 -53
  104. package/{components/_utils → src/components/AuthingGuard}/locales/zh/index.ts +0 -0
  105. package/{components/_utils → src/components/AuthingGuard}/locales/zh/login.json +4 -6
  106. package/{components/_utils → src/components/AuthingGuard}/locales/zh/map.json +0 -0
  107. package/{components/_utils → src/components/AuthingGuard}/locales/zh/user.json +1 -3
  108. package/{components → src/components}/AuthingGuard/style.less +5 -0
  109. package/{components → src/components}/AuthingGuard/types/Forms.ts +2 -1
  110. package/{components → src/components}/AuthingGuard/types/GuardConfig.ts +5 -1
  111. package/{components → src/components}/AuthingGuard/types/GuardState.ts +1 -1
  112. package/{components → src/components}/AuthingGuard/types/Locales.ts +0 -0
  113. package/{components → src/components}/AuthingGuard/types/index.ts +0 -0
  114. package/src/components/index.ts +7 -0
  115. package/{components → src}/context/base.tsx +0 -0
  116. package/{components → src}/context/global/context.tsx +0 -0
  117. package/{components → src}/context/global/reducer.tsx +2 -2
  118. package/src/index.tsx +142 -0
  119. package/{logo.svg → src/logo.svg} +0 -0
  120. package/{react-app-env.d.ts → src/react-app-env.d.ts} +0 -0
  121. package/{reportWebVitals.ts → src/reportWebVitals.ts} +0 -0
  122. package/{setupTests.ts → src/setupTests.ts} +0 -0
  123. package/{components/_utils → src/utils}/clipboard.ts +1 -1
  124. package/{components/_utils → src/utils}/index.ts +3 -149
  125. package/{components/_utils → src/utils}/popupCenter.ts +0 -0
  126. package/tsconfig.json +2 -8
  127. package/build/asset-manifest.json +0 -26
  128. package/build/favicon.ico +0 -0
  129. package/build/index.html +0 -1
  130. package/build/logo192.png +0 -0
  131. package/build/logo512.png +0 -0
  132. package/build/manifest.json +0 -25
  133. package/build/robots.txt +0 -3
  134. package/build/static/css/2.51c07e65.chunk.css +0 -3
  135. package/build/static/css/2.51c07e65.chunk.css.map +0 -1
  136. package/build/static/css/main.779f221a.chunk.css +0 -2
  137. package/build/static/css/main.779f221a.chunk.css.map +0 -1
  138. package/build/static/js/2.bbae9fdb.chunk.js +0 -3
  139. package/build/static/js/2.bbae9fdb.chunk.js.LICENSE.txt +0 -102
  140. package/build/static/js/2.bbae9fdb.chunk.js.map +0 -1
  141. package/build/static/js/3.fd17f196.chunk.js +0 -2
  142. package/build/static/js/3.fd17f196.chunk.js.map +0 -1
  143. package/build/static/js/main.5f341531.chunk.js +0 -2
  144. package/build/static/js/main.5f341531.chunk.js.map +0 -1
  145. package/build/static/js/runtime-main.ef138021.js +0 -2
  146. package/build/static/js/runtime-main.ef138021.js.map +0 -1
  147. package/build/static/media/loading.4a67a5f3.svg +0 -29
  148. package/components/BindTotp/core/bindSuccess.tsx +0 -72
  149. package/components/BindTotp/core/securityCode.tsx +0 -108
  150. package/components/BindTotp/index.tsx +0 -134
  151. package/components/BindTotp/interface.ts +0 -30
  152. package/components/BindTotp/styles.less +0 -57
  153. package/components/ChangeLanguage/index.tsx +0 -35
  154. package/components/ChangePassword/core/firstLoginReset.tsx +0 -111
  155. package/components/ChangePassword/core/rotateReset.tsx +0 -114
  156. package/components/ChangePassword/index.tsx +0 -72
  157. package/components/CompleteInfo/core/completeInfo.tsx +0 -155
  158. package/components/CompleteInfo/index.tsx +0 -45
  159. package/components/CompleteInfo/interface.ts +0 -40
  160. package/components/CompleteInfo/styles.less +0 -7
  161. package/components/DownloadAuthenticator/index.tsx +0 -97
  162. package/components/DownloadAuthenticator/interface.ts +0 -22
  163. package/components/DownloadAuthenticator/styles.less +0 -52
  164. package/components/Error/index.tsx +0 -21
  165. package/components/Error/interface.ts +0 -9
  166. package/components/Error/styles.less +0 -12
  167. package/components/ForgetPassword/core/resetPassword.tsx +0 -162
  168. package/components/ForgetPassword/index.tsx +0 -78
  169. package/components/ForgetPassword/interface.ts +0 -32
  170. package/components/Guard/Guard.tsx +0 -295
  171. package/components/Guard/authClient.ts +0 -44
  172. package/components/Guard/config.ts +0 -19
  173. package/components/Guard/event.ts +0 -52
  174. package/components/Guard/index.tsx +0 -4
  175. package/components/Guard/module.ts +0 -20
  176. package/components/Guard/stateMachine.ts +0 -152
  177. package/components/Guard/styles.less +0 -461
  178. package/components/IconFont/iconfont.js +0 -74
  179. package/components/IconFont/index.tsx +0 -16
  180. package/components/IconFont/style.less +0 -6
  181. package/components/IconFont/svg.js +0 -2
  182. package/components/ImagePro/index.tsx +0 -53
  183. package/components/ImagePro/styles.less +0 -40
  184. package/components/InputNumber/index.tsx +0 -33
  185. package/components/Login/codemap.ts +0 -49
  186. package/components/Login/core/withAD.tsx +0 -9
  187. package/components/Login/core/withAppQrcode.tsx +0 -49
  188. package/components/Login/core/withLDAP.tsx +0 -146
  189. package/components/Login/core/withPassword/FormItemAccount.tsx +0 -42
  190. package/components/Login/core/withPassword/GraphicVerifyCode.tsx +0 -30
  191. package/components/Login/core/withPassword/InputAccount.tsx +0 -64
  192. package/components/Login/core/withPassword/index.tsx +0 -173
  193. package/components/Login/core/withPhonecode.tsx +0 -122
  194. package/components/Login/core/withWechatMiniQrcode.tsx +0 -60
  195. package/components/Login/core/withWechatmpQrcode.tsx +0 -53
  196. package/components/Login/index.tsx +0 -374
  197. package/components/Login/props.ts +0 -74
  198. package/components/Login/socialLogin/index.tsx +0 -407
  199. package/components/Login/socialLogin/style.less +0 -69
  200. package/components/Login/styles.less +0 -53
  201. package/components/MFA/VerifyCodeInput/VerifyCodeFormItem.tsx +0 -41
  202. package/components/MFA/VerifyCodeInput/index.tsx +0 -145
  203. package/components/MFA/VerifyCodeInput/style.less +0 -35
  204. package/components/MFA/codemap.ts +0 -24
  205. package/components/MFA/core/email.tsx +0 -203
  206. package/components/MFA/core/face.tsx +0 -297
  207. package/components/MFA/core/face_deps.tsx +0 -37
  208. package/components/MFA/core/sms.tsx +0 -203
  209. package/components/MFA/core/totp.tsx +0 -122
  210. package/components/MFA/index.tsx +0 -143
  211. package/components/MFA/mfaMethods/index.tsx +0 -88
  212. package/components/MFA/mfaMethods/style.less +0 -39
  213. package/components/MFA/props.ts +0 -51
  214. package/components/MFA/styles.less +0 -100
  215. package/components/NeedHelpView/core/describeQuestions.tsx +0 -245
  216. package/components/NeedHelpView/index.tsx +0 -47
  217. package/components/RecoveryCode/core/useCode.tsx +0 -71
  218. package/components/RecoveryCode/index.tsx +0 -27
  219. package/components/RecoveryCode/interface.ts +0 -31
  220. package/components/RecoveryCode/style.less +0 -13
  221. package/components/Register/codemap.ts +0 -12
  222. package/components/Register/components/Agreements/index.tsx +0 -81
  223. package/components/Register/components/Agreements/style.less +0 -44
  224. package/components/Register/core/WithEmail.tsx +0 -242
  225. package/components/Register/core/WithPhone.tsx +0 -184
  226. package/components/Register/index.tsx +0 -139
  227. package/components/Register/props.ts +0 -50
  228. package/components/SendCode/SendCodeBtn.tsx +0 -96
  229. package/components/SendCode/index.tsx +0 -94
  230. package/components/SendCode/style.less +0 -31
  231. package/components/ShieldSpin/index.tsx +0 -27
  232. package/components/ShieldSpin/loading.svg +0 -29
  233. package/components/SubmitButton/index.tsx +0 -50
  234. package/components/SubmitSuccess/index.tsx +0 -66
  235. package/components/SubmitSuccess/interface.ts +0 -17
  236. package/components/Type/index.ts +0 -52
  237. package/components/ValidatorRules/ValidatorFormItem.tsx +0 -139
  238. package/components/ValidatorRules/index.ts +0 -20
  239. package/components/_utils/GuardErrorCode.ts +0 -9
  240. package/components/_utils/config.ts +0 -116
  241. package/components/_utils/guradHttp.ts +0 -101
  242. package/components/_utils/hooks/index.ts +0 -64
  243. package/components/assets/images/error.png +0 -0
  244. package/components/context/module/context.tsx +0 -23
  245. package/components/index.ts +0 -12
  246. package/examples.tsx +0 -87
  247. package/index.js +0 -1
  248. package/lib/static/media/loading.4a67a5f3.svg +0 -29
  249. package/scripts/publish.js +0 -57
package/lib/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- declare module '@authing/react-ui-components/components/AuthingDropdown/index' {
1
+ declare module '@authing/react-ui-components/common/AuthingDropdown/index' {
2
2
  import React, { FC } from 'react';
3
3
  import './style.less';
4
4
  /**
@@ -13,6 +13,43 @@ declare module '@authing/react-ui-components/components/AuthingDropdown/index' {
13
13
  }[];
14
14
  }>;
15
15
 
16
+ }
17
+ declare module '@authing/react-ui-components/common/AuthingTabs/index' {
18
+ import React, { FC } from 'react';
19
+ import './style.less';
20
+ export interface AuthingTabsProps extends React.HTMLAttributes<HTMLDivElement> {
21
+ activeKey?: string;
22
+ onTabClick: (key: string) => void;
23
+ showLen?: number;
24
+ tabs: {
25
+ key: string;
26
+ label: string;
27
+ component: JSX.Element;
28
+ }[];
29
+ }
30
+ export const AuthingTabs: FC<AuthingTabsProps>;
31
+
32
+ }
33
+ declare module '@authing/react-ui-components/common/CopyAbleText/index' {
34
+ import React, { FC } from 'react';
35
+ import './style.less';
36
+ export interface CopyTextProps extends React.HTMLAttributes<HTMLDivElement> {
37
+ }
38
+ export const CopyAbleText: FC<CopyTextProps>;
39
+
40
+ }
41
+ declare module '@authing/react-ui-components/common/VerifyCodeInput/index' {
42
+ import React, { FC } from 'react';
43
+ import './style.less';
44
+ interface VerifyCodeInputProps extends React.HTMLAttributes<HTMLDivElement> {
45
+ verifyCode: string[];
46
+ setVerifyCode: (code: string[]) => void;
47
+ length?: number;
48
+ onEnter?: Function;
49
+ }
50
+ export const VerifyCodeInput: FC<VerifyCodeInputProps>;
51
+ export {};
52
+
16
53
  }
17
54
  declare module '@authing/react-ui-components/components/AuthingGuard/AppMFALayout/index' {
18
55
  import { FC } from 'react';
@@ -358,14 +395,18 @@ declare module '@authing/react-ui-components/components/AuthingGuard/ToggleLang/
358
395
 
359
396
  }
360
397
  declare module '@authing/react-ui-components/components/AuthingGuard/api/appConfig' {
361
- import { Lang, Protocol } from '@authing/react-ui-components/components/AuthingGuard/types/index';
362
- import { IAzureAdConnectionConfig, ICasConnectionConfig, IOAuthConnectionConfig, ISamlConnectionConfig, OIDCConnectionConfig, SocialConnectionItem } from '@authing/react-ui-components/components/AuthingGuard/api/userPoolConfig';
363
- import { PasswordStrength } from '@authing/react-ui-components/components/_utils/index';
398
+ import { Lang, LoginMethods, Protocol } from '@authing/react-ui-components/components/AuthingGuard/types/index';
399
+ import { IAzureAdConnectionConfig, ICasConnectionConfig, ISamlConnectionConfig, OIDCConnectionConfig, SocialConnectionItem } from '@authing/react-ui-components/components/AuthingGuard/api/userPoolConfig';
364
400
  export enum ApplicationMfaType {
365
401
  SMS = "SMS",
366
402
  EMAIL = "EMAIL"
367
403
  }
368
404
  export const ApplicationMfaTypeLabel: () => Record<ApplicationMfaType, string>;
405
+ export type QrcodeTabsSettings = Record<LoginMethods, Array<{
406
+ id: string;
407
+ title: string;
408
+ isDefault?: boolean;
409
+ }>>;
369
410
  export interface OidcClientMetadata {
370
411
  grant_types: string[];
371
412
  client_id: string;
@@ -406,6 +447,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
406
447
  css: string;
407
448
  name: string;
408
449
  logo: string;
450
+ description?: string;
409
451
  redirectUris: string[];
410
452
  registerDisabled: boolean;
411
453
  registerTabs: {
@@ -415,9 +457,11 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
415
457
  [x: string]: string;
416
458
  };
417
459
  };
460
+ qrcodeTabsSettings: QrcodeTabsSettings;
418
461
  loginTabs: {
419
462
  list: string[];
420
463
  default: string;
464
+ defaultV2?: string;
421
465
  title: {
422
466
  [x: string]: string;
423
467
  };
@@ -425,13 +469,12 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
425
469
  socialConnections: SocialConnectionItem[];
426
470
  extendsFieldsEnabled: boolean;
427
471
  extendsFields: ExtendsField[];
428
- identifier: string;
429
472
  identityProviders: {
430
473
  identifier: string;
431
474
  protocol: Protocol;
432
475
  displayName: string;
433
476
  logo: string;
434
- config: ISamlConnectionConfig | OIDCConnectionConfig | ICasConnectionConfig | IAzureAdConnectionConfig | IOAuthConnectionConfig;
477
+ config: ISamlConnectionConfig | OIDCConnectionConfig | ICasConnectionConfig | IAzureAdConnectionConfig;
435
478
  }[];
436
479
  ssoPageComponentDisplay: {
437
480
  autoRegisterThenLoginHintInfo: boolean;
@@ -455,11 +498,31 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
455
498
  passwordTabConfig: ApplicationPasswordTabConfig;
456
499
  agreementEnabled: boolean;
457
500
  agreements: Agreement[];
458
- customPasswordStrength: any;
459
- passwordStrength: PasswordStrength;
460
- verifyCodeLength: number;
461
501
  }
462
- export const fetchAppConfig: (appId: string) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingResponse<ApplicationConfig>>;
502
+ export const fetchAppConfig: (appId: string) => Promise<import("@authing/react-ui-components/components/AuthingGuard/api/http").AuthingResponse<ApplicationConfig>>;
503
+
504
+ }
505
+ declare module '@authing/react-ui-components/components/AuthingGuard/api/http' {
506
+ export const requestClient: {
507
+ (input: RequestInfo, init?: RequestInit | undefined): Promise<any>;
508
+ get<T>(path: string, query?: Record<string, any>, init?: RequestInit | undefined): Promise<AuthingResponse<T>>;
509
+ post<T_1>(path: string, data: any, config?: {
510
+ headers: any;
511
+ } | undefined): Promise<AuthingResponse<T_1>>;
512
+ baseUrl: string;
513
+ setBaseUrl(base: string): void;
514
+ langHeader: string;
515
+ tenantHeader: string;
516
+ tenantId: string;
517
+ setLangHeader(key: string | undefined): void;
518
+ setTenantHeader(key: string | undefined): void;
519
+ setTenantId(tenantId: string): void;
520
+ };
521
+ export interface AuthingResponse<T = any> {
522
+ code: number;
523
+ message?: string;
524
+ data?: T;
525
+ }
463
526
 
464
527
  }
465
528
  declare module '@authing/react-ui-components/components/AuthingGuard/api/index' {
@@ -487,7 +550,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/sso' {
487
550
  };
488
551
  userInfo?: User;
489
552
  }
490
- export const trackSession: () => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingResponse<SessionData>>;
553
+ export const trackSession: () => Promise<import("@authing/react-ui-components/components/AuthingGuard/api/http").AuthingResponse<SessionData>>;
491
554
 
492
555
  }
493
556
  declare module '@authing/react-ui-components/components/AuthingGuard/api/userPoolConfig' {
@@ -545,9 +608,10 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/userPoo
545
608
  }
546
609
  export interface SocialConnectionItem {
547
610
  name: string;
548
- name_en: string;
611
+ displayName: string;
549
612
  logo: string;
550
613
  description: string;
614
+ identifier: string;
551
615
  provider: SocialConnectionProvider;
552
616
  authorizationUrl: string;
553
617
  tooltip: Record<Lang, string>;
@@ -600,9 +664,9 @@ declare module '@authing/react-ui-components/components/AuthingGuard/constants'
600
664
  export const defaultHeaders: {
601
665
  'userpool-id': string;
602
666
  'app-id': string;
603
- 'tenant-id': string;
604
667
  'sdk-version': string;
605
668
  'request-from': string;
669
+ 'tenant-id': string;
606
670
  lang: string;
607
671
  };
608
672
 
@@ -649,6 +713,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/index' {
649
713
  import './style.less';
650
714
  interface AuthingGuardProps extends GuardEventsHandler {
651
715
  appId: string;
716
+ tenantId?: string;
652
717
  config?: UserConfig;
653
718
  visible?: boolean;
654
719
  className?: string;
@@ -657,6 +722,30 @@ declare module '@authing/react-ui-components/components/AuthingGuard/index' {
657
722
  export const AuthingGuard: FC<AuthingGuardProps>;
658
723
  export {};
659
724
 
725
+ }
726
+ declare module '@authing/react-ui-components/components/AuthingGuard/locales/en/index' {
727
+ import common from '@authing/react-ui-components/components/AuthingGuard/locales/en/common/index';
728
+ import login from '@authing/react-ui-components/components/AuthingGuard/locales/en/login/index';
729
+ import user from '@authing/react-ui-components/components/AuthingGuard/locales/en/user/index';
730
+ import map from '@authing/react-ui-components/components/AuthingGuard/locales/en/map/index';
731
+ export { common, login, user, map };
732
+
733
+ }
734
+ declare module '@authing/react-ui-components/components/AuthingGuard/locales/index' {
735
+ import i18n from 'i18next';
736
+ import { LocalesConfig, Lang } from '@authing/react-ui-components/components/AuthingGuard/types/index';
737
+ export const changeLang: (lang: Lang) => void;
738
+ const initI18n: (localesConfig: LocalesConfig, lang?: "zh-CN" | "en-US" | undefined) => void;
739
+ export { i18n, initI18n };
740
+
741
+ }
742
+ declare module '@authing/react-ui-components/components/AuthingGuard/locales/zh/index' {
743
+ import common from '@authing/react-ui-components/components/AuthingGuard/locales/zh/common/index';
744
+ import login from '@authing/react-ui-components/components/AuthingGuard/locales/zh/login/index';
745
+ import user from '@authing/react-ui-components/components/AuthingGuard/locales/zh/user/index';
746
+ import map from '@authing/react-ui-components/components/AuthingGuard/locales/zh/map/index';
747
+ export { common, login, user, map };
748
+
660
749
  }
661
750
  declare module '@authing/react-ui-components/components/AuthingGuard/types/Forms' {
662
751
  /// <reference types="react" />
@@ -683,6 +772,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/types/Forms
683
772
  }
684
773
  export interface QrLoginFormProps extends BaseFormProps {
685
774
  type: LoginMethods.AppQr | LoginMethods.WxMinQr | LoginMethods.WechatMpQrcode;
775
+ idpId?: string;
686
776
  }
687
777
  export interface EmailRegisterFormProps extends BaseFormProps {
688
778
  onValidateFail?: (error: any) => void;
@@ -742,7 +832,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/types/Forms
742
832
  declare module '@authing/react-ui-components/components/AuthingGuard/types/GuardConfig' {
743
833
  import { AuthenticationClient, AuthenticationClientOptions, CommonMessage, SocialConnectionProvider, User } from 'authing-js-sdk';
744
834
  import { QrCodeAuthenticationClient } from 'authing-js-sdk/build/main/lib/authentication/QrCodeAuthenticationClient';
745
- import { SocialConnectionItem, EnterpriseConnectionItem, ApplicationConfig, PasswordLoginMethods, Agreement } from '@authing/react-ui-components/components/AuthingGuard/api/index';
835
+ import { SocialConnectionItem, EnterpriseConnectionItem, ApplicationConfig, PasswordLoginMethods, Agreement, QrcodeTabsSettings } from '@authing/react-ui-components/components/AuthingGuard/api/index';
746
836
  import { Lang } from '@authing/react-ui-components/components/AuthingGuard/types/Locales';
747
837
  export type { AuthenticationClient, CommonMessage, User } from 'authing-js-sdk';
748
838
  export enum GuardMode {
@@ -916,6 +1006,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/types/Guard
916
1006
  export interface UserConfig {
917
1007
  logo?: string;
918
1008
  title?: string;
1009
+ description?: string;
919
1010
  zIndex?: number;
920
1011
  isSSO?: boolean;
921
1012
  mode?: GuardMode;
@@ -972,6 +1063,8 @@ declare module '@authing/react-ui-components/components/AuthingGuard/types/Guard
972
1063
  publicKey: ApplicationConfig['publicKey'];
973
1064
  agreementEnabled: boolean;
974
1065
  agreements: Agreement[];
1066
+ loginMethodTitleMapping: Record<string, string>;
1067
+ qrcodeTabsSettings: QrcodeTabsSettings;
975
1068
  }
976
1069
  export interface LocalesConfig {
977
1070
  defaultLang?: Lang;
@@ -1004,1169 +1097,133 @@ declare module '@authing/react-ui-components/components/AuthingGuard/types/index
1004
1097
  export * from '@authing/react-ui-components/components/AuthingGuard/types/Locales';
1005
1098
 
1006
1099
  }
1007
- declare module '@authing/react-ui-components/components/AuthingTabs/index' {
1008
- import React, { FC } from 'react';
1009
- import './style.less';
1010
- export interface AuthingTabsProps extends React.HTMLAttributes<HTMLDivElement> {
1011
- activeKey?: string;
1012
- onTabClick: (key: string) => void;
1013
- showLen?: number;
1014
- tabs: {
1015
- key: string;
1016
- label: string;
1017
- component: JSX.Element;
1018
- }[];
1019
- }
1020
- export const AuthingTabs: FC<AuthingTabsProps>;
1021
-
1022
- }
1023
- declare module '@authing/react-ui-components/components/BindTotp/core/bindSuccess' {
1024
- import React from 'react';
1025
- export interface BindSuccessProps {
1026
- onBind: any;
1027
- secret: string;
1028
- }
1029
- export const BindSuccess: React.FC<BindSuccessProps>;
1030
-
1031
- }
1032
- declare module '@authing/react-ui-components/components/BindTotp/core/securityCode' {
1033
- import React from 'react';
1034
- export interface SecurityCodeProps {
1035
- mfaToken: string;
1036
- qrcode: string;
1037
- onNext: any;
1038
- changeModule: any;
1039
- }
1040
- export const SecurityCode: React.FC<SecurityCodeProps>;
1100
+ declare module '@authing/react-ui-components/components/index' {
1101
+ import { AuthingGuard } from '@authing/react-ui-components/components/AuthingGuard/index';
1102
+ export * from '@authing/react-ui-components/components/AuthingGuard/types/index';
1103
+ export * from '@authing/react-ui-components/components/AuthingGuard/hooks/index';
1104
+ export type { AuthenticationClientOptions } from 'authing-js-sdk';
1105
+ export { AuthingGuard };
1041
1106
 
1042
1107
  }
1043
- declare module '@authing/react-ui-components/components/BindTotp/index' {
1108
+ declare module '@authing/react-ui-components/context/base' {
1044
1109
  import React from 'react';
1045
- import { GuardBindTotpViewProps } from '@authing/react-ui-components/components/BindTotp/interface';
1046
- import './styles.less';
1047
- export const GuardBindTotpView: React.FC<GuardBindTotpViewProps>;
1048
-
1049
- }
1050
- declare module '@authing/react-ui-components/components/BindTotp/interface' {
1051
- import { IG2Config, IG2Events, IG2FCProps } from '@authing/react-ui-components/components/Type/index';
1052
- import { AuthenticationClient, User } from '@authing/react-ui-components/components/index';
1053
- import { GuardMFAInitData } from '@authing/react-ui-components/components/MFA/props';
1054
- export interface BindTotpConfig extends IG2Config {
1055
- }
1056
- export const getDefaultMFAConfig: () => BindTotpConfig;
1057
- export interface BindTotpEvents extends IG2Events {
1058
- onLogin?: (user: User, authClient: AuthenticationClient) => void;
1059
- }
1060
- export interface GuardBindTotpInitData extends GuardMFAInitData {
1061
- }
1062
- export interface GuardBindTotpProps extends IG2FCProps, BindTotpEvents {
1063
- config: Partial<BindTotpConfig>;
1064
- initData: GuardBindTotpInitData;
1065
- }
1066
- export interface GuardBindTotpViewProps extends GuardBindTotpProps {
1067
- config: BindTotpConfig;
1068
- initData: GuardBindTotpInitData;
1069
- }
1070
-
1071
- }
1072
- declare module '@authing/react-ui-components/components/ChangeLanguage/index' {
1073
- /// <reference types="react" />
1074
- export const ChangeLanguage: (props: any) => JSX.Element;
1075
-
1076
- }
1077
- declare module '@authing/react-ui-components/components/ChangePassword/core/firstLoginReset' {
1078
- /// <reference types="react" />
1079
- interface FirstLoginResetProps {
1080
- onReset: any;
1081
- publicConfig: any;
1082
- initData: any;
1110
+ export function createBaseContext<C>(): readonly [React.Context<C | undefined>, () => C];
1111
+ export interface IBaseAction<ActionType = string> {
1112
+ type: ActionType & string;
1113
+ payload?: any;
1114
+ [key: string]: string;
1083
1115
  }
1084
- export const FirstLoginReset: (props: FirstLoginResetProps) => JSX.Element;
1085
- export {};
1086
-
1087
- }
1088
- declare module '@authing/react-ui-components/components/ChangePassword/core/rotateReset' {
1089
- /// <reference types="react" />
1090
- interface RotateResetProps {
1091
- onReset: any;
1092
- publicConfig: any;
1093
- initData: any;
1116
+ export interface IBaseContext<S> {
1117
+ state: S;
1118
+ [k: string]: any;
1094
1119
  }
1095
- export const RotateReset: (props: RotateResetProps) => JSX.Element;
1096
- export {};
1120
+ export type BaseContextComponent<Props> = React.PropsWithChildren<Props>;
1097
1121
 
1098
1122
  }
1099
- declare module '@authing/react-ui-components/components/ChangePassword/index' {
1123
+ declare module '@authing/react-ui-components/context/global/context' {
1100
1124
  /// <reference types="react" />
1101
- export const GuardChangePassword: (props: any) => JSX.Element;
1102
-
1103
- }
1104
- declare module '@authing/react-ui-components/components/CompleteInfo/core/completeInfo' {
1105
- import React from 'react';
1106
- import { ExtendsField } from '@authing/react-ui-components/components/AuthingGuard/api/index';
1107
- import { GuardCompleteInfoViewProps } from '@authing/react-ui-components/components/CompleteInfo/interface';
1108
- export interface CompleteInfoProps {
1109
- extendsFields: ExtendsField[];
1110
- onRegisterInfoCompleted?: GuardCompleteInfoViewProps['onRegisterInfoCompleted'];
1111
- onRegisterInfoCompletedError?: GuardCompleteInfoViewProps['onRegisterInfoCompletedError'];
1112
- }
1113
- export const CompleteInfo: React.FC<CompleteInfoProps>;
1114
-
1115
- }
1116
- declare module '@authing/react-ui-components/components/CompleteInfo/index' {
1117
- import React from 'react';
1118
- import { GuardCompleteInfoViewProps } from '@authing/react-ui-components/components/CompleteInfo/interface';
1119
- import './styles.less';
1120
- export const GuardCompleteInfoView: React.FC<GuardCompleteInfoViewProps>;
1121
-
1122
- }
1123
- declare module '@authing/react-ui-components/components/CompleteInfo/interface' {
1124
- import { AuthenticationClient, CommonMessage, User } from 'authing-js-sdk';
1125
- import { IG2Config, IG2Events, IG2FCProps } from '@authing/react-ui-components/components/Type/index';
1126
- export interface CompleteInfoConfig extends IG2Config {
1127
- }
1128
- export const getDefaultLoginConfig: () => CompleteInfoConfig;
1129
- export interface CompleteInfoEvents extends IG2Events {
1130
- onRegisterInfoCompleted?: (user: User, udfs: {
1131
- definition: any;
1132
- value: any;
1133
- }[], authClient: AuthenticationClient) => void;
1134
- onRegisterInfoCompletedError?: (error: CommonMessage, udfs: {
1135
- definition: any;
1136
- value: any;
1137
- }[], authClient: AuthenticationClient) => void;
1138
- }
1139
- export interface GuardCompleteInfoProps extends IG2FCProps, CompleteInfoEvents {
1140
- config: Partial<CompleteInfoConfig>;
1141
- }
1142
- export interface GuardCompleteInfoViewProps extends GuardCompleteInfoProps {
1143
- config: CompleteInfoConfig;
1144
- }
1145
-
1146
- }
1147
- declare module '@authing/react-ui-components/components/CopyAbleText/index' {
1148
- import React, { FC } from 'react';
1149
- import './style.less';
1150
- export interface CopyTextProps extends React.HTMLAttributes<HTMLDivElement> {
1125
+ import { IBaseContext, BaseContextComponent } from '@authing/react-ui-components/context/base';
1126
+ import { IState } from '@authing/react-ui-components/context/global/reducer';
1127
+ export interface IGuardContext extends IBaseContext<IState> {
1128
+ dispatch: Function;
1129
+ getValue: (key: keyof IState) => any;
1130
+ setValue: (key: keyof IState, value: any) => void;
1151
1131
  }
1152
- export const CopyAbleText: FC<CopyTextProps>;
1132
+ export function useGuardContext(): IGuardContext;
1133
+ export function GuardContext({ children, value, }: BaseContextComponent<Record<string, any>>): JSX.Element;
1153
1134
 
1154
1135
  }
1155
- declare module '@authing/react-ui-components/components/DownloadAuthenticator/index' {
1156
- import React from 'react';
1157
- import { GuardDownloadATViewProps } from '@authing/react-ui-components/components/DownloadAuthenticator/interface';
1158
- import './styles.less';
1159
- export const GuardDownloadATView: React.FC<GuardDownloadATViewProps>;
1136
+ declare module '@authing/react-ui-components/context/global/reducer' {
1137
+ import { GuardConfig, ActiveTabs, GuardScenes, UserConfig, GuardEventsHandler, LocalesConfig, Lang } from '@authing/react-ui-components/components/AuthingGuard/types/index';
1138
+ import { AuthenticationClient } from 'authing-js-sdk';
1139
+ import { IBaseAction } from '@authing/react-ui-components/context/base';
1140
+ import { ApplicationMfaType } from '@authing/react-ui-components/components/AuthingGuard/api/appConfig';
1141
+ export type IState = {
1142
+ config: GuardConfig;
1143
+ userConfig: UserConfig;
1144
+ authClient: AuthenticationClient;
1145
+ activeTabs: ActiveTabs;
1146
+ guardScenes: GuardScenes;
1147
+ guardTitle: string;
1148
+ mfaData: {
1149
+ mfaToken: string;
1150
+ phone?: string;
1151
+ email?: string;
1152
+ applicationMfa?: {
1153
+ status: 0 | 1;
1154
+ mfaPolicy: ApplicationMfaType;
1155
+ sort: number;
1156
+ }[];
1157
+ };
1158
+ userPoolId: string;
1159
+ appId: string;
1160
+ guardEvents: GuardEventsHandler;
1161
+ localesConfig: LocalesConfig;
1162
+ lang?: Lang;
1163
+ realHost: string;
1164
+ };
1165
+ export const reducer: (state: IState, { type, ...payloads }: IBaseAction) => any;
1160
1166
 
1161
1167
  }
1162
- declare module '@authing/react-ui-components/components/DownloadAuthenticator/interface' {
1163
- import { IG2Config, IG2Events, IG2FCProps } from '@authing/react-ui-components/components/Type/index';
1164
- export interface DownloadATConfig extends IG2Config {
1165
- }
1166
- export const getDefaultDownloadAuthenticatorConfig: () => DownloadATConfig;
1167
- export interface DownloadATEvents extends IG2Events {
1168
- }
1169
- export interface GuardDownloadATProps extends IG2FCProps, DownloadATEvents {
1170
- config: Partial<DownloadATConfig>;
1171
- }
1172
- export interface GuardDownloadATViewProps extends GuardDownloadATProps {
1173
- config: DownloadATConfig;
1174
- }
1168
+ declare module '@authing/react-ui-components/index' {
1169
+ export {};
1175
1170
 
1176
1171
  }
1177
- declare module '@authing/react-ui-components/components/Error/index' {
1178
- import React from 'react';
1179
- import { GuardErrorViewProps } from '@authing/react-ui-components/components/Error/interface';
1180
- import './styles.less';
1181
- export const GuardErrorView: React.FC<GuardErrorViewProps>;
1172
+ declare module '@authing/react-ui-components/reportWebVitals' {
1173
+ import { ReportHandler } from 'web-vitals';
1174
+ const reportWebVitals: (onPerfEntry?: ReportHandler | undefined) => void;
1175
+ export default reportWebVitals;
1182
1176
 
1183
1177
  }
1184
- declare module '@authing/react-ui-components/components/Error/interface' {
1185
- export interface ErrorInitData {
1186
- messages?: string;
1187
- }
1188
- export interface GuardErrorProps {
1189
- initData?: ErrorInitData;
1190
- }
1191
- export interface GuardErrorViewProps extends GuardErrorProps {
1192
- }
1178
+ declare module '@authing/react-ui-components/setupTests' {
1179
+ import '@testing-library/jest-dom';
1193
1180
 
1194
1181
  }
1195
- declare module '@authing/react-ui-components/components/ForgetPassword/core/resetPassword' {
1196
- /// <reference types="react" />
1197
- interface ResetPasswordProps {
1198
- onReset: any;
1199
- publicConfig: any;
1200
- onSend: (type: 'email' | 'phone') => void;
1201
- onSendError: (type: 'email' | 'phone', error: any) => void;
1202
- }
1203
- export const ResetPassword: (props: ResetPasswordProps) => JSX.Element;
1204
- export {};
1182
+ declare module '@authing/react-ui-components/utils/clipboard' {
1183
+ export const copyToClipboard: (str: string) => void;
1205
1184
 
1206
1185
  }
1207
- declare module '@authing/react-ui-components/components/ForgetPassword/index' {
1208
- import React from 'react';
1209
- import { ForgetPasswordViewProps } from '@authing/react-ui-components/components/ForgetPassword/interface';
1210
- export const GuardForgetPassword: React.FC<ForgetPasswordViewProps>;
1186
+ declare module '@authing/react-ui-components/utils/index' {
1187
+ import { Rule } from 'antd/lib/form';
1188
+ import qs from 'qs';
1189
+ export * from '@authing/react-ui-components/utils/popupCenter';
1190
+ export * from '@authing/react-ui-components/utils/clipboard';
1191
+ export const VALIDATE_PATTERN: {
1192
+ readonly email: RegExp;
1193
+ readonly phone: RegExp;
1194
+ readonly ip: RegExp;
1195
+ readonly host: RegExp;
1196
+ };
1197
+ export const validate: (type: keyof typeof VALIDATE_PATTERN, val: string) => boolean;
1198
+ export const getRequiredRules: (msg: string) => Rule[];
1199
+ export function getDeviceName(): string | null;
1200
+ export type STYLE_RECORD_KEY = 'appConfig' | 'userConfig';
1201
+ export const insertStyles: (styles: string | any, recordKey: STYLE_RECORD_KEY) => void;
1202
+ export const removeStyles: (recordKey: STYLE_RECORD_KEY) => void;
1203
+ export const useTitle: (title: string, prefix?: string | undefined) => void;
1204
+ export const getClassnames: (classnames: (string | boolean | undefined)[]) => string;
1205
+ /**
1206
+ * https://www.itranslater.com/qa/details/2115518846294557696
1207
+ * Simple object check.
1208
+ * @param item
1209
+ * @returns {boolean}
1210
+ */
1211
+ export function isObject(item: any): any;
1212
+ /**
1213
+ * https://www.itranslater.com/qa/details/2115518846294557696
1214
+ * Deep merge two objects.
1215
+ * @param target
1216
+ * @param ...sources
1217
+ */
1218
+ export function deepMerge<T extends any = any>(target: T, ...sources: any[]): T;
1219
+ export const getUserRegisterParams: () => {
1220
+ key: string;
1221
+ value: string | string[] | qs.ParsedQs | qs.ParsedQs[] | undefined;
1222
+ }[];
1223
+ export const isWechatBrowser: () => boolean;
1211
1224
 
1212
1225
  }
1213
- declare module '@authing/react-ui-components/components/ForgetPassword/interface' {
1214
- import { AuthenticationClient, CommonMessage } from '@authing/react-ui-components/components/index';
1215
- import { IG2Config, IG2Events, IG2FCProps, IG2FCViewProps } from '@authing/react-ui-components/components/Type/index';
1216
- export interface ForgetPasswordEvents extends IG2Events {
1217
- onPwdEmailSend?: (authClient: AuthenticationClient) => void;
1218
- onPwdEmailSendError?: (error: CommonMessage, authClient: AuthenticationClient) => void;
1219
- onPwdPhoneSend?: (authClient: AuthenticationClient) => void;
1220
- onPwdPhoneSendError?: (error: CommonMessage, authClient: AuthenticationClient) => void;
1221
- onPwdReset?: (authClient: AuthenticationClient) => void;
1222
- onPwdResetError?: (error: CommonMessage, authClient: AuthenticationClient) => void;
1223
- }
1224
- export interface ForgetPasswordConfig extends IG2Config {
1225
- }
1226
- export interface ForgetPasswordProps extends IG2FCProps, ForgetPasswordEvents {
1227
- config: Partial<IG2Config>;
1228
- }
1229
- export interface ForgetPasswordViewProps extends ForgetPasswordProps, IG2FCViewProps {
1230
- config: IG2Config;
1231
- }
1232
-
1233
- }
1234
- declare module '@authing/react-ui-components/components/Guard/Guard' {
1235
- /// <reference types="react" />
1236
- import { GuardEvents } from '@authing/react-ui-components/components/Guard/event';
1237
- import { IG2FCProps } from '@authing/react-ui-components/components/Type/index';
1238
- import { GuardLocalConfig } from '@authing/react-ui-components/components/Guard/config';
1239
- import './styles.less';
1240
- export interface GuardProps extends GuardEvents, IG2FCProps {
1241
- tenantId?: string;
1242
- config?: Partial<GuardLocalConfig>;
1243
- visible?: boolean;
1244
- }
1245
- export const Guard: (props: GuardProps) => JSX.Element;
1246
-
1247
- }
1248
- declare module '@authing/react-ui-components/components/Guard/authClient' {
1249
- import { AuthenticationClient } from 'authing-js-sdk';
1250
- import { GuardLocalConfig } from '@authing/react-ui-components/components/Guard/config';
1251
- export const initAuthClient: (config: GuardLocalConfig, appId: string, tenantId?: string | undefined) => AuthenticationClient;
1252
- export const getAuthClient: () => AuthenticationClient;
1253
- export const useAuthClient: () => AuthenticationClient;
1254
-
1255
- }
1256
- declare module '@authing/react-ui-components/components/Guard/config' {
1257
- import { LoginConfig } from '@authing/react-ui-components/components/Login/props';
1258
- import { RegisterConfig } from '@authing/react-ui-components/components/Register/props';
1259
- export interface GuardComponentConifg extends Partial<GuardLocalConfig> {
1260
- }
1261
- export interface GuardLocalConfig extends RegisterConfig, LoginConfig {
1262
- }
1263
- export const getDefaultGuardLocalConfig: () => GuardLocalConfig;
1264
-
1265
- }
1266
- declare module '@authing/react-ui-components/components/Guard/event' {
1267
- import { CompleteInfoEvents } from '@authing/react-ui-components/components/CompleteInfo/interface';
1268
- import { ForgetPasswordEvents } from '@authing/react-ui-components/components/ForgetPassword/interface';
1269
- import { LoginEvents } from '@authing/react-ui-components/components/Login/props';
1270
- import { RegisterEvents } from '@authing/react-ui-components/components/Register/props';
1271
- export interface GuardEvents extends LoginEvents, RegisterEvents, CompleteInfoEvents, ForgetPasswordEvents {
1272
- }
1273
- export const guardEventsFilter: (props: any) => GuardEvents;
1274
- export const guardEventsHijacking: (events: GuardEvents) => GuardEvents;
1275
-
1276
- }
1277
- declare module '@authing/react-ui-components/components/Guard/index' {
1278
- export * from '@authing/react-ui-components/components/Guard/Guard';
1279
- export * from '@authing/react-ui-components/components/Guard/module';
1280
- export * from '@authing/react-ui-components/components/Guard/event';
1281
- export * from '@authing/react-ui-components/components/Guard/config';
1282
-
1283
- }
1284
- declare module '@authing/react-ui-components/components/Guard/module' {
1285
- export enum GuardModuleType {
1286
- ERROR = "error",
1287
- LOGIN = "login",
1288
- REGISTER = "register",
1289
- MFA = "mfa",
1290
- FORGET_PWD = "forgetPassword",
1291
- CHANGE_PWD = "changePassword",
1292
- DOWNLOAD_AT = "downloadAT",
1293
- BIND_TOTP = "bindTotp",
1294
- ANY_QUESTIONS = "anyQuestions",
1295
- COMPLETE_INFO = "completeInfo",
1296
- RECOVERY_CODE = "recoveryCode",
1297
- SUBMIT_SUCCESS = "submitSuccess"
1298
- }
1299
- export interface GuardModuleAction {
1300
- action: string;
1301
- module?: GuardModuleType;
1302
- message?: string;
1303
- initData?: any;
1304
- }
1305
-
1306
- }
1307
- declare module '@authing/react-ui-components/components/Guard/stateMachine' {
1308
- import { GuardLocalConfig } from '@authing/react-ui-components/components/Guard/config';
1309
- import { GuardModuleType } from '@authing/react-ui-components/components/Guard/module';
1310
- export interface ModuleState {
1311
- moduleName: GuardModuleType;
1312
- initData?: any;
1313
- }
1314
- export enum ActionType {
1315
- ChangeModule = "ChangeModule",
1316
- Back = "Back",
1317
- Init = "Init"
1318
- }
1319
- export interface StateMachineLog {
1320
- action: ActionType;
1321
- date: number;
1322
- dataSource: ModuleState;
1323
- }
1324
- export type ChangeModuleEvent = (nextModelu: GuardModuleType, initData?: any) => void;
1325
- export class GuardStateMachine {
1326
- private order;
1327
- private config;
1328
- private moduleStateHistory;
1329
- private changeMouleEvent;
1330
- private stateMachineLog;
1331
- constructor(changeMouleEvent: ChangeModuleEvent, initData: ModuleState);
1332
- globalWindow: () => Window | undefined;
1333
- next: (nextModelu: GuardModuleType, initData: any) => void;
1334
- back: (initData?: any) => void;
1335
- end: () => void;
1336
- historyPush: (data: ModuleState, actionType?: ActionType) => void;
1337
- historyBack: (data: ModuleState) => void;
1338
- setConfig: (config: GuardLocalConfig) => void;
1339
- }
1340
- export const useHistoryHijack: (back?: (() => void) | undefined) => ((state?: any) => void)[];
1341
- export const initGuardStateMachine: (changeMouleEvent: ChangeModuleEvent, initData: ModuleState) => GuardStateMachine;
1342
- export const getGuardStateMachine: () => GuardStateMachine;
1343
- export const useGuardStateMachine: () => GuardStateMachine;
1344
-
1345
- }
1346
- declare module '@authing/react-ui-components/components/IconFont/iconfont' {
1347
- export {};
1348
-
1349
- }
1350
- declare module '@authing/react-ui-components/components/IconFont/index' {
1351
- import React, { FC } from 'react';
1352
- import './iconfont';
1353
- import './style.less';
1354
- export const IconFont: FC<{
1355
- type: string;
1356
- style?: React.CSSProperties;
1357
- className?: string;
1358
- }>;
1359
-
1360
- }
1361
- declare module '@authing/react-ui-components/components/IconFont/svg' {
1362
- export const svgStr: "<svg><symbol id=\"authing-close-line\" viewBox=\"0 0 1024 1024\"><path d=\"M512 451.669333l211.2-211.2 60.330667 60.330667-211.2 211.2 211.2 211.2-60.330667 60.330667-211.2-211.2-211.2 211.2-60.330667-60.330667 211.2-211.2-211.2-211.2L300.8 240.469333z\" ></path></symbol><symbol id=\"authing-global-line\" viewBox=\"0 0 1024 1024\"><path d=\"M512 938.666667C276.352 938.666667 85.333333 747.648 85.333333 512S276.352 85.333333 512 85.333333s426.666667 191.018667 426.666667 426.666667-191.018667 426.666667-426.666667 426.666667z m-97.706667-99.541334A763.733333 763.733333 0 0 1 342.485333 554.666667H173.312a341.674667 341.674667 0 0 0 240.981333 284.458666zM427.946667 554.666667c6.442667 104.064 36.181333 201.813333 84.053333 288.085333A678.613333 678.613333 0 0 0 596.053333 554.666667h-168.106666z m422.741333 0h-169.173333a763.733333 763.733333 0 0 1-71.808 284.458666A341.674667 341.674667 0 0 0 850.688 554.666667zM173.312 469.333333h169.173333A763.733333 763.733333 0 0 1 414.293333 184.874667 341.674667 341.674667 0 0 0 173.312 469.333333z m254.677333 0h168.021334A678.613333 678.613333 0 0 0 512 181.248 678.613333 678.613333 0 0 0 427.946667 469.333333z m181.717334-284.458666A763.733333 763.733333 0 0 1 681.514667 469.333333h169.173333a341.674667 341.674667 0 0 0-240.981333-284.458666z\" ></path></symbol><symbol id=\"authing-english-input\" viewBox=\"0 0 1024 1024\"><path d=\"M597.333333 426.666667h85.333334v32.298666a192 192 0 0 1 298.666666 159.701334V853.333333h-85.333333v-234.666666c0-61.013333-50.133333-106.666667-106.666667-106.666667S682.666667 557.653333 682.666667 618.666667V853.333333h-85.333334V426.666667z m-85.333333-256v85.333333H170.666667v213.333333h341.333333v85.333334H170.666667v213.333333h341.333333v85.333333H85.333333V170.666667h426.666667z\" ></path></symbol><symbol id=\"authing-zhongwen\" viewBox=\"0 0 1024 1024\"><path d=\"M467.2 550.4v-76.8h-88.96v76.8h88.96z m89.6 0h90.24v-76.8H556.8v76.8zM467.2 384V256h89.6v128h179.84v256H556.8v128h-89.6V640H288.64V384H467.2zM512 870.4a358.4 358.4 0 1 0 0-716.8 358.4 358.4 0 0 0 0 716.8z m0 89.6a448 448 0 1 1 0-896 448 448 0 0 1 0 896z\" ></path></symbol><symbol id=\"authing-a-eye-line1\" viewBox=\"0 0 1024 1024\"><path d=\"M512 128a469.504 469.504 0 0 1 461.632 384A469.504 469.504 0 0 1 50.368 512 469.504 469.504 0 0 1 512 128z m0 682.688A384.256 384.256 0 0 0 886.464 512 384.192 384.192 0 0 0 137.6 512 384.192 384.192 0 0 0 512 810.688zM512 704a192 192 0 1 1 0-384 192 192 0 0 1 0 384z m0-85.312a106.688 106.688 0 1 0 0-213.376 106.688 106.688 0 0 0 0 213.376z\" ></path></symbol><symbol id=\"authing-a-eye-close-line1\" viewBox=\"0 0 1024 1024\"><path d=\"M398.592 801.344l-82.368-22.08 33.536-125.44A468.8 468.8 0 0 1 211.648 574.08l-91.84 91.904-60.352-60.416 91.904-91.84a467.52 467.52 0 0 1-101.184-216.32l83.968-15.36a384.128 384.128 0 0 0 755.712 0l83.968 15.36a467.52 467.52 0 0 1-101.12 216.32L964.48 605.44l-60.352 60.416-91.84-91.904a468.736 468.736 0 0 1-138.112 79.872l33.536 125.44-82.368 22.016-33.6-125.44a472.32 472.32 0 0 1-159.616 0l-33.6 125.44z\" ></path></symbol><symbol id=\"authing-a-user-line1\" viewBox=\"0 0 1024 1024\"><path d=\"M170.688 938.688a341.312 341.312 0 0 1 682.624 0H768a256 256 0 0 0-512 0H170.688z m341.312-384c-141.44 0-256-114.56-256-256s114.56-256 256-256 256 114.56 256 256-114.56 256-256 256z m0-85.376A170.624 170.624 0 1 0 512 128a170.624 170.624 0 1 0 0 341.312z\" ></path></symbol><symbol id=\"authing-a-smartphone-line1\" viewBox=\"0 0 1024 1024\"><path d=\"M298.688 170.688v682.624h426.624V170.688H298.688zM256 85.312h512a42.624 42.624 0 0 1 42.688 42.688v768a42.624 42.624 0 0 1-42.688 42.688H256A42.688 42.688 0 0 1 213.312 896V128A42.688 42.688 0 0 1 256 85.312z m256 640a42.688 42.688 0 1 1 0 85.376 42.688 42.688 0 0 1 0-85.376z\" ></path></symbol><symbol id=\"authing-a-mail-line3\" viewBox=\"0 0 1024 1024\"><path d=\"M128 128h768a42.688 42.688 0 0 1 42.688 42.688v682.624A42.688 42.688 0 0 1 896 896H128a42.624 42.624 0 0 1-42.688-42.688V170.688A42.688 42.688 0 0 1 128 128z m725.312 180.8L515.072 611.84 170.688 307.84v502.784h682.624V308.8zM192.448 213.312l322.176 284.288L832 213.312H192.448z\" ></path></symbol><symbol id=\"authing-a-lock-line1\" viewBox=\"0 0 1024 1024\"><path d=\"M810.688 426.688h42.624a42.688 42.688 0 0 1 42.688 42.624V896a42.624 42.624 0 0 1-42.688 42.688H170.688A42.688 42.688 0 0 1 128 896V469.312a42.688 42.688 0 0 1 42.688-42.624h42.624V384a298.688 298.688 0 0 1 597.376 0v42.688zM213.312 512v341.312h597.376V512H213.312z m256 85.312h85.376V768H469.312V597.312z m256-170.624V384a213.312 213.312 0 0 0-426.624 0v42.688h426.624z\" ></path></symbol><symbol id=\"authing-a-question-line1\" viewBox=\"0 0 1024 1024\"><path d=\"M512 938.688A426.688 426.688 0 1 1 512 85.312a426.688 426.688 0 0 1 0 853.376z m0-85.376A341.376 341.376 0 1 0 512 170.624a341.376 341.376 0 0 0 0 682.688zM469.312 640h85.376v85.312H469.312V640z m85.376-70.208v27.52H469.312v-64A42.688 42.688 0 0 1 512 490.688a64 64 0 1 0-62.72-76.544L365.44 397.376a149.376 149.376 0 1 1 189.184 172.416z\" ></path></symbol><symbol id=\"authing-a-shield-check-line1\" viewBox=\"0 0 1024 1024\"><path d=\"M512 42.688l350.592 77.888a42.688 42.688 0 0 1 33.408 41.6v426.176a256 256 0 0 1-113.984 212.992L512 981.312l-270.016-179.968A255.872 255.872 0 0 1 128 588.352V162.24c0-20.032 13.888-37.312 33.408-41.664L512 42.688z m0 87.424L213.312 196.416v391.936c0 57.024 28.544 110.336 76.032 141.952L512 878.784l222.72-148.48a170.56 170.56 0 0 0 75.968-141.952V196.48L512 130.112z m189.952 220.672l60.352 60.352-271.488 271.552L309.76 501.632l60.352-60.352 120.64 120.704 211.2-211.2z\" ></path></symbol><symbol id=\"authing-phone\" viewBox=\"0 0 1024 1024\"><path d=\"M256 85.312h512a42.624 42.624 0 0 1 42.688 42.688v768a42.624 42.624 0 0 1-42.688 42.688H256A42.688 42.688 0 0 1 213.312 896V128A42.688 42.688 0 0 1 256 85.312z m256 640a42.688 42.688 0 1 0 0 85.376 42.688 42.688 0 0 0 0-85.376z\" fill=\"#545968\" ></path></symbol><symbol id=\"authing-mail\" viewBox=\"0 0 1024 1024\"><path d=\"M128 128h768a42.624 42.624 0 0 1 42.688 42.688v682.624A42.624 42.624 0 0 1 896 896H128a42.624 42.624 0 0 1-42.688-42.688V170.688A42.688 42.688 0 0 1 128 128z m386.56 370.496l-273.6-232.32-55.232 65.024 329.408 279.68 323.456-279.936-55.808-64.512-268.16 232.064H514.56z\" fill=\"#545968\" ></path></symbol><symbol id=\"authing-face\" viewBox=\"0 0 1024 1024\"><path d=\"M170.688 853.376v-170.688H85.312v256h256v-85.312H170.688z m768 85.312v-256h-85.376v170.688h-170.624v85.312h256z m-597.376-768V85.376h-256v256h85.376V170.56h170.624z m597.376 170.688v-256h-256v85.312h170.624v170.688h85.376zM256 512a256 256 0 1 0 512 0 256 256 0 0 0-512 0z m165.504 116.096A128 128 0 0 1 384 537.6h51.2a76.8 76.8 0 0 0 153.6 0h51.2a128 128 0 0 1-218.496 90.496z m15.232-152.96a38.4 38.4 0 1 1-54.272-54.272 38.4 38.4 0 0 1 54.272 54.272z m204.8 0a38.4 38.4 0 1 1-54.272-54.272 38.4 38.4 0 0 1 54.272 54.272z\" fill=\"#545968\" ></path></symbol><symbol id=\"authing-totp\" viewBox=\"0 0 1024 1024\"><path d=\"M512 42.688l350.592 77.888a42.688 42.688 0 0 1 33.408 41.6v426.176a256 256 0 0 1-113.984 212.992L512 981.312l-270.016-179.968A256 256 0 0 1 128 588.352V162.24a42.688 42.688 0 0 1 33.408-41.6L512 42.624z m0 256a85.312 85.312 0 0 0-42.688 159.232V640h85.376V457.92A85.312 85.312 0 0 0 512 298.688z\" fill=\"#545968\" ></path></symbol><symbol id=\"authing-back\" viewBox=\"0 0 1024 1024\"><path d=\"M426.276571 512l362.057143 362.057143-103.424 103.424L219.428571 512 684.909714 46.518857 788.333714 149.942857 426.276571 512z\" fill=\"#878A95\" ></path></symbol><symbol id=\"authing-weixinxiaochengxu\" viewBox=\"0 0 1024 1024\"><path d=\"M90.125 512a421.875 421.875 0 1 0 843.75 0A421.875 421.875 0 0 0 90.125 512z\" fill=\"#71CE36\" ></path><path d=\"M608.08203125 285.34765625A128.98828125 128.98828125 0 0 0 478.77734375 414.65234375v195.85546875c0 35.91210938-29.53125 65.390625-65.33789063 65.390625a66.97265625 66.97265625 0 0 1-66.60351562-66.65625c0-37.125 29.53125-65.28515625 65.390625-65.28515625A31.74609375 31.74609375 0 0 0 444.13085937 512a31.74609375 31.74609375 0 0 0-32.00976562-32.00976563 128.671875 128.671875 0 0 0-124.18945313 124.24218751 129.09375 129.09375 0 0 0 124.18945313 134.47265624 128.98828125 128.98828125 0 0 0 129.41015625-129.46289062V413.43945312a65.54882813 65.54882813 0 0 1 65.28515625-65.28515624 65.54882813 65.54882813 0 0 1 65.28515625 65.28515625c0 35.859375-29.53125 65.390625-64.01953125 65.390625h-1.265625a31.74609375 31.74609375 0 0 0-32.0625 31.95703125 31.74609375 31.74609375 0 0 0 32.0625 32.00976562A128.98828125 128.98828125 0 0 0 736.12109375 413.38671875a126.82617188 126.82617188 0 0 0-128.14453125-127.98632813h0.05273438z\" fill=\"#FFFFFF\" ></path></symbol><symbol id=\"authing-qq-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M849.621333 619.904a1364.053333 1364.053333 0 0 0-28.8-80.469333l-38.826666-95.829334c0-1.109333 0.512-19.968 0.512-29.696C782.506667 250.026667 704.298667 85.333333 512 85.333333S241.493333 250.026667 241.493333 413.866667c0 9.770667 0.469333 28.629333 0.512 29.738666l-38.826666 95.829334a1398.485333 1398.485333 0 0 0-28.8 80.469333c-36.693333 116.778667-24.789333 165.12-15.744 166.186667 19.413333 2.304 75.562667-87.893333 75.562666-87.893334 0 52.224 27.178667 120.405333 86.016 169.642667-21.973333 6.698667-48.938667 17.024-66.304 29.653333-15.573333 11.392-13.610667 23.04-10.794666 27.733334 12.330667 20.522667 211.413333 13.098667 268.928 6.698666 57.472 6.4 256.597333 13.824 268.885333-6.741333 2.816-4.693333 4.778667-16.298667-10.794667-27.690667-17.365333-12.629333-44.330667-22.954667-66.346666-29.696 58.837333-49.194667 86.016-117.376 86.016-169.642666 0 0 56.149333 90.24 75.562666 87.893333 9.045333-1.066667 20.906667-49.365333-15.786666-166.144\" fill=\"#12B7F5\" ></path></symbol><symbol id=\"authing-dingtalk-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M512 85.333333C276.352 85.333333 85.333333 276.352 85.333333 512s191.018667 426.666667 426.666667 426.666667 426.666667-191.018667 426.666667-426.666667S747.648 85.333333 512 85.333333z m191.573333 385.706667l-0.256 0.597333c-17.92 38.314667-64.682667 113.493333-64.682666 113.493334l-0.213334-0.512-13.653333 23.808h65.834667l-125.781334 167.210666 28.586667-113.749333h-51.84l18.005333-75.221333a721.493333 721.493333 0 0 0-52.181333 14.890666s-27.562667 16.128-79.445333-31.104c0 0-34.986667-30.805333-14.677334-38.485333 8.618667-3.285333 41.856-7.466667 68.010667-10.965333 35.413333-4.778667 57.130667-7.338667 57.130667-7.338667s-109.013333 1.621333-134.869334-2.432c-25.856-4.053333-58.666667-47.232-65.664-85.162667 0 0-10.794667-20.821333 23.253334-10.965333 34.048 9.856 174.976 38.4 174.976 38.4S352.853333 397.312 340.608 383.573333c-12.202667-13.653333-35.882667-74.837333-32.810667-112.384 0 0 1.322667-9.386667 10.965334-6.826666 0 0 135.509333 61.866667 228.138666 95.786666 92.672 33.92 173.226667 51.157333 162.816 95.061334-0.853333 3.712-3.072 9.216-6.144 15.786666v0.042667z\" fill=\"#0089FF\" ></path></symbol><symbol id=\"authing-linkedin-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M782.293333 782.464H668.586667v-178.218667c0-42.496-0.853333-97.194667-59.306667-97.194666-59.264 0-68.309333 46.250667-68.309333 94.08v181.333333h-113.749334V416h109.226667v49.92h1.493333c15.274667-28.757333 52.394667-59.178667 107.861334-59.178667 115.2 0 136.533333 75.861333 136.533333 174.549334v201.173333h-0.042667zM298.794667 365.866667a65.962667 65.962667 0 0 1-54.912-102.784 66.048 66.048 0 1 1 54.869333 102.784h0.042667z m57.002666 416.597333H241.749333V416H355.84v366.464h-0.042667zM839.253333 128H184.704C153.301333 128 128 152.746667 128 183.338667v657.322666C128 871.253333 153.344 896 184.661333 896h654.421334C870.4 896 896 871.253333 896 840.661333V183.338667C896 152.746667 870.4 128 839.082667 128h0.170666z\" fill=\"#0A66C2\" ></path></symbol><symbol id=\"authing-apple-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M495.957333 308.138667c-37.376 0-95.232-42.496-156.16-40.96-80.384 1.024-154.112 46.592-195.584 118.784-83.456 144.896-21.504 358.912 59.904 476.672 39.936 57.344 87.04 121.856 149.504 119.808 59.904-2.56 82.432-38.912 155.136-38.912 72.192 0 92.672 38.912 156.16 37.376 64.512-1.024 105.472-58.368 144.896-116.224 45.568-66.56 64.512-131.072 65.536-134.656-1.536-0.512-125.44-48.128-126.976-191.488-1.024-119.808 97.792-177.152 102.4-179.712-56.32-82.432-142.848-91.648-173.056-93.696-78.848-6.144-144.896 43.008-181.76 43.008z m133.12-120.832c33.28-39.936 55.296-95.744 49.152-151.04-47.616 2.048-104.96 31.744-139.264 71.68-30.72 35.328-57.344 92.16-50.176 146.432 52.736 4.096 107.008-27.136 140.288-67.072z\" ></path></symbol><symbol id=\"authing-apple-web-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M495.957333 308.138667c-37.376 0-95.232-42.496-156.16-40.96-80.384 1.024-154.112 46.592-195.584 118.784-83.456 144.896-21.504 358.912 59.904 476.672 39.936 57.344 87.04 121.856 149.504 119.808 59.904-2.56 82.432-38.912 155.136-38.912 72.192 0 92.672 38.912 156.16 37.376 64.512-1.024 105.472-58.368 144.896-116.224 45.568-66.56 64.512-131.072 65.536-134.656-1.536-0.512-125.44-48.128-126.976-191.488-1.024-119.808 97.792-177.152 102.4-179.712-56.32-82.432-142.848-91.648-173.056-93.696-78.848-6.144-144.896 43.008-181.76 43.008z m133.12-120.832c33.28-39.936 55.296-95.744 49.152-151.04-47.616 2.048-104.96 31.744-139.264 71.68-30.72 35.328-57.344 92.16-50.176 146.432 52.736 4.096 107.008-27.136 140.288-67.072z\" ></path></symbol><symbol id=\"authing-gitlab-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M932.317 567.767l-47.212-145.306-93.573-287.998c-4.813-14.817-25.777-14.817-30.591 0L667.36 422.46H356.628l-93.577-287.998c-4.813-14.817-25.776-14.817-30.593 0L138.885 422.46l-47.21 145.31a32.166 32.166 0 0 0 11.683 35.963l408.628 296.89 408.631-296.888a32.17 32.17 0 0 0 11.684-35.965\" fill=\"#FC6D26\" ></path><path d=\"M512.002 900.628l155.365-478.17H356.635z\" fill=\"#E24329\" ></path><path d=\"M512.004 900.628L356.64 422.472H138.902z\" fill=\"#FC6D26\" ></path><path d=\"M138.891 422.466l-47.214 145.31a32.164 32.164 0 0 0 11.686 35.962l408.629 296.89z\" fill=\"#FCA326\" ></path><path d=\"M138.893 422.46h217.738L263.053 134.46c-4.812-14.819-25.778-14.819-30.59 0z\" fill=\"#E24329\" ></path><path d=\"M512.002 900.628l155.365-478.154h217.738z\" fill=\"#FC6D26\" ></path><path d=\"M885.115 422.466l47.214 145.31a32.164 32.164 0 0 1-11.685 35.962l-408.63 296.89z\" fill=\"#FCA326\" ></path><path d=\"M885.096 422.46H667.361l93.577-287.999c4.815-14.819 25.779-14.819 30.591 0z\" fill=\"#E24329\" ></path></symbol><symbol id=\"authing-google-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M85.333333 85.333333h853.333334v853.333334H85.333333z\" fill=\"#000000\" opacity=\".01\" ></path><path d=\"M263.765333 512c0-27.093333 4.608-53.077333 12.8-77.44L132.992 327.168A409.898667 409.898667 0 0 0 89.258667 512c0 66.389333 15.701333 129.066667 43.648 184.661333l143.488-107.52A242.133333 242.133333 0 0 1 263.765333 512\" fill=\"#FBBC05\" ></path><path d=\"M515.925333 265.472a250.026667 250.026667 0 0 1 157.013334 54.954667l124.16-121.344c-75.648-64.426667-172.586667-104.277333-281.173334-104.277334-168.618667 0-313.557333 94.421333-382.933333 232.362667l143.616 107.392c33.066667-98.346667 127.36-169.088 239.317333-169.088\" fill=\"#EA4335\" ></path><path d=\"M515.925333 758.485333c-112 0-206.293333-70.698667-239.36-169.045333l-143.573333 107.392c69.333333 137.941333 214.272 232.32 382.933333 232.32 104.021333 0 203.349333-36.138667 277.973334-103.936l-136.32-103.210667c-38.442667 23.722667-86.869333 36.48-141.696 36.48\" fill=\"#34A853\" ></path><path d=\"M923.178667 512c0-24.661333-3.925333-51.2-9.728-75.861333h-397.568V597.333333h228.821333a187.733333 187.733333 0 0 1-87.125333 124.672l136.32 103.210667c78.293333-71.210667 129.28-177.237333 129.28-313.216\" fill=\"#4285F4\" ></path></symbol><symbol id=\"authing-alipay-web-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M914.005333 655.274667c-163.413333-49.194667-258.346667-78.506667-284.928-87.978667a529.621333 529.621333 0 0 0 56.32-141.653333H546.133333V378.538667h170.666667v-29.013334h-170.666667V270.677333h-65.536c-11.946667 0-13.312 10.581333-13.312 10.581334v67.925333H307.2v29.013333h160.085333v47.104H336.213333v26.282667h265.557334a467.925333 467.925333 0 0 1-37.888 92.842667c-60.074667-19.797333-93.525333-33.450667-166.912-40.277334-138.922667-13.312-171.008 63.146667-176.128 109.909334C213.333333 685.397333 276.48 743.424 370.688 743.424s157.013333-43.690667 216.746667-116.053333c49.792 23.808 142.421333 65.066667 277.930666 123.818666A426.24 426.24 0 0 1 512 938.666667C276.352 938.666667 85.333333 747.648 85.333333 512S276.352 85.333333 512 85.333333s426.666667 191.018667 426.666667 426.666667a425.898667 425.898667 0 0 1-24.661334 143.274667z m-554.24 43.093333c-99.669333 0-115.370667-63.146667-110.250666-89.429333 5.12-26.282667 34.133333-60.416 89.770666-60.416 63.829333 0 120.832 16.384 189.44 49.493333-48.469333 63.146667-107.52 100.352-168.96 100.352z\" fill=\"#3379F6\" ></path></symbol><symbol id=\"authing-alipay-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M914.005333 655.274667c-163.413333-49.194667-258.346667-78.506667-284.928-87.978667a529.621333 529.621333 0 0 0 56.32-141.653333H546.133333V378.538667h170.666667v-29.013334h-170.666667V270.677333h-65.536c-11.946667 0-13.312 10.581333-13.312 10.581334v67.925333H307.2v29.013333h160.085333v47.104H336.213333v26.282667h265.557334a467.925333 467.925333 0 0 1-37.888 92.842667c-60.074667-19.797333-93.525333-33.450667-166.912-40.277334-138.922667-13.312-171.008 63.146667-176.128 109.909334C213.333333 685.397333 276.48 743.424 370.688 743.424s157.013333-43.690667 216.746667-116.053333c49.792 23.808 142.421333 65.066667 277.930666 123.818666A426.24 426.24 0 0 1 512 938.666667C276.352 938.666667 85.333333 747.648 85.333333 512S276.352 85.333333 512 85.333333s426.666667 191.018667 426.666667 426.666667a425.898667 425.898667 0 0 1-24.661334 143.274667z m-554.24 43.093333c-99.669333 0-115.370667-63.146667-110.250666-89.429333 5.12-26.282667 34.133333-60.416 89.770666-60.416 63.829333 0 120.832 16.384 189.44 49.493333-48.469333 63.146667-107.52 100.352-168.96 100.352z\" fill=\"#3379F6\" ></path></symbol><symbol id=\"authing-github-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M512 85.333333C276.266667 85.333333 85.333333 276.266667 85.333333 512a426.410667 426.410667 0 0 0 291.754667 404.821333c21.333333 3.712 29.312-9.088 29.312-20.309333 0-10.112-0.554667-43.690667-0.554667-79.445333-107.178667 19.754667-134.912-26.112-143.445333-50.133334-4.821333-12.288-25.6-50.133333-43.733333-60.288-14.933333-7.978667-36.266667-27.733333-0.554667-28.245333 33.621333-0.554667 57.6 30.933333 65.621333 43.733333 38.4 64.512 99.754667 46.378667 124.245334 35.2 3.754667-27.733333 14.933333-46.378667 27.221333-57.045333-94.933333-10.666667-194.133333-47.488-194.133333-210.688 0-46.421333 16.512-84.778667 43.733333-114.688-4.266667-10.666667-19.2-54.4 4.266667-113.066667 0 0 35.712-11.178667 117.333333 43.776a395.946667 395.946667 0 0 1 106.666667-14.421333c36.266667 0 72.533333 4.778667 106.666666 14.378667 81.578667-55.466667 117.333333-43.690667 117.333334-43.690667 23.466667 58.666667 8.533333 102.4 4.266666 113.066667 27.178667 29.866667 43.733333 67.712 43.733334 114.645333 0 163.754667-99.712 200.021333-194.645334 210.688 15.445333 13.312 28.8 38.912 28.8 78.933333 0 57.045333-0.554667 102.912-0.554666 117.333334 0 11.178667 8.021333 24.490667 29.354666 20.224A427.349333 427.349333 0 0 0 938.666667 512c0-235.733333-190.933333-426.666667-426.666667-426.666667z\" fill=\"#333333\" ></path></symbol><symbol id=\"authing-facebook-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M512 85.333333C276.352 85.333333 85.333333 276.352 85.333333 512c0 212.949333 156.032 389.461333 360.021334 421.504V635.306667h-108.373334V512h108.373334V418.005333c0-106.922667 63.658667-165.973333 161.152-165.973333 46.677333 0 95.488 8.32 95.488 8.32v104.96h-53.76c-53.034667 0-69.546667 32.896-69.546667 66.645333V512h118.314667l-18.901334 123.306667h-99.413333v298.197333C782.634667 901.504 938.666667 724.906667 938.666667 512c0-235.648-191.018667-426.666667-426.666667-426.666667z\" fill=\"#3579EB\" ></path></symbol><symbol id=\"authing-twitter-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M945.578667 241.322667a357.717333 357.717333 0 0 1-102.485334 28.074666A179.029333 179.029333 0 0 0 921.6 170.666667c-34.986667 20.821333-73.344 35.413333-113.322667 43.306666a178.432 178.432 0 0 0-304.042666 162.730667 506.624 506.624 0 0 1-367.786667-186.453333 177.834667 177.834667 0 0 0-24.149333 89.728c0 61.866667 31.488 116.48 79.36 148.48a177.834667 177.834667 0 0 1-80.810667-22.272v2.218666a178.56 178.56 0 0 0 143.146667 174.933334 179.541333 179.541333 0 0 1-80.64 3.114666A178.56 178.56 0 0 0 340.053333 710.4a358.101333 358.101333 0 0 1-264.149333 73.898667 504.746667 504.746667 0 0 0 273.493333 80.213333c328.234667 0 507.733333-271.914667 507.733334-507.733333 0-7.68-0.213333-15.445333-0.554667-23.04a362.453333 362.453333 0 0 0 89.045333-92.373334l-0.042666-0.042666z\" fill=\"#488BBF\" ></path></symbol><symbol id=\"authing-baidu-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M252.885333 533.205333c88.021333-18.901333 76.032-124.117333 73.386667-147.114666-4.309333-35.413333-45.994667-97.365333-102.613333-92.458667-71.253333 6.4-81.621333 109.269333-81.621334 109.269333-9.642667 47.573333 23.04 149.205333 110.848 130.304z m93.44 182.954667c-2.56 7.381333-8.32 26.282667-3.328 42.752 9.813333 36.949333 41.898667 38.613333 41.898667 38.613333h46.08v-112.64H381.610667c-22.186667 6.570667-32.853333 23.850667-35.285334 31.274667z m69.888-359.338667c48.64 0 87.893333-55.978667 87.893334-125.141333 0-69.12-39.253333-125.013333-87.893334-125.013333-48.512 0-87.893333 55.893333-87.893333 125.013333 0 69.162667 39.381333 125.141333 87.893333 125.141333z m209.408 8.234667c64.938667 8.448 106.709333-60.885333 115.029334-113.450667 8.490667-52.48-33.450667-113.408-79.445334-123.904-46.08-10.581333-103.637333 63.274667-108.885333 111.36-6.272 58.88 8.405333 117.674667 73.301333 125.994667z m0 147.114667c-79.573333-123.946667-192.554667-73.514667-230.4-10.453334-37.589333 63.018667-96.256 102.826667-104.576 113.408-8.448 10.410667-121.429333 71.381333-96.341333 182.784 25.045333 111.317333 113.152 109.226667 113.152 109.226667s64.896 6.4 140.202667-10.496c75.349333-16.682667 140.202667 4.181333 140.202666 4.181333s176 58.88 224.128-54.528c48.128-113.493333-27.178667-172.288-27.178666-172.288s-100.522667-77.781333-159.232-161.834666h0.042666z m-256.341333 330.666666c-49.408-9.856-69.077333-43.562667-71.552-49.322666-2.432-5.845333-16.469333-32.938667-9.045333-79.061334 21.333333-69.077333 82.218667-74.026667 82.218666-74.026666h60.928v-74.88l51.84 0.853333v276.437333H369.28z m195.84-0.810666c-51.029333-13.141333-53.376-49.408-53.376-49.408v-145.578667l53.376-0.853333v130.816c3.285333 13.994667 20.608 16.512 20.608 16.512h54.229333v-146.474667h56.832v194.986667h-131.669333z m318.037333-388.693334c0-25.173333-20.906667-100.864-98.346666-100.864-77.610667 0-87.978667 71.466667-87.978667 121.984 0 48.213333 4.053333 115.498667 100.437333 113.365334 96.426667-2.133333 85.888-109.226667 85.888-134.485334z\" fill=\"#3C6FF6\" ></path></symbol><symbol id=\"authing-weibo-fill\" viewBox=\"0 0 1170 1024\"><path d=\"M827.56691779 497.27832031c-13.75751953-4.05-23.14335938-6.87832031-15.87919922-24.94335937 15.55751953-39.21328125 17.16503906-73.09248047 0.32167969-97.1991211-31.62832031-45.32167969-118.41416016-42.81416016-217.92832032-1.22167968 0 0-31.11416016 13.69335938-23.20751953-11.05664063 15.23583984-49.17919922 12.98583984-90.32167969-10.86328125-114.17167969-53.93671875-54-197.35839844 2.05664063-320.33671875 124.97167969C147.68107794 465.77832031 94.1952381 563.42832031 94.1952381 647.83496094c0 161.48583984 207 259.71416016 409.62832031 259.71416015 265.56416016 0 442.22167969-154.28583984 442.22167969-276.87832031 0-74.05664063-62.35751953-115.97167969-118.47832031-133.39335937z\" fill=\"#FC001D\" ></path><path d=\"M504.40187872 849.62832031c-161.61328125 15.94335938-301.11328125-57.02080078-311.65664062-163.28583984-10.47832031-106.07080078 112.11416016-205.07080078 273.66503906-221.01416016 161.61328125-16.07080078 301.17744141 57.08583984 311.72080078 163.15751953C788.48107794 734.55664063 666.01691779 833.55664063 504.40187872 849.62832031z\" fill=\"#FFFFFF\" ></path><path d=\"M520.53859748 547.03583984c-76.95087891-19.99335938-163.80087891 18.32167969-197.29335938 86.14248047-34.00751953 69.10751953-1.09248047 145.86416016 76.62832031 170.93583985 80.48583984 25.97167969 175.37167969-13.82167969 208.41503906-88.45664063 32.39912109-73.02832031-8.16503906-148.05-87.75-168.62167969z\" fill=\"#010101\" ></path><path d=\"M461.78107794 723.5c-15.55664063 25.07167969-49.11416016 35.87167969-74.31416015 24.42832031-24.87919922-11.25-32.20751953-40.30664063-16.52167969-64.60664062 15.49248047-24.17167969 47.82832031-35.03583984 72.77167969-24.55664063 25.32832031 10.73496094 33.42832031 39.59912109 18.06416015 64.7991211z m51.42832032-66.08496094c-5.65664063 9.70664063-18.19335938 14.39912109-27.9 10.28496094-9.64248047-3.92167969-12.66416016-14.78583984-7.2-24.3 5.59335937-9.45 17.61416016-14.01416016 27.19335937-10.28583984 9.83496094 3.66503906 13.37080078 14.59335938 7.90664063 24.3z\" fill=\"#FFFFFF\" ></path><path d=\"M891.20939826 434.6a32.33496094 32.33496094 0 0 0 40.56416015-20.7 125.87167969 125.87167969 0 0 0-145.99248047-161.93583984 32.14248047 32.14248047 0 1 0 13.5 62.87167968 61.90751953 61.90751953 0 0 1 58.62832032 18.83496094 61.26416016 61.26416016 0 0 1 12.72832031 60.23671875 32.14248047 32.14248047 0 0 0 20.57167969 40.69248047z\" fill=\"#FF9500\" ></path><path d=\"M1003.96691779 201.82167969a258.42832031 258.42832031 0 0 0-245.95751953-79.71416016 37.41503906 37.41503906 0 1 0 15.68583984 73.28496094 183.72832031 183.72832031 0 0 1 213.36416016 236.37919922 37.28583984 37.28583984 0 1 0 71.1 23.14248047v-0.06416016a258.81416016 258.81416016 0 0 0-54.19335938-253.02832031z\" fill=\"#FF8D18\" ></path></symbol><symbol id=\"authing-wechatwork-service-provider-qrconnect-fill\" viewBox=\"0 0 1228 1024\"><path d=\"M790.74775187 745.54983521a13.5 13.5 0 0 0 1.6875 20.58782958 173.13766479 173.13766479 0 0 1 53.32516479 103.9501648 56.36233521 56.36233521 0 1 0 60.24407959-70.875 172.96875 172.96875 0 0 1-96.1875-53.66299438 13.5 13.5 0 0 0-19.06924438 0z\" fill=\"#FB6500\" ></path><path d=\"M1019.57291666 656.28125a56.19342041 56.19342041 0 0 0-16.19934082 33.91891479 172.96875 172.96875 0 0 1-53.49407959 96.35559083 13.5 13.5 0 1 0 20.58700562 17.21282959 172.96875 172.96875 0 0 1 103.95016479-53.3251648 56.36233521 56.36233521 0 1 0-54.67483521-94.16217041z\" fill=\"#0082EF\" ></path><path d=\"M860.77900187 497.31842041a56.36233521 56.36233521 0 0 0 33.91891479 95.85049438 172.96875 172.96875 0 0 1 96.35559082 53.49325562 13.5 13.5 0 1 0 17.21282959-20.58700562 173.13766479 173.13766479 0 0 1-53.32434082-103.95016479 56.36233521 56.36233521 0 0 0-94.16299438-24.80657959z\" fill=\"#2DBC00\" ></path><path d=\"M833.10416666 585.40625l-1.01266479 1.01266479a172.79983521 172.79983521 0 0 1-105.46875 55.18157959 56.02532959 56.02532959 0 0 0-24.97467042 94.16217041A56.36233521 56.36233521 0 0 0 797.49775187 701.84375a173.13766479 173.13766479 0 0 1 53.66299438-96.35559083 13.5 13.5 0 0 0-18.05657959-20.08190917z\" fill=\"#FFCC00\" ></path><path d=\"M492.56699625 98.90032959C391.48508707 110.03717041 299.85416666 153.23733521 234.04166666 220.73733521c-26.15625 26.66299438-47.41891479 56.70016479-63.11233521 88.76266479a309.15032959 309.15032959 0 0 0 21.76858521 312.1875c17.88766479 27 47.25 60.75 74.08108521 84.71282959l-12.14950562 95.51184082-1.35049438 4.05065918c-0.33782959 1.18075562-0.33782959 2.53125-0.50592042 3.71200562l-0.33782958 3.03799438 0.33782958 3.03717041a30.71282959 30.71282959 0 0 0 46.23733521 23.79391479h0.50592041l1.8564148-1.35049438 29.02532958-14.51184082 86.56842042-43.53799438a446.84967041 446.84967041 0 0 0 126.5625 17.38174438A453.9375 453.9375 0 0 0 698.77982584 770.52532959a56.19342041 56.19342041 0 0 1-38.30657959-58.89440918 381.20608521 381.20608521 0 0 1-159.63684082 15.86315918l-8.60641479-1.18157959a385.93157959 385.93157959 0 0 1-57.375-11.98059082 39.15032959 39.15032959 0 0 0-30.7128296 3.20526123l-2.3623352 1.18157959-71.21200561 41.84967041-3.03799439 1.8564148c-1.6875 1.01266479-2.53125 1.35049438-3.375 1.35049438a4.89440918 4.89440918 0 0 1-4.55657959-5.0625l2.70016479-10.96875 3.20690919-11.9814148 5.0625-19.74407958 5.90625-21.9375a29.86907959 29.86907959 0 0 0-10.80065919-33.24325562 311.34375 311.34375 0 0 1-71.88684081-74.92565918 243.50592041 243.50592041 0 0 1-17.55065919-246.03717041c12.82516479-25.65032959 29.70016479-49.44342041 50.625-70.875 54-55.6875 129.9375-91.125 213.97549439-100.23733521a398.58782959 398.58782959 0 0 1 87.41217041 0c83.53125 9.61825562 159.13174438 45.5625 212.7939148 100.91217042 20.75592041 21.43157959 37.63092041 45.5625 50.11907959 71.21282958 16.70608521 34.08782959 25.14358521 70.20016479 25.1435852 107.15625 0 3.88092041-0.33782959 7.76184083-0.50674439 11.47467042a56.19342041 56.19342041 0 0 1 69.1875 8.09967041l2.53125 3.03799438a307.46282959 307.46282959 0 0 0-30.71200561-159.97467041 344.58782959 344.58782959 0 0 0-62.4375-88.7626648A423.5625 423.5625 0 0 0 596.85416666 99.23733521a474.69342041 474.69342041 0 0 0-104.28717041-0.33782959z\" fill=\"#0082EF\" ></path></symbol><symbol id=\"authing-slack-5\" viewBox=\"0 0 1024 1024\"><path d=\"M305.14941406 613.84326172c0 45.74681282-34.83790398 82.85888672-77.84937858 82.85888672-42.97825813 0-77.84860611-37.1120739-77.84860611-82.85888672s34.87034798-82.85888672 77.84860611-82.85888672h77.84937858V613.84326172z m38.92507554 0c0-45.81324577 34.8695755-82.8921032 77.8810501-82.8921032 42.97903061 0 77.85015107 37.1120739 77.85015107 82.85888672v207.24609375c0 45.7800293-34.87112046 82.8921032-77.85015107 82.8921032-43.01147461 0-77.88105011-37.1120739-77.8810501-82.8921032V613.81004524z\" fill=\"#E01E5A\" ></path><path d=\"M421.9230957 282.27562141c-42.97825813 0-77.84937859-37.11130142-77.84937858-82.89133071C344.07371712 153.6042614 378.94483757 116.4921875 421.9230957 116.4921875c43.01147461 0 77.88182258 37.1120739 77.88182259 82.8921032v82.89133071H421.9230957z m0 41.42944336c43.01147461 0 77.88182258 37.14529038 77.88182259 82.8921032 0 45.81324577-34.87034798 82.8921032-77.88182259 82.8921032H227.30003548c-42.97825813 0-77.84860611-37.1120739-77.84860611-82.8921032 0-45.74681282 34.87034798-82.8921032 77.84860611-82.8921032h194.62306022z\" fill=\"#36C5F0\" ></path><path d=\"M733.35305405 406.59716797c0-45.74681282 34.8371315-82.8921032 77.84860611-82.8921032 42.97825813 0 77.84937859 37.14529038 77.84937858 82.8921032 0 45.81324577-34.87112046 82.8921032-77.84937858 82.8921032H733.35228157V406.59716797z m-38.92507553 0c0 45.81324577-34.87034798 82.8921032-77.88182259 82.8921032-42.97903061 0-77.84937859-37.1120739-77.84937859-82.8921032V199.3842907C538.69677734 153.6042614 573.56712532 116.4921875 616.54615593 116.4921875c43.01147461 0 77.88182258 37.1120739 77.88182259 82.8921032v207.21287727z\" fill=\"#2EB67D\" ></path><path d=\"M616.57859993 738.16480828c42.97903061 0 77.84937859 37.11130142 77.84937859 82.89133071 0 45.7800293-34.87034798 82.8921032-77.84937859 82.8921032-43.01147461 0-77.88182258-37.1120739-77.88182259-82.8921032V738.16558076h77.88182259z m0-41.46265984c-43.01147461 0-77.88182258-37.1120739-77.88182259-82.8921032 0-45.74681282 34.87034798-82.89133072 77.88182259-82.89133071h194.58984375c43.01147461 0 77.84937859 37.1445179 77.84937859 82.89133071 0 45.81324577-34.83790398 82.8921032-77.84937859 82.8921032H616.57859993z\" fill=\"#ECB22E\" ></path></symbol><symbol id=\"authing-wechatwork-corp-qrconnect-fill\" viewBox=\"0 0 1228 1024\"><path d=\"M790.74775187 745.54983521a13.5 13.5 0 0 0 1.6875 20.58782958 173.13766479 173.13766479 0 0 1 53.32516479 103.9501648 56.36233521 56.36233521 0 1 0 60.24407959-70.875 172.96875 172.96875 0 0 1-96.1875-53.66299438 13.5 13.5 0 0 0-19.06924438 0z\" fill=\"#FB6500\" ></path><path d=\"M1019.57291666 656.28125a56.19342041 56.19342041 0 0 0-16.19934082 33.91891479 172.96875 172.96875 0 0 1-53.49407959 96.35559083 13.5 13.5 0 1 0 20.58700562 17.21282959 172.96875 172.96875 0 0 1 103.95016479-53.3251648 56.36233521 56.36233521 0 1 0-54.67483521-94.16217041z\" fill=\"#0082EF\" ></path><path d=\"M860.77900187 497.31842041a56.36233521 56.36233521 0 0 0 33.91891479 95.85049438 172.96875 172.96875 0 0 1 96.35559082 53.49325562 13.5 13.5 0 1 0 17.21282959-20.58700562 173.13766479 173.13766479 0 0 1-53.32434082-103.95016479 56.36233521 56.36233521 0 0 0-94.16299438-24.80657959z\" fill=\"#2DBC00\" ></path><path d=\"M833.10416666 585.40625l-1.01266479 1.01266479a172.79983521 172.79983521 0 0 1-105.46875 55.18157959 56.02532959 56.02532959 0 0 0-24.97467042 94.16217041A56.36233521 56.36233521 0 0 0 797.49775187 701.84375a173.13766479 173.13766479 0 0 1 53.66299438-96.35559083 13.5 13.5 0 0 0-18.05657959-20.08190917z\" fill=\"#FFCC00\" ></path><path d=\"M492.56699625 98.90032959C391.48508707 110.03717041 299.85416666 153.23733521 234.04166666 220.73733521c-26.15625 26.66299438-47.41891479 56.70016479-63.11233521 88.76266479a309.15032959 309.15032959 0 0 0 21.76858521 312.1875c17.88766479 27 47.25 60.75 74.08108521 84.71282959l-12.14950562 95.51184082-1.35049438 4.05065918c-0.33782959 1.18075562-0.33782959 2.53125-0.50592042 3.71200562l-0.33782958 3.03799438 0.33782958 3.03717041a30.71282959 30.71282959 0 0 0 46.23733521 23.79391479h0.50592041l1.8564148-1.35049438 29.02532958-14.51184082 86.56842042-43.53799438a446.84967041 446.84967041 0 0 0 126.5625 17.38174438A453.9375 453.9375 0 0 0 698.77982584 770.52532959a56.19342041 56.19342041 0 0 1-38.30657959-58.89440918 381.20608521 381.20608521 0 0 1-159.63684082 15.86315918l-8.60641479-1.18157959a385.93157959 385.93157959 0 0 1-57.375-11.98059082 39.15032959 39.15032959 0 0 0-30.7128296 3.20526123l-2.3623352 1.18157959-71.21200561 41.84967041-3.03799439 1.8564148c-1.6875 1.01266479-2.53125 1.35049438-3.375 1.35049438a4.89440918 4.89440918 0 0 1-4.55657959-5.0625l2.70016479-10.96875 3.20690919-11.9814148 5.0625-19.74407958 5.90625-21.9375a29.86907959 29.86907959 0 0 0-10.80065919-33.24325562 311.34375 311.34375 0 0 1-71.88684081-74.92565918 243.50592041 243.50592041 0 0 1-17.55065919-246.03717041c12.82516479-25.65032959 29.70016479-49.44342041 50.625-70.875 54-55.6875 129.9375-91.125 213.97549439-100.23733521a398.58782959 398.58782959 0 0 1 87.41217041 0c83.53125 9.61825562 159.13174438 45.5625 212.7939148 100.91217042 20.75592041 21.43157959 37.63092041 45.5625 50.11907959 71.21282958 16.70608521 34.08782959 25.14358521 70.20016479 25.1435852 107.15625 0 3.88092041-0.33782959 7.76184083-0.50674439 11.47467042a56.19342041 56.19342041 0 0 1 69.1875 8.09967041l2.53125 3.03799438a307.46282959 307.46282959 0 0 0-30.71200561-159.97467041 344.58782959 344.58782959 0 0 0-62.4375-88.7626648A423.5625 423.5625 0 0 0 596.85416666 99.23733521a474.69342041 474.69342041 0 0 0-104.28717041-0.33782959z\" fill=\"#0082EF\" ></path></symbol><symbol id=\"authing-lark-internal-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M647.98825454 376.04032707a37.87141801 37.87141801 0 0 1 33.92715454-64.3719864 6.1852169 6.1852169 0 0 0 5.47376634-1.56812668L896.66688156 116.4921875 289.85129547 515.02038193l203.80471231 15.34292221z\" fill=\"#00D3B4\" ></path><path d=\"M116.4921875 341.82503892L289.85129547 515.02038193 896.66688156 116.4921875 116.4921875 341.82503892z\" fill=\"#00EED4\" ></path><path d=\"M713.90982819 336.65871811a6.17594719 6.17594719 0 0 0-1.52950287 5.43514252 37.87141801 37.87141801 0 0 1-64.37275887 33.96577835L493.68458938 530.34399222l15.21778108 203.92985344 398.65333557-606.8928337z\" fill=\"#0069FF\" ></path><path d=\"M907.55570603 127.38101196L508.90237046 734.23522186 682.18423079 907.5078125 907.5564785 127.38101196z\" fill=\"#007FFF\" ></path></symbol><symbol id=\"authing-slack-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M637.12843728 142.06803802C623.9893464 102.64994141 581.80681662 81.21260801 542.38789685 93.66038418c-39.41644868 13.13909089-60.85460605 55.3232678-48.40682986 94.74054043l194.32110443 597.48585755c13.13909089 36.65119153 53.24850137 57.39721106 91.28314545 46.33206262 40.10858652-11.75563834 64.31200103-53.93899127 51.17291015-92.66494921 0-1.38345254-193.62979056-597.48585755-193.62978974-597.48585755z\" fill=\"#E9A823\" ></path><path d=\"M336.31197723 240.26597344c-13.13991485-39.41727264-55.3232678-60.85543002-94.74054043-48.407653s-60.85543002 55.3232678-48.40847699 94.74054043l194.3219284 597.48585671c13.13909089 36.65036755 53.24850137 57.39721106 91.28232147 46.33206345 40.10941049-11.75563834 64.31282501-53.93899127 51.17373414-92.66495004 0-1.38345254-193.62979056-597.48585755-193.62979057-597.48585755z\" fill=\"#3FB991\" ></path><path d=\"M881.93196198 637.20642648c39.41727264-13.13909089 60.85543002-55.32244382 48.40765384-94.74054043-13.13909089-39.41727264-55.3232678-60.85460605-94.74054043-48.40682987L237.42190396 688.38016062c-36.65119153 13.13909089-57.39803503 53.24850137-46.33288742 91.28232147 11.75646231 40.10941049 53.93981525 64.31282501 92.66577402 51.17373412 1.38262857 0 598.17717142-193.62979056 598.17717141-193.62978973z\" fill=\"#E11765\" ></path><path d=\"M361.89802115 805.94148782c38.72595795-12.44777618 89.20837821-29.04508685 143.14736947-46.33288742-12.44695222-38.72678192-29.04426289-89.20837821-46.33206262-143.14819345L315.56430975 662.79329355l46.33288742 143.14819427z\" fill=\"#472A49\" ></path><path d=\"M662.71530435 708.43486627c53.93981525-17.28862454 104.42223633-33.88511041 143.14819428-46.33288742-12.44777618-38.72595795-29.04508685-89.20837821-46.33288743-143.14736948l-143.14819345 46.33206263L662.71530435 708.43569025z\" fill=\"#CD2027\" ></path><path d=\"M783.73402656 336.38914245c39.41727264-13.13909089 60.85543002-55.32244382 48.407653-94.74054043s-55.3232678-60.85460605-94.74054043-48.40682904L139.91528241 387.56287741c-36.65036755 13.13909089-57.39721106 53.2476774-46.33206344 91.28232147 11.75563834 40.10941049 53.93899127 64.31282501 92.66495004 51.17373413 1.38345254 0 597.48585755-193.62979056 597.48585755-193.62979056z\" fill=\"#71CBDC\" ></path><path d=\"M264.39139961 505.12337982c38.72678192-12.44777618 89.20837821-29.04426289 143.14819344-46.33206263-17.28862454-53.94063922-33.88511041-104.42223633-46.3328866-143.14819427l-143.14819427 46.33206345 46.33288742 143.14901742z\" fill=\"#1D947E\" ></path><path d=\"M565.20950677 406.9254444c53.93981525-17.28780056 104.42141235-33.88511041 143.14737031-46.33206262-17.28862454-53.93981525-33.88511041-104.42223633-46.33206345-143.14819428l-143.14901742 47.0242013 46.33371057 142.45687957z\" fill=\"#66873A\" ></path></symbol><symbol id=\"authing-lark-public-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M647.98825454 376.04032707a37.87141801 37.87141801 0 0 1 33.92715454-64.3719864 6.1852169 6.1852169 0 0 0 5.47376634-1.56812668L896.66688156 116.4921875 289.85129547 515.02038193l203.80471231 15.34292221z\" fill=\"#00D3B4\" ></path><path d=\"M116.4921875 341.82503892L289.85129547 515.02038193 896.66688156 116.4921875 116.4921875 341.82503892z\" fill=\"#00EED4\" ></path><path d=\"M713.90982819 336.65871811a6.17594719 6.17594719 0 0 0-1.52950287 5.43514252 37.87141801 37.87141801 0 0 1-64.37275887 33.96577835L493.68458938 530.34399222l15.21778108 203.92985344 398.65333557-606.8928337z\" fill=\"#0069FF\" ></path><path d=\"M907.55570603 127.38101196L508.90237046 734.23522186 682.18423079 907.5078125 907.5564785 127.38101196z\" fill=\"#007FFF\" ></path></symbol><symbol id=\"authing-key-2-line\" viewBox=\"0 0 1024 1024\"><path d=\"M459.008 504.661333l334.890667-334.890666 60.330666 60.330666-60.330666 60.373334 105.557333 105.557333-60.330667 60.373333-105.6-105.6-60.330666 60.330667 90.496 90.496-60.330667 60.373333-90.496-90.538666-93.525333 93.525333a213.418667 213.418667 0 0 1-328.874667 268.544 213.333333 213.333333 0 0 1 268.544-328.874667z m-27.178667 268.501334A128 128 0 1 0 250.88 592.213333a128 128 0 0 0 180.992 180.992z\" ></path></symbol><symbol id=\"authing-diannao\" viewBox=\"0 0 1170 1024\"><path d=\"M1054.887 103.734v661.002h-155.53v77.765h155.53v77.765h-933.18v-77.765h155.53v-77.765h-155.53V103.734h933.18zM821.592 842.5v-77.765h-466.59v77.765h466.59zM977.122 181.5h-777.65V686.97h777.65V181.5z m-77.765 77.765v349.942h-622.12V259.264h622.12z\" ></path></symbol><symbol id=\"authing-a-erweima22\" viewBox=\"0 0 1024 1024\"><path d=\"M190.058 190.058h70v70h-70v-70z m195.97-125.971H64.088v321.942h125.971v55.991h70V386.03h125.97v-69.98h55.992v-55.992H386.03V64.087z m-69.98 251.943H134.087V134.086h181.963v181.963z m-125.97 447.913h69.98v69.98h-70v-69.98z m573.865-573.885h69.98v70h-69.98v-70zM512 506.34v75.64h69.98V512h55.991v-69.98H581.98V386.03H512v120.33z m0 255.961v71.642h69.98v-125.99h55.991v-69.98H512V762.3z m69.98 71.642h55.991v55.972H581.98v-55.992z m-139.96 55.972v70h139.96v-70H442.02z m265.931-181.963h-69.98v125.99h125.972v-69.998H707.95V707.95z m55.992 251.943h195.97v-69.98h-125.99v-55.992h-69.98v125.991zM959.913 512v-69.98h-125.99V512h125.99z m-69.999 251.943h70v69.98h-70v-69.98zM442.02 316.049H512v69.98h-69.98v-69.98zM763.943 442.02V386.03h195.97V64.087H637.971v69.999H512v55.972h125.971v70H581.98v55.99h55.991v69.98h69.98v55.992h55.992zM707.95 134.086h181.963v181.963H707.951V134.086z m0 447.894h55.992v55.991H707.95V581.98zM833.922 707.95h-69.98v55.992h125.972V637.97h70V581.98H833.921V707.95zM442.04 190.058H512v70h-69.98v-70zM260.057 512h55.992v69.98h-55.992V512z m181.963-69.98H316.05V512h69.98v69.98h55.991V442.02zM386.03 833.942V707.97h55.991v-69.999H190.058V512H64.087v69.98h69.999v55.991h-70v321.942H386.03v-69.999h55.991v-55.992H386.03z m-69.98 55.972H134.086V707.951h181.963v181.963zM442.02 581.98H512v55.991h-69.98V581.98zM637.971 512h69.98v69.98h-69.98V512z m125.972 0h69.98v69.98h-69.98V512z\" ></path></symbol><symbol id=\"authing-alipay\" viewBox=\"0 0 1024 1024\"><path d=\"M427.154 210.262l-1.819 59.431H185.792v45.481h242.573v78.84H228.24v43.057l203.153-1.823 203.76-1.818-3.641 14.553c-9.094 35.177-47.907 129.173-55.183 132.196-4.244 1.216-33.961-5.458-67.316-15.16-101.276-30.924-151.61-40.023-220.136-40.023-69.74 0.603-115.217 13.342-158.886 44.27-84.897 60.647-91.57 179.506-12.735 245.602 83.687 70.348 220.739 77.017 345.06 16.375 44.267-21.225 123.71-78.84 150.39-108.553l10.922-12.736 34.57 16.98c34.568 17.586 248.03 116.437 284.413 131.598l19.403 8.49V711.17l-52.762-13.95c-47.907-12.74-170.406-50.94-209.826-66.105l-15.16-6.066 20.012-41.238c21.231-42.444 63.68-162.522 63.68-180.108 0-8.491-12.128-9.702-106.128-9.702H555.71v-78.827h254.704v-40.022c0-1.817-57.614-3.032-127.353-2.425l-127.347 0.602V151.437H428.967l-1.813 58.825z m-23.657 395.392c31.535 10.922 73.382 27.896 92.786 38.206l35.167 18.805-19.404 24.255c-10.913 13.342-35.775 36.387-56.399 51.548-69.133 51.542-133.41 71.553-215.887 66.703-86.112-4.852-132.201-40.023-137.66-105.517-3.64-40.63 5.459-63.675 33.359-84.901 35.172-26.685 63.67-32.742 141.296-30.924 59.431 1.814 78.232 5.449 126.742 21.825z\" ></path></symbol><symbol id=\"authing-facebook\" viewBox=\"0 0 1024 1024\"><path d=\"M597.333 576H704l42.667-170.667H597.333V320c0-43.947 0-85.333 85.334-85.333h64V91.307c-13.91-1.835-66.432-5.974-121.899-5.974-115.84 0-198.101 70.699-198.101 200.534v119.466h-128V576h128v362.667h170.666V576z\" ></path></symbol><symbol id=\"authing-twitter\" viewBox=\"0 0 1024 1024\"><path d=\"M945.579 241.323a357.717 357.717 0 0 1-102.486 28.074 179.03 179.03 0 0 0 78.507-98.73c-34.987 20.821-73.344 35.413-113.323 43.306a178.432 178.432 0 0 0-304.042 162.731 506.624 506.624 0 0 1-367.787-186.453 177.835 177.835 0 0 0-24.15 89.728c0 61.866 31.489 116.522 79.36 148.522a177.835 177.835 0 0 1-80.81-22.314v2.218a178.56 178.56 0 0 0 143.147 174.976 179.627 179.627 0 0 1-80.64 3.072A178.56 178.56 0 0 0 340.053 710.4a358.144 358.144 0 0 1-264.149 73.899 504.747 504.747 0 0 0 273.493 80.213c328.235 0 507.734-271.915 507.734-507.733 0-7.68-0.214-15.446-0.555-23.04a362.496 362.496 0 0 0 89.045-92.374z\" ></path></symbol><symbol id=\"authing-slack-3\" viewBox=\"0 0 1024 1024\"><path d=\"M218.01 645.78c0 58.635-47.893 106.527-106.527 106.527-58.63 0-106.527-47.892-106.527-106.527 0-58.634 47.898-106.526 106.527-106.526h106.532V645.78z m53.683 0c0-58.634 47.892-106.526 106.527-106.526 58.634 0 106.526 47.892 106.526 106.526v266.737c0 58.63-47.892 106.527-106.526 106.527-58.635 0-106.527-47.898-106.527-106.527V645.78z\" ></path><path d=\"M378.22 218.01c-58.635 0-106.527-47.893-106.527-106.527 0-58.63 47.892-106.527 106.521-106.527 58.635 0 106.527 47.898 106.527 106.527v106.532H378.22z m0 53.683c58.634 0 106.526 47.892 106.526 106.527 0 58.634-47.892 106.526-106.526 106.526H111.483c-58.63 0-106.527-47.892-106.527-106.526 0-58.635 47.898-106.527 106.527-106.527H378.22z\" ></path><path d=\"M805.99 378.22c0-58.635 47.893-106.527 106.527-106.527 58.63 0 106.527 47.892 106.527 106.527 0 58.634-47.898 106.526-106.527 106.526H805.985V378.22z m-53.683 0c0 58.634-47.892 106.526-106.527 106.526-58.634 0-106.526-47.892-106.526-106.526V111.483c0-58.63 47.892-106.527 106.526-106.527 58.635 0 106.527 47.898 106.527 106.527V378.22z\" ></path><path d=\"M645.78 805.99c58.635 0 106.527 47.893 106.527 106.527 0 58.63-47.892 106.527-106.527 106.527-58.634 0-106.526-47.898-106.526-106.527V805.985H645.78z m0-53.683c-58.634 0-106.526-47.892-106.526-106.527 0-58.634 47.892-106.526 106.526-106.526h266.737c58.63 0 106.527 47.892 106.527 106.526 0 58.635-47.898 106.527-106.527 106.527H645.78z\" ></path></symbol><symbol id=\"authing-slack\" viewBox=\"0 0 1024 1024\"><path d=\"M899.2 451.2c48 0 83.2 35.2 83.2 80 0 35.2-19.2 60.8-54.4 73.6l-96 38.4 32 96c3.2 9.6 3.2 19.2 3.2 25.6 0 44.8-35.2 83.2-83.2 83.2-35.2 0-67.2-22.4-80-57.6l-32-92.8-176 60.8 32 92.8c3.2 9.6 3.2 19.2 3.2 25.6 0 44.8-35.2 83.2-83.2 83.2-35.2 0-67.2-22.4-80-57.6l-32-92.8-86.4 28.8c-9.6 3.2-19.2 6.4-28.8 6.4-44.8 0-80-35.2-80-80 0-35.2 22.4-67.2 57.6-80L288 656l-60.8-179.2-89.6 32c-6.4 3.2-16 3.2-25.6 3.2-44.8 0-80-35.2-80-80 0-35.2 22.4-67.2 57.6-80l89.6-28.8-32-89.6c-3.2-9.6-3.2-19.2-3.2-28.8 0-44.8 35.2-83.2 83.2-83.2 35.2 0 67.2 22.4 80 57.6l32 92.8L512 211.2l-32-92.8c-3.2-9.6-3.2-19.2-3.2-25.6 0-44.8 38.4-83.2 83.2-83.2 35.2 0 67.2 22.4 80 57.6l28.8 92.8 92.8-32c9.6-3.2 16-3.2 25.6-3.2 44.8 0 83.2 32 83.2 80 0 35.2-28.8 64-60.8 76.8l-89.6 32 60.8 179.2 92.8-32c9.6-6.4 19.2-9.6 25.6-9.6zM444.8 601.6l176-60.8L560 361.6l-176 60.8 60.8 179.2z\" ></path></symbol><symbol id=\"authing-linkedin\" viewBox=\"0 0 1024 1024\"><path d=\"M313.6 889.6H157.867V390.4H313.6v499.2z m-76.8-567.467c-23.467 0-44.8-8.533-64-25.6-17.067-17.066-25.6-38.4-25.6-64s8.533-44.8 25.6-64 38.4-25.6 64-25.6 44.8 8.534 64 25.6c17.067 17.067 25.6 38.4 25.6 64s-8.533 44.8-25.6 64c-17.067 17.067-38.4 25.6-64 25.6zM893.867 889.6H738.133V646.4c0-40.533-4.266-68.267-10.666-87.467-12.8-29.866-36.267-44.8-72.534-44.8s-57.6 12.8-72.533 40.534c-10.667 19.2-17.067 49.066-17.067 87.466V889.6h-153.6V390.4h149.334v68.267h2.133c10.667-21.334 29.867-40.534 53.333-55.467 25.6-17.067 57.6-25.6 93.867-25.6 72.533 0 123.733 23.467 151.467 68.267C883.2 482.133 896 539.733 896 616.533V889.6z\" ></path></symbol><symbol id=\"authing-delete-bin-6-line\" viewBox=\"0 0 1024 1024\"><path d=\"M298.667 170.667V85.333h426.666v85.334h213.334V256h-85.334v640a42.667 42.667 0 0 1-42.666 42.667H213.333A42.667 42.667 0 0 1 170.667 896V256H85.333v-85.333h213.334zM256 256v597.333h512V256H256z m128 128h85.333v341.333H384V384z m170.667 0H640v341.333h-85.333V384z\" ></path></symbol><symbol id=\"authing-more-fill\" viewBox=\"0 0 1024 1024\"><path d=\"M512 128c-46.912 0-85.312 38.4-85.312 85.312 0 46.976 38.4 85.376 85.312 85.376s85.312-38.4 85.312-85.376C597.312 166.4 558.912 128 512 128z m0 597.312c-46.912 0-85.312 38.4-85.312 85.376C426.688 857.6 465.088 896 512 896s85.312-38.4 85.312-85.312c0-46.976-38.4-85.376-85.312-85.376z m0-298.624c-46.912 0-85.312 38.4-85.312 85.312s38.4 85.312 85.312 85.312 85.312-38.4 85.312-85.312-38.4-85.312-85.312-85.312z\" ></path></symbol><symbol id=\"authing-gitlab\" viewBox=\"0 0 1024 1024\"><path d=\"M958.326 570.912l-50.136-154.3L808.827 110.8c-5.111-15.733-27.372-15.733-32.485 0l-99.365 305.812H347.024L247.656 110.8c-5.11-15.733-27.37-15.733-32.484 0l-99.363 305.812-50.134 154.3c-4.575 14.073 0.437 29.49 12.407 38.19L512 924.358 945.92 609.1a34.16 34.16 0 0 0 12.407-38.19\" ></path></symbol><symbol id=\"authing-yuyan\" viewBox=\"0 0 1024 1024\"><path d=\"M960 511.616A447.808 447.808 0 0 0 512 64C264.576 64 64 264.384 64 511.616a447.808 447.808 0 0 0 392.32 444.16 224.384 224.384 0 0 0 60.352 3.456A447.744 447.744 0 0 0 960 511.616z m-64 6.4a437.952 437.952 0 0 0-8.768-65.472c0.384-7.616 0.512-14.784 0.256-21.504 5.696 26.496 8.512 53.504 8.512 80.64v6.272z m-768-6.4c0-26.56 2.752-53.12 8.192-79.104 16.576 17.728 55.68 17.28 65.216-9.216 17.024 10.176 39.936 12.032 39.936 32.32 0 67.072 2.432 138.944 63.36 140.032 1.664 0 33.92 12.224 49.28 52.096 5.312 13.76 26.304 0 49.344 0 11.52 0 0 19.328 0 61.184 0 41.92 89.92 105.984 89.92 105.984-0.384 27.584 0.768 49.92 3.008 67.712a150.912 150.912 0 0 0-50.816 6.848A383.68 383.68 0 0 1 128 511.616z m478.592 371.968c-2.048-9.728-10.752-15.04-26.624-10.88 12.672-54.016 18.816-84.288 45.312-107.2 38.272-33.216 4.48-70.144-24.576-65.792-23.04 3.456-8.448-28.416-29.056-30.208-20.544-1.728-47.232-42.432-76.736-56.512-15.616-7.424-30.976-27.328-55.104-28.16-21.376-0.832-52.672 18.048-52.672 3.456 0-46.912-4.8-80.448-5.76-93.76-0.768-10.752-7.04-3.648 21.888-2.944 15.744 0.384 8.064-31.616 23.616-32.832 15.296-1.28 51.712 14.272 60.992 8.128 8.64-5.76 63.36 143.744 63.36 24.704 0-14.08-7.296-38.72 0-52.096 28.992-52.864 56.064-95.936 53.632-102.208-1.344-3.584-29.568-6.464-52.16 1.088-7.68 2.56 2.432 14.464-8.512 17.024-41.024 9.472-77.248-11.072-64.64-30.336 13.056-19.84 60.16-8.64 64.256-48.256 2.368-22.72 4.352-49.088 5.632-68.608 55.232 8.64 49.152-71.616-32.896-80.192a384.128 384.128 0 0 1 358.272 257.92 15.552 15.552 0 0 0-9.152-4.16c-24.832-62.016-84.992-17.152-64.64 37.504-109.44 84.16-81.408 142.784-45.44 176.384 18.944 17.728 36.992 44.288 48.704 63.36-12.8 37.248 47.104 22.336 76.672-40.96a384.576 384.576 0 0 1-274.432 265.6z\" ></path></symbol><symbol id=\"authing-anzhuo\" viewBox=\"0 0 1024 1024\"><path d=\"M141.1 331.2c-35 0-63.3 28.3-63.3 63.2v264.7c0 34.9 28.4 63.2 63.3 63.2 35 0 63.3-28.3 63.3-63.2V394.4c0-34.9-28.3-63.2-63.3-63.2zM228.9 753.3c0 37.3 30.3 67.5 67.6 67.5h46.1v140c0 34.9 28.4 63.2 63.3 63.2 35 0 63.3-28.3 63.3-63.2v-140h85.5v140c0 34.9 28.4 63.2 63.3 63.2 35 0 63.3-28.3 63.3-63.2v-140h46.1c37.3 0 67.6-30.2 67.6-67.5V343.1H228.9v410.2zM651.8 93.4L696 13c2.4-4.2 0.8-9.6-3.5-11.9-4.2-2.3-9.6-0.8-11.9 3.5l-44.7 81.2C598.4 69.2 556.4 59.9 512 59.9c-44.4 0-86.4 9.3-123.9 25.8L343.4 4.6c-2.3-4.3-7.7-5.8-11.9-3.5-4.3 2.3-5.9 7.7-3.5 11.9l44.2 80.4c-86.8 44.8-145.5 130-145.5 227.7h570.5c0.1-97.8-58.6-182.9-145.4-227.7zM382.2 218c-13.2 0-23.9-10.7-23.9-23.9s10.7-23.9 23.9-23.9 23.9 10.7 23.9 23.9c-0.1 13.2-10.8 23.9-23.9 23.9z m259.7 0c-13.2 0-23.9-10.7-23.9-23.9s10.7-23.9 23.9-23.9 23.9 10.7 23.9 23.9c-0.1 13.2-10.8 23.9-23.9 23.9zM882.9 331.2c-35 0-63.3 28.3-63.3 63.2v264.7c0 34.9 28.4 63.2 63.3 63.2 35 0 63.3-28.3 63.3-63.2V394.4c0-34.9-28.3-63.2-63.3-63.2z\" ></path></symbol><symbol id=\"authing-lark-public\" viewBox=\"0 0 1024 1024\"><path d=\"M933.875 98.5625L726.53414917 322.64486695a6.61651612 6.61651612 0 0 0-1.64300537 5.81726073 40.54449463 40.54449463 0 0 1-68.92053223 36.37023927L490.72827148 530.02856445l16.29821778 218.30960083L692.5625 933.875z m0 0\" ></path><path d=\"M931.6098938 104.2026062l-205.12023926 221.68377685a6.61651612 6.61651612 0 0 0-1.64300537 5.86175538 39.96688843 39.96688843 0 0 1-68.21026612 35.92611694L494.23675537 530.07388305a3.28601074 3.28601074 0 0 0-0.93273925 2.53125l16.03125 214.40148927 413.61547851-623.97537232 8.88162232-18.74047852z m0 0\" ></path><path d=\"M925.48199463 90.16949463L701.39880372 297.46502685a6.61651612 6.61651612 0 0 1-5.86175538 1.68832398 40.54449463 40.54449463 0 0 0-36.32574462 68.92053222L493.97143555 533.31622315l-218.22143555-16.43005372L90.125 331.43667602z m0 0\" ></path><path d=\"M919.8427124 92.65625l-221.77359008 205.12023926a6.61651612 6.61651612 0 0 1-5.77276612 1.64300537 39.96688843 39.96688843 0 0 0-35.92611695 68.21026612L493.92611695 530.02938843a3.28601074 3.28601074 0 0 1-2.57574463 0.93273925l-214.40148927-16.03125L900.96875 101.31539917l18.74047852-8.88079834z m0 0\" ></path></symbol><symbol id=\"authing-lark-internal\" viewBox=\"0 0 1024 1024\"><path d=\"M933.875 98.5625L726.53414917 322.64486695a6.61651612 6.61651612 0 0 0-1.64300537 5.81726073 40.54449463 40.54449463 0 0 1-68.92053223 36.37023927L490.72827148 530.02856445l16.29821778 218.30960083L692.5625 933.875z m0 0\" ></path><path d=\"M931.6098938 104.2026062l-205.12023926 221.68377685a6.61651612 6.61651612 0 0 0-1.64300537 5.86175538 39.96688843 39.96688843 0 0 1-68.21026612 35.92611694L494.23675537 530.07388305a3.28601074 3.28601074 0 0 0-0.93273925 2.53125l16.03125 214.40148927 413.61547851-623.97537232 8.88162232-18.74047852z m0 0\" ></path><path d=\"M925.48199463 90.16949463L701.39880372 297.46502685a6.61651612 6.61651612 0 0 1-5.86175538 1.68832398 40.54449463 40.54449463 0 0 0-36.32574462 68.92053222L493.97143555 533.31622315l-218.22143555-16.43005372L90.125 331.43667602z m0 0\" ></path><path d=\"M919.8427124 92.65625l-221.77359008 205.12023926a6.61651612 6.61651612 0 0 1-5.77276612 1.64300537 39.96688843 39.96688843 0 0 0-35.92611695 68.21026612L493.92611695 530.02938843a3.28601074 3.28601074 0 0 1-2.57574463 0.93273925l-214.40148927-16.03125L900.96875 101.31539917l18.74047852-8.88079834z m0 0\" ></path></symbol><symbol id=\"authing-guanbi7-01copy_1\" viewBox=\"0 0 1024 1024\"><path d=\"M0.00007 512.306485a511.999485 511.999485 0 0 1 1023.99797-0.512v0.512a510.974486 510.974486 0 0 1-511.999485 511.691485C228.86384 1023.99797 0.00007 794.725201 0.00007 512.306485z m546.200451 0l178.89282-178.78982a23.244977 23.244977 0 0 0 0-33.075967l-1.126999-1.023999a23.244977 23.244977 0 0 0-33.176967 0L511.999555 478.514519l-178.78982-179.19982a23.244977 23.244977 0 0 0-33.177967 0l-1.023999 1.023999a23.244977 23.244977 0 0 0 0 33.074967l178.78982 179.199819-178.89282 178.789821a23.244977 23.244977 0 0 0 0 33.177966l1.126999 1.023999a23.244977 23.244977 0 0 0 33.176967 0L511.999555 547.12245 690.789375 725.80927a23.244977 23.244977 0 0 0 33.177967 0l1.023999-1.023999a23.244977 23.244977 0 0 0 0-33.176967l-178.78982-179.199819z\" ></path></symbol><symbol id=\"authing-guanbi\" viewBox=\"0 0 1024 1024\"><path d=\"M583.168 523.776L958.464 148.48c18.944-18.944 18.944-50.176 0-69.12l-2.048-2.048c-18.944-18.944-50.176-18.944-69.12 0L512 453.12 136.704 77.312c-18.944-18.944-50.176-18.944-69.12 0l-2.048 2.048c-19.456 18.944-19.456 50.176 0 69.12l375.296 375.296L65.536 899.072c-18.944 18.944-18.944 50.176 0 69.12l2.048 2.048c18.944 18.944 50.176 18.944 69.12 0L512 594.944 887.296 970.24c18.944 18.944 50.176 18.944 69.12 0l2.048-2.048c18.944-18.944 18.944-50.176 0-69.12L583.168 523.776z\" ></path></symbol><symbol id=\"authing-apple-web\" viewBox=\"0 0 1024 1024\"><path d=\"M797.3 656c24.6 34.8 52.8 57.3 84.6 67.5-13.8 42.6-35.7 87-65.7 133.2-46.2 69.6-91.8 104.4-136.8 104.4-16.8 0-41.7-5.7-74.7-17.1-30.6-11.4-57.3-17.1-80.1-17.1-22.8 0-48 6-75.6 18-28.8 11.4-52.5 17.1-71.1 17.1-54 0-107.1-45.9-159.3-137.7-52.2-90.6-78.3-179.7-78.3-267.3 0-81 19.8-147.3 59.4-198.9 40.8-51.6 91.2-77.4 151.2-77.4 13.2 0 27.9 1.65 44.1 4.95 16.2 3.3 33 9.45 50.4 18.45 18.6 10.2 33.9 17.25 45.9 21.15 12 3.9 21.3 5.85 27.9 5.85 7.8 0 19.8-1.8 36-5.4a166.088 166.088 0 0 0 48.6-19.8 366.113 366.113 0 0 1 45-21.6c12.6-4.8 25.5-7.2 38.7-7.2 42 0 79.8 11.4 113.4 34.2 18 12 36.3 29.7 54.9 53.1-27.6 24-47.7 45-60.3 63-23.4 33.6-35.1 70.2-35.1 109.8 0 43.8 12.3 83.4 36.9 118.8zM616.4 235.7c-21 19.8-40.2 32.7-57.6 38.7-6 1.8-13.65 3.45-22.95 4.95-9.3 1.5-19.95 2.85-31.95 4.05 0.6-52.8 14.4-98.4 41.4-136.8 27-38.4 71.4-64.8 133.2-79.2 1.2 6 2.1 10.2 2.7 12.6v9.9c0 21.6-5.1 45.9-15.3 72.9a221.625 221.625 0 0 1-49.5 72.9z\" ></path></symbol><symbol id=\"authing-google\" viewBox=\"0 0 1024 1024\"><path d=\"M1000 523.6c0 283-193.8 484.4-480 484.4-274.4 0-496-221.6-496-496S245.6 16 520 16c133.6 0 246 49 332.6 129.8l-135 129.8c-176.6-170.4-505-42.4-505 236.4 0 173 138.2 313.2 307.4 313.2 196.4 0 270-140.8 281.6-213.8H520V440.8h472.2c4.6 25.4 7.8 49.8 7.8 82.8z\" ></path></symbol><symbol id=\"authing-dingtalk\" viewBox=\"0 0 1024 1024\"><path d=\"M905.857912 382.800144a192.415957 192.415957 0 0 1-12.101998 31.649993h0.186l-0.744 1.257c-35.140992 76.657983-126.881972 226.998949-126.881971 226.998949s-0.093-0.373-0.466-0.93l-26.856994 47.567989h129.301971L621.375975 1024l56.039988-227.649949H575.715986l35.326992-150.525966a1436.834677 1436.834677 0 0 0-102.397977 29.789993s-54.130988 32.393993-155.923965-62.137986c0 0-68.699985-61.672986-28.857994-77.079982 16.941996-6.560999 82.197982-14.892997 133.53597-21.967996 69.444984-9.494998 112.172975-14.614997 112.172975-14.614996s-214.106952 3.257999-264.83994-4.886999c-50.732989-8.099998-115.104974-94.484979-128.834972-170.353962 0 0-21.223995-41.702991 45.65999-21.968995 66.838985 19.734996 343.499923 76.799983 343.499923 76.799983S205.267069 266.95017 181.250074 239.487176c-23.922995-27.459994-70.374984-149.732966-64.324985-224.901949 0 0 2.606999-18.757996 21.457995-13.729997 0 0 266.00294 123.946972 447.852899 191.762957 181.896959 67.815985 340.009924 102.398977 319.622929 190.181957z\" ></path></symbol><symbol id=\"authing-apple\" viewBox=\"0 0 1024 1024\"><path d=\"M797.3 656c24.6 34.8 52.8 57.3 84.6 67.5-13.8 42.6-35.7 87-65.7 133.2-46.2 69.6-91.8 104.4-136.8 104.4-16.8 0-41.7-5.7-74.7-17.1-30.6-11.4-57.3-17.1-80.1-17.1-22.8 0-48 6-75.6 18-28.8 11.4-52.5 17.1-71.1 17.1-54 0-107.1-45.9-159.3-137.7-52.2-90.6-78.3-179.7-78.3-267.3 0-81 19.8-147.3 59.4-198.9 40.8-51.6 91.2-77.4 151.2-77.4 13.2 0 27.9 1.65 44.1 4.95 16.2 3.3 33 9.45 50.4 18.45 18.6 10.2 33.9 17.25 45.9 21.15 12 3.9 21.3 5.85 27.9 5.85 7.8 0 19.8-1.8 36-5.4a166.088 166.088 0 0 0 48.6-19.8 366.113 366.113 0 0 1 45-21.6c12.6-4.8 25.5-7.2 38.7-7.2 42 0 79.8 11.4 113.4 34.2 18 12 36.3 29.7 54.9 53.1-27.6 24-47.7 45-60.3 63-23.4 33.6-35.1 70.2-35.1 109.8 0 43.8 12.3 83.4 36.9 118.8zM616.4 235.7c-21 19.8-40.2 32.7-57.6 38.7-6 1.8-13.65 3.45-22.95 4.95-9.3 1.5-19.95 2.85-31.95 4.05 0.6-52.8 14.4-98.4 41.4-136.8 27-38.4 71.4-64.8 133.2-79.2 1.2 6 2.1 10.2 2.7 12.6v9.9c0 21.6-5.1 45.9-15.3 72.9a221.625 221.625 0 0 1-49.5 72.9z\" ></path></symbol><symbol id=\"authing-alipay-web\" viewBox=\"0 0 1024 1024\"><path d=\"M427.154 210.262l-1.819 59.431H185.792v45.481h242.573v78.84H228.24v43.057l203.153-1.823 203.76-1.818-3.641 14.553c-9.094 35.177-47.907 129.173-55.183 132.196-4.244 1.216-33.961-5.458-67.316-15.16-101.276-30.924-151.61-40.023-220.136-40.023-69.74 0.603-115.217 13.342-158.886 44.27-84.897 60.647-91.57 179.506-12.735 245.602 83.687 70.348 220.739 77.017 345.06 16.375 44.267-21.225 123.71-78.84 150.39-108.553l10.922-12.736 34.57 16.98c34.568 17.586 248.03 116.437 284.413 131.598l19.403 8.49V711.17l-52.762-13.95c-47.907-12.74-170.406-50.94-209.826-66.105l-15.16-6.066 20.012-41.238c21.231-42.444 63.68-162.522 63.68-180.108 0-8.491-12.128-9.702-106.128-9.702H555.71v-78.827h254.704v-40.022c0-1.817-57.614-3.032-127.353-2.425l-127.347 0.602V151.437H428.967l-1.813 58.825z m-23.657 395.392c31.535 10.922 73.382 27.896 92.786 38.206l35.167 18.805-19.404 24.255c-10.913 13.342-35.775 36.387-56.399 51.548-69.133 51.542-133.41 71.553-215.887 66.703-86.112-4.852-132.201-40.023-137.66-105.517-3.64-40.63 5.459-63.675 33.359-84.901 35.172-26.685 63.67-32.742 141.296-30.924 59.431 1.814 78.232 5.449 126.742 21.825z\" ></path></symbol><symbol id=\"authing-wechat-miniprogram-app-launch\" viewBox=\"0 0 1126 1024\"><path d=\"M961.876 262.606C900.851 134.702 747.238 80.676 619.77 141.425c-69.45 33.34-113.232 90.332-130.04 168.839-15.583 71.308-6.328 150.685 2.926 211.869 12.22 78.071 12.656 135.459 1.7 176.393-9.69 36.306-29.464 59.957-61.46 75.54a135.814 135.814 0 0 1-104.372 5.102 137.634 137.634 0 0 1-77.835-69.647 136.764 136.764 0 0 1 64.388-181.93c14.317-7.12 25.668-19.38 30.73-34.607 5.023-15.187 4.628-31.244-2.136-45.996a60.511 60.511 0 0 0-34.487-30.81 61.54 61.54 0 0 0-45.878 2.136 256.284 256.284 0 0 0-131.86 145.98 257.233 257.233 0 0 0 10.284 196.72 256.403 256.403 0 0 0 231.802 146.494 263.007 263.007 0 0 0 110.265-24.916c69.41-33.341 113.192-89.462 130.04-167.97 15.149-70.913 6.328-150.29-2.966-210.603-12.22-78.942-12.656-136.764-1.701-177.698 9.69-36.307 29.465-60.354 62.292-75.54a136.962 136.962 0 0 1 182.205 64.585 136.764 136.764 0 0 1-64.387 181.93 60.511 60.511 0 0 0-28.16 80.167c6.724 14.753 19.34 25.708 34.053 30.81 15.148 5.063 31.166 4.628 45.877-2.135 127.51-62.45 181.378-216.101 120.786-343.531z\" ></path></symbol><symbol id=\"authing-qq\" viewBox=\"0 0 1024 1024\"><path d=\"M821.295 699.385a275.463 275.463 0 0 1-57.3 90.76c54.54 16.634 41.202 45.496 41.202 45.496 24.223 13.299 22.69 99.729-111.381 98.195-89.38-0.996-127.248-26.062-142.695-42.735-11.498 1.15-23.035 1.802-34.61 1.84-14.296 0-28.286-1.073-42.084-2.645-14.91 16.634-52.586 42.544-143.308 43.54-133.879 1.534-135.412-84.895-111.15-98.195 0 0-14.642-31.046 47.142-47.335a272.511 272.511 0 0 1-58.794-98.311c-56.035 99.537-83.057 33.575-79.033-42.66 3.604-67.687 63.241-144.61 78.726-163.43a60.98 60.98 0 0 1-4.6-22.804c0-16.482 6.593-31.506 17.363-42.775a44.844 44.844 0 0 1 20.045-46.223c-0.076-2.414-0.306-4.753-0.306-7.206 0-151.394 123.569-274.235 275.96-274.235 152.469 0 275.961 122.802 275.961 274.235 0 4.6-0.268 9.122-0.498 13.645 10.425 10.617 14.947 25.68 11.998 40.283 10.616 11.192 17.36 25.871 17.36 42.276 0 8.125-1.723 15.829-4.598 22.997 15.56 19.163 74.816 96.01 78.38 163.698 3.91 74.164-21.31 138.67-73.78 51.589z\" ></path></symbol><symbol id=\"authing-wechat-mobile\" viewBox=\"0 0 1239 1024\"><path d=\"M745.256 511.245c-21.665 0-43.385 20.373-43.385 45.595 0 20.373 21.72 40.96 43.385 40.96 32.553 0 55.835-20.587 55.835-40.96 0-25.222-23.282-45.595-55.835-45.595M602.705 298.9c34.115 0 55.78-22.097 55.78-55.08 0-34.655-21.665-55.027-55.78-55.027-32.499 0-63.488 20.372-63.488 54.973 0 33.091 30.99 55.08 63.488 55.08M440.05 756.574c-57.344 0-99.167-9.431-153.439-25.169l-156.456 80.196 44.948-135.222C65.051 597.747 0 498.58 0 377.479 0 163.57 198.333 0 440.05 0c213.8 0 404.427 128.97 441.56 311.458a211.106 211.106 0 0 0-41.822-4.743c-210.729 0-373.383 160.498-373.383 353.927 0 33.037 4.635 62.895 12.396 94.37-12.396 1.616-26.409 1.616-38.804 1.616m646.198 154.14L1117.13 1024l-117.76-67.638c-44.894 9.378-88.28 23.606-133.228 23.606-207.656 0-371.873-144.761-371.873-324.07 0-179.253 164.217-323.96 371.873-323.96 196.77 0 373.437 144.707 373.437 323.907 0 100.783-66.614 190.356-153.384 254.922M295.882 188.793c-32.498 0-66.614 20.372-66.614 54.973 0 33.091 34.116 55.08 66.614 55.08 30.99 0 55.781-21.989 55.781-55.026 0-34.655-24.791-55.027-55.78-55.027m692.6 322.452c-23.228 0-43.385 20.373-43.385 45.595 0 20.373 20.157 40.96 43.385 40.96 30.99 0 54.272-20.587 54.272-40.96 0-25.222-23.282-45.595-54.272-45.595\" ></path></symbol><symbol id=\"authing-baidu\" viewBox=\"0 0 1024 1024\"><path d=\"M204.8 537.876c104.422-22.429 90.196-147.185 86.967-174.501-5.149-42.066-54.545-115.55-121.658-109.746-84.48 7.593-96.873 129.6-96.873 129.6C61.891 439.695 100.64 560.262 204.8 537.876zM315.636 754.75c-3.141 8.858-9.861 31.244-4.058 50.75 11.607 43.766 49.658 45.774 49.658 45.774h54.677V717.658H357.44c-26.27 7.855-39.01 28.407-41.847 37.091z m82.779-426.022c57.774 0 104.29-66.37 104.29-148.407C502.705 98.327 456.19 32 398.415 32c-57.47 0-104.16 66.37-104.16 148.32 0 82.036 46.69 148.364 104.29 148.364z m248.334 9.731c77.062 10.037 126.676-72.262 136.407-134.618 10.037-62.138-39.665-134.53-94.21-146.924-54.633-12.523-122.88 75.055-129.077 132.131-7.418 69.818 9.95 139.462 86.88 149.411zM835.564 704.83s-119.259-92.247-188.815-191.913c-94.254-147.01-228.349-87.185-273.164-12.48-44.64 74.75-114.196 122.095-124.014 134.531-10.036 12.393-144 84.655-114.327 216.742 29.76 132 134.269 129.6 134.269 129.6s76.974 7.55 166.342-12.393c89.323-19.898 166.21 4.975 166.21 4.975s208.67 69.818 265.746-64.713C924.8 774.56 835.564 704.83 835.564 704.83zM478.487 905.076H342.865c-58.56-11.738-81.905-51.665-84.916-58.472-2.924-6.982-19.505-39.142-10.69-93.819 25.308-81.905 97.483-87.796 97.483-87.796h72.218v-88.844l61.484 0.96 0.087 327.928z m252.742-0.96H575.011c-60.524-15.534-63.316-58.56-63.316-58.56V672.844l63.36-1.004v155.127c3.84 16.495 24.436 19.637 24.436 19.637h64.32v-173.76h67.418v231.272z m220.975-461.018c0-29.847-24.742-119.65-116.64-119.65-92.073 0-104.335 84.741-104.335 144.654 0 57.163 4.887 137.062 119.127 134.443 114.415-2.443 101.848-129.469 101.848-159.447z\" ></path></symbol><symbol id=\"authing-wechat-pc\" viewBox=\"0 0 1239 1024\"><path d=\"M727.677 511.336c-19.042 0-38.132 17.906-38.132 40.074 0 17.906 19.09 36 38.132 36 28.61 0 49.074-18.094 49.074-36 0-22.168-20.463-40.074-49.074-40.074m-125.29-186.63c29.985 0 49.026-19.422 49.026-48.411 0-30.459-19.041-48.364-49.025-48.364-28.564 0-55.8 17.905-55.8 48.316 0 29.084 27.237 48.41 55.8 48.41m-142.959 402.3c-50.4 0-87.158-8.288-134.858-22.12L187.06 775.32l39.505-118.847c-96.726-69.11-153.9-156.269-153.9-262.705C72.667 205.763 246.984 62 459.43 62c187.91 0 355.454 113.353 388.09 273.742a185.542 185.542 0 0 0-36.757-4.168c-185.211 0-328.17 141.062-328.17 311.068 0 29.037 4.075 55.28 10.896 82.943-10.895 1.42-23.211 1.42-34.105 1.42M1027.33 862.48l27.19 99.52-103.5-59.447c-39.458 8.242-77.59 20.747-117.096 20.747-182.51 0-326.841-127.231-326.841-284.827 0-157.547 144.331-284.73 326.841-284.73 172.943 0 328.216 127.183 328.216 284.683 0 88.58-58.547 167.305-134.81 224.053M332.72 227.93c-28.563 0-58.548 17.905-58.548 48.316 0 29.084 29.985 48.41 58.547 48.41 27.238 0 49.026-19.326 49.026-48.362 0-30.459-21.788-48.364-49.025-48.364m608.73 283.405c-20.415 0-38.13 17.906-38.13 40.074 0 17.906 17.715 36 38.13 36 27.238 0 47.7-18.094 47.7-36 0-22.168-20.462-40.074-47.7-40.074\" ></path></symbol><symbol id=\"authing-wechat-miniprogram-qrconnec\" viewBox=\"0 0 1126 1024\"><path d=\"M961.876 262.606C900.851 134.702 747.238 80.676 619.77 141.425c-69.45 33.34-113.232 90.332-130.04 168.839-15.583 71.308-6.328 150.685 2.926 211.869 12.22 78.071 12.656 135.459 1.7 176.393-9.69 36.306-29.464 59.957-61.46 75.54a135.814 135.814 0 0 1-104.372 5.102 137.634 137.634 0 0 1-77.835-69.647 136.764 136.764 0 0 1 64.388-181.93c14.317-7.12 25.668-19.38 30.73-34.607 5.023-15.187 4.628-31.244-2.136-45.996a60.511 60.511 0 0 0-34.487-30.81 61.54 61.54 0 0 0-45.878 2.136 256.284 256.284 0 0 0-131.86 145.98 257.233 257.233 0 0 0 10.284 196.72 256.403 256.403 0 0 0 231.802 146.494 263.007 263.007 0 0 0 110.265-24.916c69.41-33.341 113.192-89.462 130.04-167.97 15.149-70.913 6.328-150.29-2.966-210.603-12.22-78.942-12.656-136.764-1.701-177.698 9.69-36.307 29.465-60.354 62.292-75.54a136.962 136.962 0 0 1 182.205 64.585 136.764 136.764 0 0 1-64.387 181.93 60.511 60.511 0 0 0-28.16 80.167c6.724 14.753 19.34 25.708 34.053 30.81 15.148 5.063 31.166 4.628 45.877-2.135 127.51-62.45 181.378-216.101 120.786-343.531z\" ></path></symbol><symbol id=\"authing-wechat-webpage-authorization\" viewBox=\"0 0 1188 1024\"><path d=\"M512 1.896C229.452 1.896 0 229.452 0 512s229.452 510.104 512 510.104S1022.104 794.548 1022.104 512 794.548 1.896 512 1.896z m-91.022 629.57c-26.548 0-49.304-5.688-75.852-11.377l-75.852 37.926 22.756-66.37c-54.993-37.926-87.23-87.23-87.23-147.912 0-104.296 98.607-185.837 218.074-185.837 108.089 0 201.007 64.474 219.97 153.6-7.585 0-13.274-1.896-20.859-1.896-104.296 0-185.837 77.748-185.837 172.563 0 15.17 1.896 30.34 7.585 45.511-7.585 3.793-15.17 3.793-22.755 3.793z m322.37 77.749l17.067 54.992-58.785-34.133c-22.756 5.689-43.615 11.378-66.37 11.378-104.297 0-185.838-70.163-185.838-157.393S530.963 424.77 635.26 424.77c98.608 0 185.837 70.163 185.837 159.29 0 47.407-32.237 91.021-77.748 125.155z\" fill=\"#46BB36\" ></path><path d=\"M318.578 379.26c0 17.066 13.274 30.34 30.34 30.34s30.341-13.274 30.341-30.34-13.274-30.341-30.34-30.341-30.341 13.274-30.341 30.34z m235.14 159.288c0 13.274 11.378 24.652 24.652 24.652 13.274 0 24.652-11.378 24.652-24.652 0-13.274-11.378-24.652-24.652-24.652-13.274-1.896-24.651 9.482-24.651 24.652z m-81.54-159.289c0 17.067 13.274 30.341 30.34 30.341 17.067 0 30.341-13.274 30.341-30.34 0-17.067-13.274-30.341-30.34-30.341-17.067 0-30.341 13.274-30.341 30.34zM675.08 538.55c0 13.273 11.378 24.651 24.652 24.651 13.274 0 24.652-11.378 24.652-24.652 0-13.274-11.378-24.652-24.652-24.652-13.274-1.896-24.652 9.482-24.652 24.652z\" fill=\"#46BB36\" ></path></symbol><symbol id=\"authing-wechat-miniprogram-default\" viewBox=\"0 0 1126 1024\"><path d=\"M961.876 262.606C900.851 134.702 747.238 80.676 619.77 141.425c-69.45 33.34-113.232 90.332-130.04 168.839-15.583 71.308-6.328 150.685 2.926 211.869 12.22 78.071 12.656 135.459 1.7 176.393-9.69 36.306-29.464 59.957-61.46 75.54a135.814 135.814 0 0 1-104.372 5.102 137.634 137.634 0 0 1-77.835-69.647 136.764 136.764 0 0 1 64.388-181.93c14.317-7.12 25.668-19.38 30.73-34.607 5.023-15.187 4.628-31.244-2.136-45.996a60.511 60.511 0 0 0-34.487-30.81 61.54 61.54 0 0 0-45.878 2.136 256.284 256.284 0 0 0-131.86 145.98 257.233 257.233 0 0 0 10.284 196.72 256.403 256.403 0 0 0 231.802 146.494 263.007 263.007 0 0 0 110.265-24.916c69.41-33.341 113.192-89.462 130.04-167.97 15.149-70.913 6.328-150.29-2.966-210.603-12.22-78.942-12.656-136.764-1.701-177.698 9.69-36.307 29.465-60.354 62.292-75.54a136.962 136.962 0 0 1 182.205 64.585 136.764 136.764 0 0 1-64.387 181.93 60.511 60.511 0 0 0-28.16 80.167c6.724 14.753 19.34 25.708 34.053 30.81 15.148 5.063 31.166 4.628 45.877-2.135 127.51-62.45 181.378-216.101 120.786-343.531z\" ></path></symbol><symbol id=\"authing-wechatwork-service-provider-authorization\" viewBox=\"0 0 1182 1024\"><path d=\"M993.598 913.02a7.062 7.062 0 0 1 4.908 2.224c15.678 17.761 37.252 31.073 59.816 35.505 15.713 3.354 26.482 18.873 26.482 36.634 0 19.968-14.706 36.617-32.362 36.617-16.666 0-30.402-14.424-32.361-32.185-4.909-25.53-15.714-47.722-30.42-65.466-0.971-1.112-1.942-3.337-2.931-5.561 0-4.432 2.93-7.768 6.868-7.768zM1024 0a105.931 105.931 0 0 1 105.931 105.949v453.42h-70.62V247.172H70.46v670.88h452.026v70.638H32.84C15.572 988.69 0.829 975.448 0 958.27v-857.9C2.79 44.19 49.346 0.053 105.843 0zM812.138 512c136.651 0 247.172 97.774 247.172 219.224h-60.804c0-101.888-85.663-162.286-182.22-163.045-117.565-0.918-189.686 76.182-193.553 157.184-2.471 51.412 16.42 92.495 61.617 127.47 5.032 4.131 4.184 17.479 3.178 23.658l-2.684 37.34s1.006 0 2.013-1.023l49.982-25.141a16.455 16.455 0 0 1 12.058-1.042c22.104 6.18 37.676 5.509 60.787 5.509 24.117 0 46.857-2.066 64.23-8.087l15.589 55.085a288.662 288.662 0 0 1-78.371 11.317c-25.124 0-49.24-3.09-72.334-9.27l-53.265 26.766c-5.014 2.065-12.059 3.09-18.08 3.09-6.037 0-12.058-2.066-17.09-5.138-10.045-7.221-15.06-19.562-14.053-34.993v-1.041l5.014-42.196c-49.222-40.148-76.358-97.775-76.358-157.484C564.966 609.792 675.486 512 812.138 512z m338.397 330.399c17.655 0 32.362 16.649 32.362 36.634 0 18.856-12.747 34.393-28.443 36.617-22.563 5.544-42.178 17.761-57.874 34.41a21.186 21.186 0 0 1-4.908 3.32c-3.92 0-6.868-3.32-6.868-7.769 0-2.225 0.99-4.431 1.978-5.544 15.678-17.76 27.454-42.178 31.373-67.707 2.948-17.744 16.684-29.961 32.38-29.961z m-141.242-30.261c3.92 0 6.868 3.337 6.868 7.768a9.075 9.075 0 0 1-1.977 5.544c-15.678 17.761-27.454 42.178-31.374 67.708-2.948 17.743-16.684 29.96-32.38 29.96-17.654 0-32.361-16.648-32.361-36.634 0-18.856 12.747-34.392 28.442-36.617 22.564-5.544 42.179-17.743 57.874-34.392 0.971-1.113 2.93-2.225 4.908-3.337z m39.23-70.62c16.667 0 30.402 14.424 32.362 32.185 4.908 25.511 15.713 47.722 30.42 65.465 1.942 1.112 1.942 3.337 2.93 5.561 0 4.432-2.93 7.769-6.867 7.769a7.062 7.062 0 0 1-4.908-2.225c-15.696-17.761-37.253-31.073-59.816-35.504-15.713-3.355-26.483-18.874-26.483-36.635 0-19.968 14.707-36.617 32.362-36.617zM511.912 70.584a53.177 53.177 0 0 0-37.5 15.537 53 53 0 0 0 17.426 86.422 53.407 53.407 0 0 0 58.05-11.582 52.824 52.824 0 0 0 11.388-57.838 53.23 53.23 0 0 0-49.364-32.539z m-176.605 0a53.177 53.177 0 0 0-37.5 15.537 53 53 0 0 0 17.426 86.422 53.407 53.407 0 0 0 58.05-11.582 52.824 52.824 0 0 0 11.388-57.838 53.23 53.23 0 0 0-49.364-32.539z m-176.499 0a53.177 53.177 0 0 0-37.5 15.537 53 53 0 0 0 17.426 86.422 53.407 53.407 0 0 0 58.05-11.582 52.824 52.824 0 0 0 11.388-57.838 53.23 53.23 0 0 0-49.364-32.539z\" ></path></symbol><symbol id=\"authing-wechatwork-corp-qrconnect\" viewBox=\"0 0 1220 1024\"><path d=\"M1077.17 663.237c-29.54-34.659-51.2-77.982-61.047-127.803-3.938-34.659-31.508-62.819-64.985-62.819-35.446 0-64.984 32.493-64.984 71.483 0 34.659 21.661 64.985 53.17 71.484 45.291 8.664 88.614 34.658 120.122 69.316 1.97 2.167 5.908 4.333 9.846 4.333 7.877 0 13.785-6.499 13.785-15.163-1.97-4.333-1.97-8.665-5.908-10.831z m-194.955-26.782c1.97-2.166 3.939-6.498 3.939-10.83 0-8.665-5.908-15.163-13.785-15.163-3.938 2.166-7.877 4.332-9.846 6.498-31.508 32.492-70.892 56.32-116.185 67.15-31.507 4.333-57.107 34.66-57.107 71.484 0 38.99 29.538 71.483 64.984 71.483 31.508 0 59.077-23.828 64.985-58.486 7.877-49.822 31.508-97.477 63.015-132.136z m165.416 243.2c31.507-32.492 70.892-56.32 116.184-67.15 31.508-4.333 57.108-34.659 57.108-71.483 0-38.991-29.538-71.484-64.985-71.484-31.507 0-59.076 23.828-64.984 58.487-7.877 49.821-31.508 97.477-63.016 132.135-1.969 2.166-3.938 6.498-3.938 10.83 0 8.665 5.908 15.164 13.785 15.164 3.938-2.166 7.877-4.332 9.846-6.499z m-76.8 1.379c-45.293-8.665-88.616-34.659-120.123-69.317a14.375 14.375 0 0 0-9.846-4.332c-7.877 0-13.785 6.498-13.785 15.163 1.97 4.332 3.938 8.664 5.908 10.83 29.538 34.659 51.2 77.982 61.046 127.804 3.938 34.658 31.507 62.818 64.984 62.818 35.447 0 64.985-32.492 64.985-71.483 0-34.659-21.662-64.985-53.17-71.483z\" ></path><path d=\"M243.554 810.2s2.048 0 4.096-2.067l101.534-50.708c8.172-4.135 16.345-4.135 24.497-2.067 44.899 12.445 76.544 11.106 123.49 11.106 48.995 0 95.174-4.155 130.502-16.325l31.665 111.065c-51.043 14.533-106.142 22.843-159.232 22.843a571.077 571.077 0 0 1-146.964-18.688l-108.19 53.957c-10.2 4.135-24.497 6.222-36.745 6.222-12.249 0-24.497-4.135-34.698-10.377-20.421-14.514-30.622-39.424-28.574-70.558v-2.068l10.201-85.07C55.099 676.51 0 560.285 0 439.926 0 197.12 224.551 0 502.154 0c277.622 0 502.154 197.14 502.154 442.014h-123.55c0-205.43-174.001-327.208-370.196-328.744-238.808-1.85-385.378 153.6-393.216 316.948-4.982 103.62 33.36 186.466 125.224 257.024 10.2 8.31 8.468 35.19 6.44 47.655\" ></path></symbol><symbol id=\"authing-wechatwork-service-provider-qrconnect\" viewBox=\"0 0 1220 1024\"><path d=\"M1077.17 663.237c-29.54-34.659-51.2-77.982-61.047-127.803-3.938-34.659-31.508-62.819-64.985-62.819-35.446 0-64.984 32.493-64.984 71.483 0 34.659 21.661 64.985 53.17 71.484 45.291 8.664 88.614 34.658 120.122 69.316 1.97 2.167 5.908 4.333 9.846 4.333 7.877 0 13.785-6.499 13.785-15.163-1.97-4.333-1.97-8.665-5.908-10.831z m-194.955-26.782c1.97-2.166 3.939-6.498 3.939-10.83 0-8.665-5.908-15.163-13.785-15.163-3.938 2.166-7.877 4.332-9.846 6.498-31.508 32.492-70.892 56.32-116.185 67.15-31.507 4.333-57.107 34.66-57.107 71.484 0 38.99 29.538 71.483 64.984 71.483 31.508 0 59.077-23.828 64.985-58.486 7.877-49.822 31.508-97.477 63.015-132.136z m165.416 243.2c31.507-32.492 70.892-56.32 116.184-67.15 31.508-4.333 57.108-34.659 57.108-71.483 0-38.991-29.538-71.484-64.985-71.484-31.507 0-59.076 23.828-64.984 58.487-7.877 49.821-31.508 97.477-63.016 132.135-1.969 2.166-3.938 6.498-3.938 10.83 0 8.665 5.908 15.164 13.785 15.164 3.938-2.166 7.877-4.332 9.846-6.499z m-76.8 1.379c-45.293-8.665-88.616-34.659-120.123-69.317a14.375 14.375 0 0 0-9.846-4.332c-7.877 0-13.785 6.498-13.785 15.163 1.97 4.332 3.938 8.664 5.908 10.83 29.538 34.659 51.2 77.982 61.046 127.804 3.938 34.658 31.507 62.818 64.984 62.818 35.447 0 64.985-32.492 64.985-71.483 0-34.659-21.662-64.985-53.17-71.483z\" ></path><path d=\"M243.554 810.2s2.048 0 4.096-2.067l101.534-50.708c8.172-4.135 16.345-4.135 24.497-2.067 44.899 12.445 76.544 11.106 123.49 11.106 48.995 0 95.174-4.155 130.502-16.325l31.665 111.065c-51.043 14.533-106.142 22.843-159.232 22.843a571.077 571.077 0 0 1-146.964-18.688l-108.19 53.957c-10.2 4.135-24.497 6.222-36.745 6.222-12.249 0-24.497-4.135-34.698-10.377-20.421-14.514-30.622-39.424-28.574-70.558v-2.068l10.201-85.07C55.099 676.51 0 560.285 0 439.926 0 197.12 224.551 0 502.154 0c277.622 0 502.154 197.14 502.154 442.014h-123.55c0-205.43-174.001-327.208-370.196-328.744-238.808-1.85-385.378 153.6-393.216 316.948-4.982 103.62 33.36 186.466 125.224 257.024 10.2 8.31 8.468 35.19 6.44 47.655\" ></path></symbol><symbol id=\"authing-weibo\" viewBox=\"0 0 1185 1024\"><path d=\"M891.75 466.973c-17.137-5.012-29.37-7.545-19.616-30.019 19.616-47.477 19.616-90 0-120.017-39.18-57.503-144.538-54.97-264.61-2.48 0 0-39.125 17.517-29.37-12.502 19.615-59.982 17.19-109.992-12.234-140.01-66.127-67.473-240.089 2.532-389.532 154.992C63.7 431.942 0 551.96 0 656.996c0 199.94 252.322 322.49 497.314 322.49 323.354 0 536.55-192.503 538.975-347.496 0-92.533-75.934-142.545-144.539-165.017zM499.794 907C303.79 926.941 134.73 836.94 122.497 704.474c-14.714-129.987 134.73-252.484 330.735-272.532 196.005-19.939 365.01 70.06 377.243 202.527 14.712 129.987-134.73 252.484-330.68 272.532z m19.563-375.034c-93.072-25.005-198.43 22.527-240.088 107.515-41.605 87.52 0 182.478 93.125 212.496 97.975 32.497 213.142-17.515 252.322-109.995 39.179-92.53-9.81-185.01-105.359-210.016z m-70.976 219.987c-19.616 30.018-61.22 45-90.645 30.018-29.372-14.982-39.18-50.012-19.617-82.455 19.616-30.07 58.796-42.574 88.22-30.07 29.372 15.034 39.18 50.01 22.042 82.507z m63.7-82.455c-7.329 12.45-22.095 17.461-34.275 12.45-12.287-4.958-17.192-17.462-9.809-29.964 4.85-12.503 19.564-17.515 31.797-12.503 12.288 5.011 17.191 17.515 12.288 29.964z m431.137-327.555a83.964 83.964 0 0 0-14.66-74.963c-19.616-19.994-46.562-30.019-71.029-22.527-22.096 5.012-41.658-9.97-46.563-30.018a40.258 40.258 0 0 1 29.426-47.479c51.412-10.023 107.783 5.012 144.537 47.479a157.904 157.904 0 0 1 31.797 152.514c-7.33 19.994-29.372 32.497-48.988 25.006-19.563-5.012-31.796-27.485-24.466-50.012z m227.908 75.018a44.838 44.838 0 0 1-56.37 30.019c-24.521-7.546-36.755-35.032-29.426-57.504a226.13 226.13 0 0 0-46.508-222.52c-56.372-62.515-137.21-87.52-213.144-70.006a45.108 45.108 0 0 1-53.892-35.029c-4.904-24.952 9.754-49.958 34.276-54.97a312.789 312.789 0 0 1 298.884 97.544c78.413 87.467 98.03 207.485 66.18 312.466z\" ></path></symbol><symbol id=\"authing-github\" viewBox=\"0 0 1024 1024\"><path d=\"M51.57 672.155c3.72-6.605 52.236-29.956 126.057 57.307 0.186 0 0.465 0.14 0.79 0.419 5.21 4.326 29.538 39.26 43.307 51.865 58.935 53.307 147.083 12.001 157.13 6.047 4.652-38.282 19.025-68.378 43.027-90.52a290.072 290.072 0 0 1-64.052-10.047 203.832 203.832 0 0 1-61.029-18.048 168.852 168.852 0 0 1-58.052-29.165c-17.35-9.35-33.677-23.444-49.027-42.237a205.367 205.367 0 0 1-40.004-58.284c-10.698-20.095-19.071-45.911-25.072-77.356-6-28.84-8.977-62.005-8.977-99.543 0-68.983 22.979-129.64 69.076-181.924-2.745-5.395-33.026-77.17 7.907-179.969 55.447-1.954 115.173 23.49 185.226 68.332A925.198 925.198 0 0 1 547.008 46.89c56.936 1.907 113.592 9.303 169.132 22.142C739.49 54.984 821.637-1.3 900.249 2.747c37.678 89.45 11.024 170.154 6.977 178.9 46.05 46.236 69.076 104.846 69.076 175.875v6.047c0.326 5.024 0.512 10.094 0.512 15.118 0 27.77-3.163 55.958-9.536 84.473a349.24 349.24 0 0 1-25.025 77.402 282.816 282.816 0 0 1-39.027 57.26 367.242 367.242 0 0 1-49.028 41.26c-18.42 10.56-37.445 20.002-57.074 28.142a1890.865 1890.865 0 0 1-61.076 18.048 1650.986 1650.986 0 0 0-64.052 10.048c30.05 25.49 45.4 66.982 46.05 124.662a3242.148 3242.148 0 0 0-0.464 55.54c0 19.583 0.186 40.282 0.465 62.052-0.651 21.444-0.93 37.724-0.93 48.795 0 11.07 0.279 16.931 0.93 17.536a677.27 677.27 0 0 1-159.084 20.048h-14.978c-54.424 0-107.452-6.651-159.177-20.14-0.698-0.652-0.977-39.214-0.977-115.546-20.7 4.652-157.037 31.538-217.508-69.913-19.304-30.05-35.351-103.405-100.753-136.152-6.93 18.048-28.84 2.652-14-10.047z\" ></path></symbol></svg>";
1363
-
1364
- }
1365
- declare module '@authing/react-ui-components/components/ImagePro/index' {
1366
- import React from 'react';
1367
- import './styles.less';
1368
- export interface ImageProProps extends React.ImgHTMLAttributes<HTMLImageElement> {
1369
- src: string;
1370
- className?: string;
1371
- alt?: string;
1372
- imgClassName?: string;
1373
- size?: number | string;
1374
- width?: number | string;
1375
- height?: number | string;
1376
- borderRadius?: number | string;
1377
- noSpin?: boolean;
1378
- }
1379
- export const ImagePro: (props: ImageProProps) => JSX.Element;
1380
-
1381
- }
1382
- declare module '@authing/react-ui-components/components/InputNumber/index' {
1383
- import { InputProps } from 'antd/lib/input';
1384
- import React from 'react';
1385
- export interface InputNumberProps extends InputProps {
1386
- }
1387
- export const InputNumber: React.FC<InputNumberProps>;
1388
-
1389
- }
1390
- declare module '@authing/react-ui-components/components/Login/codemap' {
1391
- import { GuardModuleAction } from '@authing/react-ui-components/components/Guard/module';
1392
- export const codeMap: Record<number, GuardModuleAction>;
1393
-
1394
- }
1395
- declare module '@authing/react-ui-components/components/Login/core/withAD' {
1396
- /// <reference types="react" />
1397
- interface LoginWithADProps {
1398
- onLogin: any;
1399
- }
1400
- export const LoginWithAD: (props: LoginWithADProps) => JSX.Element;
1401
- export {};
1402
-
1403
- }
1404
- declare module '@authing/react-ui-components/components/Login/core/withAppQrcode' {
1405
- /// <reference types="react" />
1406
- interface LoginWithAppQrcodeProps {
1407
- onLogin: any;
1408
- canLoop: boolean;
1409
- qrCodeScanOptions: any;
1410
- }
1411
- export const LoginWithAppQrcode: (props: LoginWithAppQrcodeProps) => JSX.Element;
1412
- export {};
1413
-
1414
- }
1415
- declare module '@authing/react-ui-components/components/Login/core/withLDAP' {
1416
- /// <reference types="react" />
1417
- interface LoginWithLDAPProps {
1418
- publicKey: string;
1419
- autoRegister?: boolean;
1420
- host?: string;
1421
- onLogin: any;
1422
- onBeforeLogin: any;
1423
- }
1424
- export const LoginWithLDAP: (props: LoginWithLDAPProps) => JSX.Element;
1425
- export {};
1426
-
1427
- }
1428
- declare module '@authing/react-ui-components/components/Login/core/withPassword/FormItemAccount' {
1429
- import { FormItemProps } from 'antd/lib/form';
1430
- import React from 'react';
1431
- import { PasswordLoginMethods } from '@authing/react-ui-components/components/AuthingGuard/api/index';
1432
- export interface FormItemAccountProps extends FormItemProps {
1433
- passwordLoginMethods: PasswordLoginMethods[];
1434
- }
1435
- export const FormItemAccount: React.FC<FormItemAccountProps>;
1436
-
1437
- }
1438
- declare module '@authing/react-ui-components/components/Login/core/withPassword/GraphicVerifyCode' {
1439
- import { InputProps } from 'antd/lib/input';
1440
- import React from 'react';
1441
- export interface GraphicVerifyCodeProps extends InputProps {
1442
- verifyCodeUrl: string;
1443
- changeCode: () => void;
1444
- }
1445
- export const GraphicVerifyCode: React.FC<GraphicVerifyCodeProps>;
1446
-
1447
- }
1448
- declare module '@authing/react-ui-components/components/Login/core/withPassword/InputAccount' {
1449
- import { InputProps } from 'antd/lib/input';
1450
- import React from 'react';
1451
- import { PasswordLoginMethods } from '@authing/react-ui-components/components/AuthingGuard/api/index';
1452
- export interface InputAccountProps extends InputProps {
1453
- passwordLoginMethods: PasswordLoginMethods[];
1454
- }
1455
- export const InputAccount: React.FC<InputAccountProps>;
1456
-
1457
- }
1458
- declare module '@authing/react-ui-components/components/Login/core/withPassword/index' {
1459
- /// <reference types="react" />
1460
- import { PasswordLoginMethods } from '@authing/react-ui-components/components/AuthingGuard/api/index';
1461
- interface LoginWithPasswordProps {
1462
- publicKey: string;
1463
- autoRegister?: boolean;
1464
- host?: string;
1465
- onLogin: any;
1466
- onBeforeLogin: any;
1467
- passwordLoginMethods: PasswordLoginMethods[];
1468
- }
1469
- export const LoginWithPassword: (props: LoginWithPasswordProps) => JSX.Element;
1470
- export {};
1471
-
1472
- }
1473
- declare module '@authing/react-ui-components/components/Login/core/withPhonecode' {
1474
- /// <reference types="react" />
1475
- export const LoginWithPhoneCode: (props: any) => JSX.Element;
1476
-
1477
- }
1478
- declare module '@authing/react-ui-components/components/Login/core/withWechatMiniQrcode' {
1479
- /// <reference types="react" />
1480
- interface LoginWithWechatMiniQrcodeProps {
1481
- onLogin: any;
1482
- canLoop: boolean;
1483
- qrCodeScanOptions: any;
1484
- }
1485
- export const LoginWithWechatMiniQrcode: (props: LoginWithWechatMiniQrcodeProps) => JSX.Element;
1486
- export {};
1487
-
1488
- }
1489
- declare module '@authing/react-ui-components/components/Login/core/withWechatmpQrcode' {
1490
- /// <reference types="react" />
1491
- interface LoginWithWechatmpQrcodeProps {
1492
- onLogin: any;
1493
- canLoop: boolean;
1494
- qrCodeScanOptions: any;
1495
- }
1496
- export const LoginWithWechatmpQrcode: (props: LoginWithWechatmpQrcodeProps) => JSX.Element;
1497
- export {};
1498
-
1499
- }
1500
- declare module '@authing/react-ui-components/components/Login/index' {
1501
- /// <reference types="react" />
1502
- import { GuardLoginViewProps } from '@authing/react-ui-components/components/Login/props';
1503
- import './styles.less';
1504
- export const GuardLoginView: (props: GuardLoginViewProps) => JSX.Element;
1505
-
1506
- }
1507
- declare module '@authing/react-ui-components/components/Login/props' {
1508
- import { IG2Config, IG2Events, IG2FCProps, IG2FCViewProps } from '@authing/react-ui-components/components/Type/index';
1509
- import { SocialConnectionProvider } from 'authing-js-sdk';
1510
- import { QrCodeAuthenticationClient } from 'authing-js-sdk/build/main/lib/authentication/QrCodeAuthenticationClient';
1511
- import { PasswordLoginMethods } from '@authing/react-ui-components/components/AuthingGuard/api/index';
1512
- import { PasswordLoginParams, LDAPLoginParams, ADLoginParams, PhoneCodeLoginParams, AuthenticationClient, LoginMethods, User } from '@authing/react-ui-components/components/index';
1513
- export interface LoginConfig extends IG2Config {
1514
- autoRegister: boolean;
1515
- disableResetPwd: boolean;
1516
- disableRegister: boolean;
1517
- defaultLoginMethod: LoginMethods;
1518
- loginMethods: LoginMethods[];
1519
- passwordLoginMethods: PasswordLoginMethods[];
1520
- socialConnections?: SocialConnectionProvider[];
1521
- socialConnectionsBtnShape?: 'default' | 'button' | 'icon';
1522
- enterpriseConnections?: string[];
1523
- qrCodeScanOptions?: Parameters<QrCodeAuthenticationClient['startScanning']>[1];
1524
- publicKey?: string;
1525
- }
1526
- export interface LoginEvents extends IG2Events {
1527
- onLogin?: (user: User, authClient: AuthenticationClient) => void;
1528
- onLoginError?: (errorMessages: any) => void;
1529
- onLoginTabChange?: (activeTab: LoginMethods) => void;
1530
- onBeforeLogin?: (loginInfo: PasswordLoginParams | LDAPLoginParams | ADLoginParams | PhoneCodeLoginParams, authClient: AuthenticationClient) => boolean | Promise<boolean>;
1531
- }
1532
- export interface GuardLoginProps extends IG2FCProps, LoginEvents {
1533
- config?: Partial<LoginConfig>;
1534
- }
1535
- export interface GuardLoginViewProps extends GuardLoginProps, IG2FCViewProps {
1536
- config: LoginConfig;
1537
- }
1538
- export const getDefaultLoginConfig: () => LoginConfig;
1539
-
1540
- }
1541
- declare module '@authing/react-ui-components/components/Login/socialLogin/index' {
1542
- import React from 'react';
1543
- import { LoginConfig } from '@authing/react-ui-components/components/Login/props';
1544
- import './style.less';
1545
- export interface SocialLoginProps {
1546
- appId: string;
1547
- config: LoginConfig;
1548
- onLogin: any;
1549
- }
1550
- export const SocialLogin: React.FC<SocialLoginProps>;
1551
-
1552
- }
1553
- declare module '@authing/react-ui-components/components/MFA/VerifyCodeInput/VerifyCodeFormItem' {
1554
- import { FormItemProps } from 'antd/lib/form';
1555
- import React from 'react';
1556
- export interface VerifyCodeFormItemProps extends FormItemProps {
1557
- codeLength: number;
1558
- ruleKeyword?: string;
1559
- }
1560
- export const VerifyCodeFormItem: React.FC<VerifyCodeFormItemProps>;
1561
-
1562
- }
1563
- declare module '@authing/react-ui-components/components/MFA/VerifyCodeInput/index' {
1564
- import React, { FC } from 'react';
1565
- import './style.less';
1566
- interface VerifyCodeInputProps extends React.HTMLAttributes<HTMLDivElement> {
1567
- length?: number;
1568
- size?: string;
1569
- gutter?: string;
1570
- onEenter?: Function;
1571
- showDivider?: boolean;
1572
- onChange?: any;
1573
- value?: Array<number | string>;
1574
- }
1575
- export const VerifyCodeInput: FC<VerifyCodeInputProps>;
1576
- export {};
1577
-
1578
- }
1579
- declare module '@authing/react-ui-components/components/MFA/codemap' {
1580
- import { GuardModuleAction } from '@authing/react-ui-components/components/Guard/module';
1581
- export const codeMap: Record<number, GuardModuleAction>;
1582
-
1583
- }
1584
- declare module '@authing/react-ui-components/components/MFA/core/email' {
1585
- import React from 'react';
1586
- import { MFAConfig } from '@authing/react-ui-components/components/MFA/props';
1587
- interface BindMFAEmailProps {
1588
- mfaToken: string;
1589
- onBind: (email: string) => void;
1590
- config: any;
1591
- }
1592
- export const BindMFAEmail: React.FC<BindMFAEmailProps>;
1593
- interface VerifyMFAEmailProps {
1594
- email: string;
1595
- mfaToken: string;
1596
- onVerify: (code: number, data: any) => void;
1597
- sendCodeRef: React.RefObject<HTMLButtonElement>;
1598
- codeLength: number;
1599
- }
1600
- export const VerifyMFAEmail: React.FC<VerifyMFAEmailProps>;
1601
- export const MFAEmail: React.FC<{
1602
- mfaToken: string;
1603
- email?: string;
1604
- mfaLogin: any;
1605
- config: MFAConfig;
1606
- }>;
1607
- export {};
1608
-
1609
- }
1610
- declare module '@authing/react-ui-components/components/MFA/core/face' {
1611
- /// <reference types="react" />
1612
- export const MFAFace: (props: any) => JSX.Element;
1613
-
1614
- }
1615
- declare module '@authing/react-ui-components/components/MFA/core/face_deps' {
1616
- import { TinyFaceDetectorOptions } from 'face-api.js';
1617
- export const devicesConstraints: {
1618
- video: {
1619
- width: number;
1620
- height: number;
1621
- };
1622
- };
1623
- export const FACE_SCORE = 0.65;
1624
- export function getFaceDetectorOptions(): TinyFaceDetectorOptions;
1625
- export function getCurrentFaceDetectionNet(): import("face-api.js").TinyFaceDetector;
1626
- export function isFaceDetectionModelLoaded(): boolean;
1627
- export function dataURItoBlob(base64Data: any): Blob;
1628
-
1629
- }
1630
- declare module '@authing/react-ui-components/components/MFA/core/sms' {
1631
- import React from 'react';
1632
- import { MFAConfig } from '@authing/react-ui-components/components/MFA/props';
1633
- export interface BindMFASmsProps {
1634
- mfaToken: string;
1635
- onBind: (phone: string) => void;
1636
- config: any;
1637
- }
1638
- export const BindMFASms: React.FC<BindMFASmsProps>;
1639
- export interface VerifyMFASmsProps {
1640
- mfaToken: string;
1641
- phone: string;
1642
- onVerify: (code: number, data: any) => void;
1643
- sendCodeRef: React.RefObject<HTMLButtonElement>;
1644
- codeLength: number;
1645
- }
1646
- export const VerifyMFASms: React.FC<VerifyMFASmsProps>;
1647
- export const MFASms: React.FC<{
1648
- mfaToken: string;
1649
- phone?: string;
1650
- mfaLogin: any;
1651
- config: MFAConfig;
1652
- }>;
1653
-
1654
- }
1655
- declare module '@authing/react-ui-components/components/MFA/core/totp' {
1656
- import React from 'react';
1657
- import { GuardMFAInitData, MFAConfig } from '@authing/react-ui-components/components/MFA/props';
1658
- export interface BindMFATotpProps {
1659
- initData: GuardMFAInitData;
1660
- changeModule: any;
1661
- }
1662
- export const BindMFATotp: React.FC<BindMFATotpProps>;
1663
- export interface VerifyMFATotpProps {
1664
- mfaToken: string;
1665
- mfaLogin: any;
1666
- }
1667
- export const VerifyMFATotp: React.FC<VerifyMFATotpProps>;
1668
- export interface MFATotpProps {
1669
- changeModule: any;
1670
- config: MFAConfig;
1671
- initData: GuardMFAInitData;
1672
- mfaLogin: any;
1673
- }
1674
- export const MFATotp: React.FC<MFATotpProps>;
1675
-
1676
- }
1677
- declare module '@authing/react-ui-components/components/MFA/index' {
1678
- import React from 'react';
1679
- import { GuardMFAViewProps } from '@authing/react-ui-components/components/MFA/props';
1680
- import './styles.less';
1681
- export const GuardMFAView: React.FC<GuardMFAViewProps>;
1682
-
1683
- }
1684
- declare module '@authing/react-ui-components/components/MFA/mfaMethods/index' {
1685
- import React from 'react';
1686
- import { GuardMFAInitData, MFAType } from '@authing/react-ui-components/components/MFA/props';
1687
- import './style.less';
1688
- export interface MFAMethodsProps {
1689
- applicationMfa: GuardMFAInitData['applicationMfa'];
1690
- method: MFAType;
1691
- onChangeMethod: (type: MFAType) => void;
1692
- }
1693
- export const MFAMethods: React.FC<MFAMethodsProps>;
1694
-
1695
- }
1696
- declare module '@authing/react-ui-components/components/MFA/props' {
1697
- import { IG2Config, IG2Events, IG2FCProps } from '@authing/react-ui-components/components/Type/index';
1698
- import { AuthenticationClient, User } from '@authing/react-ui-components/components/index';
1699
- export interface MFAConfig extends IG2Config {
1700
- }
1701
- export const getDefaultMFAConfig: () => MFAConfig;
1702
- export interface MFAEvents extends IG2Events {
1703
- onLogin?: (user: User, authClient: AuthenticationClient) => void;
1704
- }
1705
- export enum MFAType {
1706
- SMS = "SMS",
1707
- EMAIL = "EMAIL",
1708
- TOTP = "OTP",
1709
- FACE = "FACE"
1710
- }
1711
- export interface GuardMFAInitData {
1712
- mfaToken: string;
1713
- applicationMfa: {
1714
- mfaPolicy: MFAType;
1715
- sort: number;
1716
- status: 0 | 1;
1717
- }[];
1718
- faceMfaEnabled: boolean;
1719
- totpMfaEnabled: boolean;
1720
- email?: string;
1721
- phone?: string;
1722
- avatar?: string;
1723
- nickme?: string;
1724
- username?: string;
1725
- current?: MFAType;
1726
- }
1727
- export interface GuardMFAProps extends IG2FCProps, MFAEvents {
1728
- config: Partial<MFAConfig>;
1729
- initData: GuardMFAInitData;
1730
- }
1731
- export interface GuardMFAViewProps extends GuardMFAProps {
1732
- config: MFAConfig;
1733
- initData: GuardMFAInitData;
1734
- }
1735
-
1736
- }
1737
- declare module '@authing/react-ui-components/components/NeedHelpView/core/describeQuestions' {
1738
- /// <reference types="react" />
1739
- interface describeQuestionsProps {
1740
- appId: string;
1741
- host: string;
1742
- onSuccess: any;
1743
- }
1744
- export const DescribeQuestions: (props: describeQuestionsProps) => JSX.Element;
1745
- export {};
1746
-
1747
- }
1748
- declare module '@authing/react-ui-components/components/NeedHelpView/index' {
1749
- /// <reference types="react" />
1750
- export const GuardNeedHelpView: (props: any) => JSX.Element;
1751
-
1752
- }
1753
- declare module '@authing/react-ui-components/components/RecoveryCode/core/useCode' {
1754
- import React from 'react';
1755
- export interface UseCodeProps {
1756
- mfaToken: string;
1757
- }
1758
- export const UseCode: React.FC<UseCodeProps>;
1759
-
1760
- }
1761
- declare module '@authing/react-ui-components/components/RecoveryCode/index' {
1762
- import React from 'react';
1763
- import { GuardRecoveryCodeViewProps } from '@authing/react-ui-components/components/RecoveryCode/interface';
1764
- import './style.less';
1765
- export const GuardRecoveryCodeView: React.FC<GuardRecoveryCodeViewProps>;
1766
-
1767
- }
1768
- declare module '@authing/react-ui-components/components/RecoveryCode/interface' {
1769
- import { IG2Config, IG2Events, IG2FCProps } from '@authing/react-ui-components/components/Type/index';
1770
- import { AuthenticationClient, User } from '@authing/react-ui-components/components/index';
1771
- export interface RecoveryCodeConfig extends IG2Config {
1772
- }
1773
- export const getDefaultRecoveryCodeConfig: () => RecoveryCodeConfig;
1774
- export interface RecoveryCodeEvents extends IG2Events {
1775
- onLogin?: (user: User, authClient: AuthenticationClient) => void;
1776
- }
1777
- export interface GuardRecoveryCodeInitData {
1778
- mfaToken: string;
1779
- }
1780
- export interface GuardRecoveryCodeProps extends IG2FCProps, RecoveryCodeEvents {
1781
- config: Partial<RecoveryCodeConfig>;
1782
- initData: GuardRecoveryCodeInitData;
1783
- }
1784
- export interface GuardRecoveryCodeViewProps extends GuardRecoveryCodeProps {
1785
- config: RecoveryCodeConfig;
1786
- initData: GuardRecoveryCodeInitData;
1787
- }
1788
-
1789
- }
1790
- declare module '@authing/react-ui-components/components/Register/codemap' {
1791
- import { GuardModuleAction } from '@authing/react-ui-components/components/Guard/module';
1792
- export const codeMap: Record<number, GuardModuleAction>;
1793
-
1794
- }
1795
- declare module '@authing/react-ui-components/components/Register/components/Agreements/index' {
1796
- import React, { FC } from 'react';
1797
- import './style.less';
1798
- import { Agreement } from '@authing/react-ui-components/components/AuthingGuard/api/index';
1799
- export interface AgreementsProps {
1800
- value?: boolean;
1801
- onChange?: (value: boolean) => void;
1802
- style?: React.CSSProperties;
1803
- agreements: Agreement[];
1804
- showError?: boolean;
1805
- }
1806
- export const Agreements: FC<AgreementsProps>;
1807
-
1808
- }
1809
- declare module '@authing/react-ui-components/components/Register/core/WithEmail' {
1810
- import React from 'react';
1811
- import { Agreement, ApplicationConfig } from '@authing/react-ui-components/components/AuthingGuard/api/index';
1812
- export interface RegisterWithEmailProps {
1813
- onRegister: Function;
1814
- onBeforeRegister?: Function;
1815
- publicConfig?: ApplicationConfig;
1816
- agreements: Agreement[];
1817
- }
1818
- export const RegisterWithEmail: React.FC<RegisterWithEmailProps>;
1819
-
1820
- }
1821
- declare module '@authing/react-ui-components/components/Register/core/WithPhone' {
1822
- import React from 'react';
1823
- import { Agreement, ApplicationConfig } from '@authing/react-ui-components/components/AuthingGuard/api/index';
1824
- export interface RegisterWithPhoneProps {
1825
- onRegister: Function;
1826
- agreements: Agreement[];
1827
- publicConfig?: ApplicationConfig;
1828
- }
1829
- export const RegisterWithPhone: React.FC<RegisterWithPhoneProps>;
1830
-
1831
- }
1832
- declare module '@authing/react-ui-components/components/Register/index' {
1833
- import React from 'react';
1834
- import { GuardRegisterViewProps } from '@authing/react-ui-components/components/Register/props';
1835
- export const GuardRegisterView: React.FC<GuardRegisterViewProps>;
1836
-
1837
- }
1838
- declare module '@authing/react-ui-components/components/Register/props' {
1839
- import { RegisterMethods } from 'authing-js-sdk';
1840
- import { IG2FCProps, IG2Config, IG2Events } from '@authing/react-ui-components/components/Type/index';
1841
- import { AuthenticationClient, User, EmailRegisterParams, PhoneRegisterParams } from '@authing/react-ui-components/components/index';
1842
- import { Agreement } from '@authing/react-ui-components/components/AuthingGuard/api/index';
1843
- export interface RegisterConfig extends IG2Config {
1844
- disableRegister: boolean;
1845
- registerMethods: RegisterMethods[];
1846
- defaultRegisterMethod: RegisterMethods;
1847
- publicKey?: string;
1848
- agreementEnabled?: boolean;
1849
- agreements?: Agreement[];
1850
- }
1851
- export interface RegisterEvents extends IG2Events {
1852
- onBeforeRegister?: (registerInfo: EmailRegisterParams | PhoneRegisterParams, authClient: AuthenticationClient) => boolean | Promise<boolean>;
1853
- onRegister?: (user: User, authClient: AuthenticationClient) => void;
1854
- onRegisterError?: (error: any) => void;
1855
- onRegisterTabChange?: (activeTab: RegisterMethods) => void;
1856
- }
1857
- export interface GuardRegisterProps extends IG2FCProps, RegisterEvents {
1858
- config?: Partial<RegisterConfig>;
1859
- }
1860
- export interface GuardRegisterViewProps extends GuardRegisterProps {
1861
- config: RegisterConfig;
1862
- }
1863
- export const getDefaultRegisterConfig: () => RegisterConfig;
1864
-
1865
- }
1866
- declare module '@authing/react-ui-components/components/SendCode/SendCodeBtn' {
1867
- import React, { FC } from 'react';
1868
- import './style.less';
1869
- import { ButtonProps } from 'antd/lib/button';
1870
- export interface SendCodeProps extends ButtonProps {
1871
- beforeSend: () => Promise<boolean>;
1872
- btnRef?: React.RefObject<HTMLButtonElement>;
1873
- }
1874
- export const SendCodeBtn: FC<SendCodeProps>;
1875
-
1876
- }
1877
- declare module '@authing/react-ui-components/components/SendCode/index' {
1878
- import { FC } from 'react';
1879
- import './style.less';
1880
- import { InputProps } from 'antd/lib/input';
1881
- export interface SendPhoneCodeProps extends InputProps {
1882
- method: 'phone' | 'email';
1883
- data: string;
1884
- form?: any;
1885
- onSendCodeBefore?: any;
1886
- }
1887
- export const SendCode: FC<SendPhoneCodeProps>;
1888
-
1889
- }
1890
- declare module '@authing/react-ui-components/components/ShieldSpin/index' {
1891
- /// <reference types="react" />
1892
- interface IG2SpinProps {
1893
- size?: number;
1894
- }
1895
- export const ShieldSpin: (props: IG2SpinProps) => JSX.Element;
1896
- export const Spin: () => JSX.Element;
1897
- export {};
1898
-
1899
- }
1900
- declare module '@authing/react-ui-components/components/SubmitButton/index' {
1901
- import React from 'react';
1902
- interface SubmitButtonProps {
1903
- text?: string;
1904
- className?: string;
1905
- onClick?: any;
1906
- }
1907
- const _default: React.ForwardRefExoticComponent<SubmitButtonProps & React.RefAttributes<unknown>>;
1908
- export default _default;
1909
-
1910
- }
1911
- declare module '@authing/react-ui-components/components/SubmitSuccess/index' {
1912
- import React from 'react';
1913
- import { GuardSubmitSuccessViewProps } from '@authing/react-ui-components/components/SubmitSuccess/interface';
1914
- export const GuardSubmitSuccessView: React.FC<GuardSubmitSuccessViewProps>;
1915
-
1916
- }
1917
- declare module '@authing/react-ui-components/components/SubmitSuccess/interface' {
1918
- import { IG2Config, IG2Events, IG2FCViewProps } from '@authing/react-ui-components/components/Type/index';
1919
- export interface SubmitSuccessEvents extends IG2Events {
1920
- }
1921
- export interface SubmitSuccessConfig extends IG2Config {
1922
- }
1923
- export interface SubmitSuccessInitData {
1924
- title?: string;
1925
- message?: string;
1926
- }
1927
- export interface GuardSubmitSuccessViewProps extends IG2FCViewProps, SubmitSuccessEvents {
1928
- config: SubmitSuccessConfig;
1929
- initData?: SubmitSuccessInitData;
1930
- }
1931
-
1932
- }
1933
- declare module '@authing/react-ui-components/components/Type/index' {
1934
- import { AuthenticationClient, CommonMessage } from 'authing-js-sdk';
1935
- import { Lang } from 'authing-js-sdk/build/main/types';
1936
- import { GuardMode } from '@authing/react-ui-components/components/index';
1937
- import { ApplicationConfig } from '@authing/react-ui-components/components/AuthingGuard/api/index';
1938
- import { GuardModuleType } from '@authing/react-ui-components/components/Guard/module';
1939
- export interface IG2FCProps extends IG2Events {
1940
- appId: string;
1941
- config?: Partial<IG2Config>;
1942
- }
1943
- export interface IG2FCViewProps extends IG2FCProps {
1944
- config: IG2Config;
1945
- }
1946
- export interface IG2Config {
1947
- title: string;
1948
- logo: string;
1949
- lang: Lang;
1950
- langRange: Lang[];
1951
- host: string;
1952
- mode: GuardMode;
1953
- clickCloseable: boolean;
1954
- escCloseable: boolean;
1955
- userpool?: string;
1956
- contentCss?: string;
1957
- target?: HTMLElement | string;
1958
- __appHost__?: string;
1959
- __publicConfig__?: ApplicationConfig;
1960
- }
1961
- export interface IG2Events {
1962
- onLoad?: (authClient: AuthenticationClient) => void;
1963
- onLoadError?: (error: CommonMessage) => void;
1964
- onClose?: () => void;
1965
- onLangChange?: (lang: Lang) => void;
1966
- __changeModule?: (moduleName: GuardModuleType, initData?: any) => void;
1967
- }
1968
- export const getDefaultG2Config: () => IG2Config;
1969
-
1970
- }
1971
- declare module '@authing/react-ui-components/components/ValidatorRules/ValidatorFormItem' {
1972
- import React from 'react';
1973
- import { ICheckProps, ValidatorFormItemProps } from '@authing/react-ui-components/components/ValidatorRules/index';
1974
- export const EmailFormItem: React.ForwardRefExoticComponent<ValidatorFormItemProps & React.RefAttributes<ICheckProps>>;
1975
- export const PhoneFormItem: React.ForwardRefExoticComponent<ValidatorFormItemProps & React.RefAttributes<ICheckProps>>;
1976
-
1977
- }
1978
- declare module '@authing/react-ui-components/components/ValidatorRules/index' {
1979
- import { FormInstance, FormItemProps } from 'antd/lib/form';
1980
- export interface ValidatorFormItemProps extends FormItemProps {
1981
- userPoolId?: string;
1982
- form?: FormInstance;
1983
- checkRepeat?: boolean;
1984
- }
1985
- export interface ValidatorFormItemMetaProps extends ValidatorFormItemProps {
1986
- userPoolId?: string;
1987
- form?: FormInstance;
1988
- checkRepeat?: boolean;
1989
- method: 'email' | 'phone';
1990
- }
1991
- export interface ICheckProps {
1992
- check: (values: any) => void;
1993
- }
1994
- export { EmailFormItem, PhoneFormItem } from '@authing/react-ui-components/components/ValidatorRules/ValidatorFormItem';
1995
-
1996
- }
1997
- declare module '@authing/react-ui-components/components/VerifyCodeInput/index' {
1998
- import React, { FC } from 'react';
1999
- import './style.less';
2000
- interface VerifyCodeInputProps extends React.HTMLAttributes<HTMLDivElement> {
2001
- verifyCode: string[];
2002
- setVerifyCode: (code: string[]) => void;
2003
- length?: number;
2004
- onEnter?: Function;
2005
- }
2006
- export const VerifyCodeInput: FC<VerifyCodeInputProps>;
2007
- export {};
2008
-
2009
- }
2010
- declare module '@authing/react-ui-components/components/_utils/GuardErrorCode' {
2011
- export enum ErrorCode {
2012
- OTP_MFA_CODE = 1635,
2013
- APP_MFA_CODE = 1636,
2014
- INPUT_CAPTCHACODE = 2000,
2015
- USER_EXISTENCE = 2026,
2016
- LOGIN_INVALID = 2021,
2017
- PASSWORD_ERROR = 2333,
2018
- USER_NOT_EXIST = 2004
2019
- }
2020
-
2021
- }
2022
- declare module '@authing/react-ui-components/components/_utils/clipboard' {
2023
- export const copyToClipboard: (str: string) => void;
2024
-
2025
- }
2026
- declare module '@authing/react-ui-components/components/_utils/config' {
2027
- import { IG2Config } from '@authing/react-ui-components/components/Type/index';
2028
- import { ApplicationConfig } from '@authing/react-ui-components/components/AuthingGuard/api/index';
2029
- import { GuardLocalConfig } from '@authing/react-ui-components/components/Guard/config';
2030
- export const initConfig: (appId: string, config: Partial<IG2Config>, defaultConfig: IG2Config) => Promise<{
2031
- config: GuardLocalConfig;
2032
- publicConfig: ApplicationConfig;
2033
- }>;
2034
-
2035
- }
2036
- declare module '@authing/react-ui-components/components/_utils/guradHttp' {
2037
- export class GuardHttp {
2038
- private requestClient;
2039
- private headers;
2040
- constructor(baseUrl: string);
2041
- private getRequestClient;
2042
- setUserpoolId(userpoolId: string): void;
2043
- setAppId(appId: string): void;
2044
- setTenantId(tenantId: string): void;
2045
- setBaseUrl(baseUrl: string): void;
2046
- getHeaders: () => Record<string, string>;
2047
- get: <T>(path: string, query?: Record<string, any>, config?: RequestInit | undefined) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingResponse<T>>;
2048
- post: <T>(path: string, data: any, config?: {
2049
- headers: any;
2050
- } | undefined) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingResponse<T>>;
2051
- postForm: <T>(path: string, formData: any, config?: {
2052
- headers: any;
2053
- } | undefined) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingResponse<T>>;
2054
- }
2055
- export const initGuardHttp: (baseUrl: string) => GuardHttp;
2056
- export const getGuardHttp: () => GuardHttp;
2057
- export const useGuardHttp: () => GuardHttp;
2058
-
2059
- }
2060
- declare module '@authing/react-ui-components/components/_utils/hooks/index' {
2061
- import { GuardModuleType } from '@authing/react-ui-components/components/Guard/module';
2062
- export const useChangeModule: () => (nextModuleType: GuardModuleType, nextData?: any) => void;
2063
- export const useAppId: (appId?: string | undefined) => string;
2064
- export const useDebounce: (fn: any, delay: number) => (...args: any[]) => void;
2065
-
2066
- }
2067
- declare module '@authing/react-ui-components/components/_utils/http' {
2068
- export const requestClient: {
2069
- (input: RequestInfo, init?: RequestInit | undefined): Promise<any>;
2070
- get<T>(path: string, query?: Record<string, any>, init?: RequestInit | undefined): Promise<AuthingResponse<T>>;
2071
- post<T_1>(path: string, data: any, config?: {
2072
- headers: any;
2073
- } | undefined): Promise<AuthingResponse<T_1>>;
2074
- postForm<T_2>(path: string, formData: any, config?: {
2075
- headers: any;
2076
- } | undefined): Promise<AuthingResponse<T_2>>;
2077
- baseUrl: string;
2078
- setBaseUrl(base: string): void;
2079
- langHeader: string;
2080
- setLangHeader(key: string | undefined): void;
2081
- };
2082
- export interface AuthingResponse<T = any> {
2083
- code: number;
2084
- message?: string;
2085
- data?: T;
2086
- }
2087
-
2088
- }
2089
- declare module '@authing/react-ui-components/components/_utils/index' {
2090
- import { Rule } from 'antd/lib/form';
2091
- import qs from 'qs';
2092
- export * from '@authing/react-ui-components/components/_utils/popupCenter';
2093
- export * from '@authing/react-ui-components/components/_utils/clipboard';
2094
- export const VALIDATE_PATTERN: {
2095
- readonly email: RegExp;
2096
- readonly phone: RegExp;
2097
- readonly ip: RegExp;
2098
- readonly host: RegExp;
2099
- };
2100
- export const validate: (type: keyof typeof VALIDATE_PATTERN, val: string) => boolean;
2101
- export const getRequiredRules: (msg: string) => Rule[];
2102
- export const fieldRequiredRule: (fieldRequiredRule: string) => Rule[];
2103
- export function getDeviceName(): string | null;
2104
- export type STYLE_RECORD_KEY = 'appConfig' | 'userConfig';
2105
- export const insertStyles: (styles: string | any, recordKey?: "userConfig" | "appConfig" | undefined) => void;
2106
- export const removeStyles: (recordKey: STYLE_RECORD_KEY) => void;
2107
- export const useTitle: (title: string, prefix?: string | undefined) => void;
2108
- export const getClassnames: (classnames: (string | boolean | undefined)[]) => string;
2109
- /**
2110
- * https://www.itranslater.com/qa/details/2115518846294557696
2111
- * Simple object check.
2112
- * @param item
2113
- * @returns {boolean}
2114
- */
2115
- export function isObject(item: any): any;
2116
- /**
2117
- * https://www.itranslater.com/qa/details/2115518846294557696
2118
- * Deep merge two objects.
2119
- * @param target
2120
- * @param ...sources
2121
- */
2122
- export function deepMerge<T extends any = any>(target: T, ...sources: any[]): T;
2123
- export const getUserRegisterParams: () => {
2124
- key: string;
2125
- value: string | string[] | qs.ParsedQs | qs.ParsedQs[] | undefined;
2126
- }[];
2127
- export const isWechatBrowser: () => boolean;
2128
- export const assembledAppHost: (identifier: string, host: string) => string;
2129
- export enum PasswordStrength {
2130
- NoCheck = 0,
2131
- Low = 1,
2132
- Middle = 2,
2133
- High = 3,
2134
- AUTO = 4
2135
- }
2136
- export const PASSWORD_STRENGTH_TEXT_MAP: Record<PasswordStrength, {
2137
- placeholder: () => string;
2138
- validateMessage: () => string;
2139
- }>;
2140
- export const getSymbolTypeLength: (pwd: string) => number;
2141
- export const getPasswordValidate: (strength?: PasswordStrength, customPasswordStrength?: any) => Rule[];
2142
- export const sleep: (delay: number) => Promise<unknown>;
2143
-
2144
- }
2145
- declare module '@authing/react-ui-components/components/_utils/locales/en/index' {
2146
- import common from '@authing/react-ui-components/components/_utils/locales/en/common/index';
2147
- import login from '@authing/react-ui-components/components/_utils/locales/en/login/index';
2148
- import user from '@authing/react-ui-components/components/_utils/locales/en/user/index';
2149
- import map from '@authing/react-ui-components/components/_utils/locales/en/map/index';
2150
- export { common, login, user, map };
2151
-
2152
- }
2153
- declare module '@authing/react-ui-components/components/_utils/locales/index' {
2154
- import i18n from 'i18next';
2155
- import { LocalesConfig, Lang } from '@authing/react-ui-components/components/AuthingGuard/types/index';
2156
- export const changeLang: (lang: Lang) => void;
2157
- const initI18n: (localesConfig?: LocalesConfig, lang?: "zh-CN" | "en-US" | undefined) => void;
2158
- export { i18n, initI18n };
2159
-
2160
- }
2161
- declare module '@authing/react-ui-components/components/_utils/locales/zh/index' {
2162
- import common from '@authing/react-ui-components/components/_utils/locales/zh/common/index';
2163
- import login from '@authing/react-ui-components/components/_utils/locales/zh/login/index';
2164
- import user from '@authing/react-ui-components/components/_utils/locales/zh/user/index';
2165
- import map from '@authing/react-ui-components/components/_utils/locales/zh/map/index';
2166
- export { common, login, user, map };
2167
-
2168
- }
2169
- declare module '@authing/react-ui-components/components/_utils/popupCenter' {
1226
+ declare module '@authing/react-ui-components/utils/popupCenter' {
2170
1227
  /**
2171
1228
  * 在屏幕中心弹出新窗口加载 url
2172
1229
  * @param url
@@ -2177,104 +1234,6 @@ declare module '@authing/react-ui-components/components/_utils/popupCenter' {
2177
1234
  h: number;
2178
1235
  }) => void;
2179
1236
 
2180
- }
2181
- declare module '@authing/react-ui-components/components/context/base' {
2182
- import React from 'react';
2183
- export function createBaseContext<C>(): readonly [React.Context<C | undefined>, () => C];
2184
- export interface IBaseAction<ActionType = string> {
2185
- type: ActionType & string;
2186
- payload?: any;
2187
- [key: string]: string;
2188
- }
2189
- export interface IBaseContext<S> {
2190
- state: S;
2191
- [k: string]: any;
2192
- }
2193
- export type BaseContextComponent<Props> = React.PropsWithChildren<Props>;
2194
-
2195
- }
2196
- declare module '@authing/react-ui-components/components/context/global/context' {
2197
- /// <reference types="react" />
2198
- import { IBaseContext, BaseContextComponent } from '@authing/react-ui-components/components/context/base';
2199
- import { IState } from '@authing/react-ui-components/components/context/global/reducer';
2200
- export interface IGuardContext extends IBaseContext<IState> {
2201
- dispatch: Function;
2202
- getValue: (key: keyof IState) => any;
2203
- setValue: (key: keyof IState, value: any) => void;
2204
- }
2205
- export function useGuardContext(): IGuardContext;
2206
- export function GuardContext({ children, value, }: BaseContextComponent<Record<string, any>>): JSX.Element;
2207
-
2208
- }
2209
- declare module '@authing/react-ui-components/components/context/global/reducer' {
2210
- import { GuardConfig, ActiveTabs, GuardScenes, UserConfig, GuardEventsHandler, LocalesConfig, Lang } from '@authing/react-ui-components/components/AuthingGuard/types/index';
2211
- import { AuthenticationClient } from 'authing-js-sdk';
2212
- import { IBaseAction } from '@authing/react-ui-components/components/context/base';
2213
- import { ApplicationMfaType } from '@authing/react-ui-components/components/AuthingGuard/api/appConfig';
2214
- export type IState = {
2215
- config: GuardConfig;
2216
- userConfig: UserConfig;
2217
- authClient: AuthenticationClient;
2218
- activeTabs: ActiveTabs;
2219
- guardScenes: GuardScenes;
2220
- guardTitle: string;
2221
- mfaData: {
2222
- mfaToken: string;
2223
- phone?: string;
2224
- email?: string;
2225
- applicationMfa?: {
2226
- status: 0 | 1;
2227
- mfaPolicy: ApplicationMfaType;
2228
- sort: number;
2229
- }[];
2230
- };
2231
- userPoolId: string;
2232
- appId: string;
2233
- guardEvents: GuardEventsHandler;
2234
- localesConfig: LocalesConfig;
2235
- lang?: Lang;
2236
- realHost: string;
2237
- };
2238
- export const reducer: (state: IState, { type, ...payloads }: IBaseAction) => any;
2239
-
2240
- }
2241
- declare module '@authing/react-ui-components/components/context/module/context' {
2242
- import React, { FC } from 'react';
2243
- import { GuardModuleType } from '@authing/react-ui-components/components/Guard/module';
2244
- export interface IModuleContext {
2245
- module: string;
2246
- changeModule: React.Dispatch<GuardModuleType>;
2247
- setInitData: React.Dispatch<any>;
2248
- }
2249
- export const useModule: () => IModuleContext;
2250
- export const ModuleContext: FC<{
2251
- value: IModuleContext;
2252
- }>;
2253
-
2254
- }
2255
- declare module '@authing/react-ui-components/components/index' {
2256
- export * from '@authing/react-ui-components/components/AuthingGuard/types/index';
2257
- export * from '@authing/react-ui-components/components/AuthingGuard/hooks/index';
2258
- export type { AuthenticationClientOptions } from 'authing-js-sdk';
2259
- export * from '@authing/react-ui-components/components/Guard/index';
2260
- export * from '@authing/react-ui-components/components/Type/index';
2261
- export * from '@authing/react-ui-components/components/BindTotp/interface';
2262
- export * from '@authing/react-ui-components/components/CompleteInfo/interface';
2263
- export * from '@authing/react-ui-components/components/DownloadAuthenticator/interface';
2264
- export * from '@authing/react-ui-components/components/Error/interface';
2265
- export * from '@authing/react-ui-components/components/ForgetPassword/interface';
2266
- export * from '@authing/react-ui-components/components/_utils/config';
2267
-
2268
- }
2269
- declare module '@authing/react-ui-components/reportWebVitals' {
2270
- import { ReportHandler } from 'web-vitals';
2271
- const reportWebVitals: (onPerfEntry?: ReportHandler | undefined) => void;
2272
- export default reportWebVitals;
2273
-
2274
- }
2275
- declare module '@authing/react-ui-components/setupTests' {
2276
- import '@testing-library/jest-dom';
2277
-
2278
1237
  }
2279
1238
  declare module '@authing/react-ui-components' {
2280
1239
  import main = require('@authing/react-ui-components/components/index');