@authing/guard-shim-react 6.0.0-alpha.0

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 (206) hide show
  1. package/README.md +3 -0
  2. package/dist/index.min.css +2 -0
  3. package/dist/index.min.js +2 -0
  4. package/dist/typings/example.d.ts +1 -0
  5. package/dist/typings/shim-antd4/index.d.ts +3 -0
  6. package/dist/typings/shim-antd5/index.d.ts +2 -0
  7. package/dist/typings/shim-react16/index.d.ts +8 -0
  8. package/dist/typings/shim-react18/index.d.ts +8 -0
  9. package/dist/typings/src/AuthClientProvider/AuthClientProvider.d.ts +6 -0
  10. package/dist/typings/src/AuthClientProvider/context.d.ts +6 -0
  11. package/dist/typings/src/AuthClientProvider/index.d.ts +2 -0
  12. package/dist/typings/src/Back/index.d.ts +12 -0
  13. package/dist/typings/src/BindTotp/businessRequest.d.ts +5 -0
  14. package/dist/typings/src/BindTotp/core/bindSuccess.d.ts +6 -0
  15. package/dist/typings/src/BindTotp/core/securityCode.d.ts +8 -0
  16. package/dist/typings/src/BindTotp/index.d.ts +7 -0
  17. package/dist/typings/src/BindTotp/interface.d.ts +20 -0
  18. package/dist/typings/src/ChangeLanguage/index.d.ts +9 -0
  19. package/dist/typings/src/ChangePassword/businessRequest.d.ts +9 -0
  20. package/dist/typings/src/ChangePassword/core/PasswordNotSafeReset.d.ts +6 -0
  21. package/dist/typings/src/ChangePassword/core/completePassword.d.ts +2 -0
  22. package/dist/typings/src/ChangePassword/core/firstLoginReset.d.ts +6 -0
  23. package/dist/typings/src/ChangePassword/core/rotateReset.d.ts +6 -0
  24. package/dist/typings/src/ChangePassword/index.d.ts +11 -0
  25. package/dist/typings/src/CommonFormItem/context.d.ts +4 -0
  26. package/dist/typings/src/CommonFormItem/index.d.ts +8 -0
  27. package/dist/typings/src/CommonInput/index.d.ts +6 -0
  28. package/dist/typings/src/CompleteInfo/businessRequest.d.ts +9 -0
  29. package/dist/typings/src/CompleteInfo/core/completeInfo.d.ts +11 -0
  30. package/dist/typings/src/CompleteInfo/index.d.ts +11 -0
  31. package/dist/typings/src/CompleteInfo/interface.d.ts +100 -0
  32. package/dist/typings/src/CompleteInfo/utils.d.ts +18 -0
  33. package/dist/typings/src/CopyAbleText/index.d.ts +5 -0
  34. package/dist/typings/src/DownloadAuthenticator/index.d.ts +3 -0
  35. package/dist/typings/src/DownloadAuthenticator/interface.d.ts +12 -0
  36. package/dist/typings/src/Error/index.d.ts +6 -0
  37. package/dist/typings/src/Error/interface.d.ts +8 -0
  38. package/dist/typings/src/ForgetPassword/InputPassword/index.d.ts +3 -0
  39. package/dist/typings/src/ForgetPassword/core/inputIdentify.d.ts +7 -0
  40. package/dist/typings/src/ForgetPassword/core/resetPassword.d.ts +15 -0
  41. package/dist/typings/src/ForgetPassword/index.d.ts +2 -0
  42. package/dist/typings/src/ForgetPassword/interface.d.ts +19 -0
  43. package/dist/typings/src/Guard/Guard.d.ts +10 -0
  44. package/dist/typings/src/Guard/GuardModule/stateMachine.d.ts +38 -0
  45. package/dist/typings/src/Guard/authClient.d.ts +14 -0
  46. package/dist/typings/src/Guard/config.d.ts +17 -0
  47. package/dist/typings/src/Guard/core/hooks/useAgreements.d.ts +14 -0
  48. package/dist/typings/src/Guard/core/hooks/useGuardView.d.ts +7 -0
  49. package/dist/typings/src/Guard/core/hooks/useMultipleAccounts.d.ts +322 -0
  50. package/dist/typings/src/Guard/core/index.d.ts +7 -0
  51. package/dist/typings/src/Guard/core/renderContext.d.ts +8 -0
  52. package/dist/typings/src/Guard/core/renderModule.d.ts +11 -0
  53. package/dist/typings/src/Guard/core/useAppendConfig.d.ts +4 -0
  54. package/dist/typings/src/Guard/core/usePlugin.d.ts +3 -0
  55. package/dist/typings/src/Guard/event.d.ts +70 -0
  56. package/dist/typings/src/Guard/index.d.ts +4 -0
  57. package/dist/typings/src/Guard/module.d.ts +34 -0
  58. package/dist/typings/src/Guard/sso.d.ts +19 -0
  59. package/dist/typings/src/GuardButton/GuardButton.d.ts +6 -0
  60. package/dist/typings/src/GuardButton/index.d.ts +1 -0
  61. package/dist/typings/src/GuardFace/index.d.ts +16 -0
  62. package/dist/typings/src/GuardSelect/index.d.ts +29 -0
  63. package/dist/typings/src/IconFont/iconfont.d.ts +1 -0
  64. package/dist/typings/src/IconFont/index.d.ts +8 -0
  65. package/dist/typings/src/IconFont/useGuardIconfont.d.ts +1 -0
  66. package/dist/typings/src/IdentityBinding/IdentityBinding.d.ts +5 -0
  67. package/dist/typings/src/IdentityBinding/businessRequest.d.ts +36 -0
  68. package/dist/typings/src/IdentityBinding/index.d.ts +2 -0
  69. package/dist/typings/src/IdentityBinding/interface.d.ts +27 -0
  70. package/dist/typings/src/IdentityBindingAsk/IdentityBindingAsk.d.ts +3 -0
  71. package/dist/typings/src/IdentityBindingAsk/index.d.ts +2 -0
  72. package/dist/typings/src/IdentityBindingAsk/interface.d.ts +21 -0
  73. package/dist/typings/src/ImagePro/index.d.ts +15 -0
  74. package/dist/typings/src/InputNumber/index.d.ts +5 -0
  75. package/dist/typings/src/InputPassword/index.d.ts +1 -0
  76. package/dist/typings/src/LazyloadImage/index.d.ts +12 -0
  77. package/dist/typings/src/Login/codemap.d.ts +2 -0
  78. package/dist/typings/src/Login/core/withAD.d.ts +20 -0
  79. package/dist/typings/src/Login/core/withAppQrcode.d.ts +8 -0
  80. package/dist/typings/src/Login/core/withAuthingOtpPush/BeforeLogin.d.ts +17 -0
  81. package/dist/typings/src/Login/core/withAuthingOtpPush/HowBindClient.d.ts +1 -0
  82. package/dist/typings/src/Login/core/withAuthingOtpPush/HowGetAppLoginUrl.d.ts +1 -0
  83. package/dist/typings/src/Login/core/withAuthingOtpPush/HowUsePushLogin.d.ts +1 -0
  84. package/dist/typings/src/Login/core/withAuthingOtpPush/PendingLogin.d.ts +6 -0
  85. package/dist/typings/src/Login/core/withAuthingOtpPush/PushLoginGuideModal.d.ts +2 -0
  86. package/dist/typings/src/Login/core/withAuthingOtpPush/PushLoginGuideSelector.d.ts +8 -0
  87. package/dist/typings/src/Login/core/withAuthingOtpPush/index.d.ts +2 -0
  88. package/dist/typings/src/Login/core/withAuthingOtpPush/types.d.ts +28 -0
  89. package/dist/typings/src/Login/core/withLDAP.d.ts +21 -0
  90. package/dist/typings/src/Login/core/withPassword/FormItemAccount.d.ts +6 -0
  91. package/dist/typings/src/Login/core/withPassword/GraphicVerifyCode.d.ts +7 -0
  92. package/dist/typings/src/Login/core/withPassword/InputAccount.d.ts +6 -0
  93. package/dist/typings/src/Login/core/withPassword/index.d.ts +27 -0
  94. package/dist/typings/src/Login/core/withVerifyCode/FormItemIdentify.d.ts +11 -0
  95. package/dist/typings/src/Login/core/withVerifyCode/InputInternationPhone.d.ts +7 -0
  96. package/dist/typings/src/Login/core/withVerifyCode/VirtualDropdown.d.ts +12 -0
  97. package/dist/typings/src/Login/core/withVerifyCode/index.d.ts +3 -0
  98. package/dist/typings/src/Login/core/withVerifyCode/inputIdentify.d.ts +7 -0
  99. package/dist/typings/src/Login/core/withWechatMiniQrcode.d.ts +10 -0
  100. package/dist/typings/src/Login/core/withWechatmpQrcode.d.ts +13 -0
  101. package/dist/typings/src/Login/hooks/useLoginMultiple.d.ts +64 -0
  102. package/dist/typings/src/Login/index.d.ts +5 -0
  103. package/dist/typings/src/Login/interface.d.ts +41 -0
  104. package/dist/typings/src/Login/multipleAccounts/index.d.ts +22 -0
  105. package/dist/typings/src/Login/multipleAccounts/panel.d.ts +46 -0
  106. package/dist/typings/src/Login/resetAccountName/businessRequest.d.ts +6 -0
  107. package/dist/typings/src/Login/resetAccountName/index.d.ts +3 -0
  108. package/dist/typings/src/Login/socialLogin/IdpButton/index.d.ts +1 -0
  109. package/dist/typings/src/Login/socialLogin/index.d.ts +18 -0
  110. package/dist/typings/src/Login/socialLogin/postMessage.d.ts +7 -0
  111. package/dist/typings/src/MFA/VerifyCodeInput/VerifyCodeFormItem.d.ts +8 -0
  112. package/dist/typings/src/MFA/VerifyCodeInput/index.d.ts +14 -0
  113. package/dist/typings/src/MFA/businessRequest.d.ts +46 -0
  114. package/dist/typings/src/MFA/codemap.d.ts +2 -0
  115. package/dist/typings/src/MFA/core/email.d.ts +23 -0
  116. package/dist/typings/src/MFA/core/face.d.ts +1 -0
  117. package/dist/typings/src/MFA/core/face_deps.d.ts +11 -0
  118. package/dist/typings/src/MFA/core/sms.d.ts +28 -0
  119. package/dist/typings/src/MFA/core/totp.d.ts +20 -0
  120. package/dist/typings/src/MFA/index.d.ts +9 -0
  121. package/dist/typings/src/MFA/interface.d.ts +43 -0
  122. package/dist/typings/src/MFA/mfaMethods/index.d.ts +8 -0
  123. package/dist/typings/src/NeedHelpView/core/describeQuestions.d.ts +7 -0
  124. package/dist/typings/src/NeedHelpView/index.d.ts +1 -0
  125. package/dist/typings/src/NewSubmitSuccess/index.d.ts +2 -0
  126. package/dist/typings/src/NewSubmitSuccess/interface.d.ts +19 -0
  127. package/dist/typings/src/Qrcode/UiQrCode.d.ts +51 -0
  128. package/dist/typings/src/Qrcode/WorkQrCode.d.ts +41 -0
  129. package/dist/typings/src/Qrcode/hooks/useImage.d.ts +4 -0
  130. package/dist/typings/src/Qrcode/hooks/usePostQrCode.d.ts +72 -0
  131. package/dist/typings/src/Qrcode/hooks/usePreQrCode.d.ts +31 -0
  132. package/dist/typings/src/Qrcode/hooks/useStatus.d.ts +8 -0
  133. package/dist/typings/src/Qrcode/index.d.ts +7 -0
  134. package/dist/typings/src/RecoveryCode/businessRequest.d.ts +5 -0
  135. package/dist/typings/src/RecoveryCode/core/saveCode.d.ts +5 -0
  136. package/dist/typings/src/RecoveryCode/core/useCode.d.ts +7 -0
  137. package/dist/typings/src/RecoveryCode/index.d.ts +5 -0
  138. package/dist/typings/src/RecoveryCode/interface.d.ts +8 -0
  139. package/dist/typings/src/Register/codemap.d.ts +2 -0
  140. package/dist/typings/src/Register/components/Agreements/index.d.ts +11 -0
  141. package/dist/typings/src/Register/core/WithCode.d.ts +17 -0
  142. package/dist/typings/src/Register/core/WithEmail.d.ts +13 -0
  143. package/dist/typings/src/Register/core/WithEmailCode.d.ts +11 -0
  144. package/dist/typings/src/Register/core/WithPhone.d.ts +10 -0
  145. package/dist/typings/src/Register/index.d.ts +2 -0
  146. package/dist/typings/src/Register/interface.d.ts +25 -0
  147. package/dist/typings/src/Register/utils.d.ts +1 -0
  148. package/dist/typings/src/SelectAccount/index.d.ts +2 -0
  149. package/dist/typings/src/SelfUnlock/core/selfUnlock.d.ts +8 -0
  150. package/dist/typings/src/SelfUnlock/index.d.ts +2 -0
  151. package/dist/typings/src/SelfUnlock/interface.d.ts +15 -0
  152. package/dist/typings/src/SendCode/SendCodeBtn.d.ts +10 -0
  153. package/dist/typings/src/SendCode/SendCodeByEmail.d.ts +13 -0
  154. package/dist/typings/src/SendCode/SendCodeByPhone.d.ts +17 -0
  155. package/dist/typings/src/SendCode/index.d.ts +9 -0
  156. package/dist/typings/src/ShieldSpin/index.d.ts +6 -0
  157. package/dist/typings/src/SingleComponent/SingleComponent.d.ts +2 -0
  158. package/dist/typings/src/SingleComponent/index.d.ts +3 -0
  159. package/dist/typings/src/SubmitButton/index.d.ts +10 -0
  160. package/dist/typings/src/SubmitSuccess/index.d.ts +2 -0
  161. package/dist/typings/src/SubmitSuccess/interface.d.ts +17 -0
  162. package/dist/typings/src/TenantPortalSelect/index.d.ts +2 -0
  163. package/dist/typings/src/TenantPortalSelect/interface.d.ts +32 -0
  164. package/dist/typings/src/Type/application.d.ts +339 -0
  165. package/dist/typings/src/Type/index.d.ts +86 -0
  166. package/dist/typings/src/UploadImage/index.d.ts +5 -0
  167. package/dist/typings/src/ValidatorRules/PasswordFormItem.d.ts +6 -0
  168. package/dist/typings/src/ValidatorRules/ValidatorFormItem.d.ts +8 -0
  169. package/dist/typings/src/ValidatorRules/index.d.ts +32 -0
  170. package/dist/typings/src/ValidatorRules/useCheckRepeat.d.ts +1 -0
  171. package/dist/typings/src/VerifyCodeInput/index.d.ts +10 -0
  172. package/dist/typings/src/_utils/GuardErrorCode.d.ts +11 -0
  173. package/dist/typings/src/_utils/appendConfig.d.ts +4 -0
  174. package/dist/typings/src/_utils/clipboard.d.ts +1 -0
  175. package/dist/typings/src/_utils/config/index.d.ts +110 -0
  176. package/dist/typings/src/_utils/context.d.ts +163 -0
  177. package/dist/typings/src/_utils/corsVerification.d.ts +1 -0
  178. package/dist/typings/src/_utils/countryList.d.ts +7 -0
  179. package/dist/typings/src/_utils/errorFace.d.ts +12 -0
  180. package/dist/typings/src/_utils/facePlugin/index.d.ts +4 -0
  181. package/dist/typings/src/_utils/facePlugin/interface.d.ts +5 -0
  182. package/dist/typings/src/_utils/flowHandleStorage.d.ts +4 -0
  183. package/dist/typings/src/_utils/getCaptchaUrl.d.ts +1 -0
  184. package/dist/typings/src/_utils/guardDocument.d.ts +3 -0
  185. package/dist/typings/src/_utils/guardHttp.d.ts +27 -0
  186. package/dist/typings/src/_utils/hooks/index.d.ts +43 -0
  187. package/dist/typings/src/_utils/http.d.ts +33 -0
  188. package/dist/typings/src/_utils/index.d.ts +119 -0
  189. package/dist/typings/src/_utils/initAppId.d.ts +7 -0
  190. package/dist/typings/src/_utils/locales/en-us/index.d.ts +4 -0
  191. package/dist/typings/src/_utils/locales/index.d.ts +9 -0
  192. package/dist/typings/src/_utils/locales/ja-jp/index.d.ts +4 -0
  193. package/dist/typings/src/_utils/locales/zh-cn/index.d.ts +4 -0
  194. package/dist/typings/src/_utils/locales/zh-tw/index.d.ts +4 -0
  195. package/dist/typings/src/_utils/logger/index.d.ts +15 -0
  196. package/dist/typings/src/_utils/logger/interface.d.ts +5 -0
  197. package/dist/typings/src/_utils/popupCenter.d.ts +9 -0
  198. package/dist/typings/src/_utils/responseManagement/index.d.ts +4 -0
  199. package/dist/typings/src/_utils/responseManagement/interface.d.ts +25 -0
  200. package/dist/typings/src/_utils/tenant.d.ts +19 -0
  201. package/dist/typings/src/_utils/useErrorText.d.ts +5 -0
  202. package/dist/typings/src/index.d.ts +51 -0
  203. package/dist/typings/src/types.d.ts +59 -0
  204. package/dist/typings/src/version/index.d.ts +2 -0
  205. package/dist/typings/src/version/version.d.ts +2 -0
  206. package/package.json +17 -0
@@ -0,0 +1,21 @@
1
+ import { AuthenticationClient, User } from 'authing-js-sdk';
2
+ import { IG2Config, IG2Events, IG2FCProps, IG2FCViewProps } from '..';
3
+ export interface IdentityBindingAskConfig extends IG2Config {
4
+ }
5
+ export interface IdentityBindingAskEvents extends IG2Events {
6
+ onLogin?: (user: User, authClient: AuthenticationClient) => void;
7
+ onLoginError?: (errorMessages: any) => void;
8
+ onCreate?: (user: User, authClient: AuthenticationClient) => void;
9
+ onCreateError?: (errorMessages: any) => void;
10
+ }
11
+ export interface GuardIdentityBindingAskProps extends IG2FCProps, IdentityBindingAskEvents {
12
+ config?: Partial<IdentityBindingAskConfig>;
13
+ initData?: any;
14
+ }
15
+ export interface GuardIdentityBindingAskInitData {
16
+ methods: 'email' | 'username' | 'phone' | 'phone-code' | 'email-code';
17
+ }
18
+ export interface GuardIdentityBindingAskViewProps extends GuardIdentityBindingAskProps, IG2FCViewProps {
19
+ config: IdentityBindingAskConfig;
20
+ initData: GuardIdentityBindingAskInitData;
21
+ }
@@ -0,0 +1,15 @@
1
+ import { React } from 'shim-react';
2
+ import './styles.less';
3
+ export interface ImageProProps extends React.ImgHTMLAttributes<HTMLImageElement> {
4
+ src: string;
5
+ className?: string;
6
+ alt?: string;
7
+ imgClassName?: string;
8
+ size?: number | string;
9
+ width?: number | string;
10
+ height?: number | string;
11
+ borderRadius?: number | string;
12
+ noSpin?: boolean;
13
+ }
14
+ export declare const ImagePro: (props: ImageProProps) => JSX.Element;
15
+ export declare const ImagePro2: (props: ImageProProps) => JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { InputProps } from 'shim-antd/lib/input';
2
+ import { React } from 'shim-react';
3
+ export interface InputNumberProps extends InputProps {
4
+ }
5
+ export declare const InputNumber: React.ForwardRefExoticComponent<Pick<InputNumberProps, keyof InputNumberProps> & React.RefAttributes<any>>;
@@ -0,0 +1 @@
1
+ export declare const InputPassword: (props: any) => JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { CSSProperties, ReactNode } from 'shim-react';
2
+ interface LazyloadImageProps {
3
+ src: string;
4
+ placeholder: ReactNode;
5
+ className?: string;
6
+ style?: CSSProperties;
7
+ alt?: string;
8
+ width?: string;
9
+ height?: string;
10
+ }
11
+ export declare function LazyloadImage(props: LazyloadImageProps): JSX.Element;
12
+ export {};
@@ -0,0 +1,2 @@
1
+ import { GuardModuleAction } from '../Guard/module';
2
+ export declare const codeMap: Record<number, GuardModuleAction>;
@@ -0,0 +1,20 @@
1
+ import { BackFillMultipleState, StoreInstance } from '../../Guard/core/hooks/useMultipleAccounts';
2
+ import { Agreement } from '../../Type/application';
3
+ interface LoginWithADProps {
4
+ publicKey: string;
5
+ autoRegister?: boolean;
6
+ onLoginSuccess: any;
7
+ onLoginFailed: any;
8
+ onBeforeLogin: any;
9
+ agreements: Agreement[];
10
+ /**
11
+ * 回填的数据
12
+ */
13
+ backfillData?: BackFillMultipleState;
14
+ /**
15
+ * 根据输入的账号 & 返回获得对应的登录方法
16
+ */
17
+ multipleInstance?: StoreInstance;
18
+ }
19
+ export declare const LoginWithAD: (props: LoginWithADProps) => JSX.Element;
20
+ export {};
@@ -0,0 +1,8 @@
1
+ import { StoreInstance } from '../../Guard/core/hooks/useMultipleAccounts';
2
+ interface LoginWithAppQrcodeProps {
3
+ onLoginSuccess: any;
4
+ canLoop: boolean;
5
+ multipleInstance?: StoreInstance;
6
+ }
7
+ export declare const LoginWithAppQrcode: (props: LoginWithAppQrcodeProps) => JSX.Element | null;
8
+ export {};
@@ -0,0 +1,17 @@
1
+ import { React } from 'shim-react';
2
+ import { OnPushSuccessProps, OnLoginProps } from './types';
3
+ import { AuthingGuardResponse } from '../../../_utils/http';
4
+ import { Agreement } from '../../../Type';
5
+ interface BeforeLoginProps {
6
+ onPushSuccess: (props: OnPushSuccessProps) => void;
7
+ signinByPush: (props: OnLoginProps) => Promise<AuthingGuardResponse<{
8
+ pushCodeId: string;
9
+ }>>;
10
+ pushLoginStatus: boolean;
11
+ onchangePushLoginStatus: () => void;
12
+ defaultAccount: string;
13
+ setAccount: React.Dispatch<any>;
14
+ agreements: Agreement[];
15
+ }
16
+ export declare function BeforeLogin(props: BeforeLoginProps): JSX.Element;
17
+ export {};
@@ -0,0 +1 @@
1
+ export declare function HowBindClient(): JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function HowGetAppLoginUrl(): JSX.Element;
@@ -0,0 +1 @@
1
+ export declare function HowUsePushLogin(): JSX.Element;
@@ -0,0 +1,6 @@
1
+ import './styles.less';
2
+ interface PendingLoginProps {
3
+ onCancelLogin: () => void;
4
+ }
5
+ export declare function PendingLogin(props: PendingLoginProps): JSX.Element;
6
+ export {};
@@ -0,0 +1,2 @@
1
+ import { PushLoginGudeModalProps } from './types';
2
+ export declare function PushLoginGudeModal(props: PushLoginGudeModalProps): JSX.Element;
@@ -0,0 +1,8 @@
1
+ import { SelectorOptions, Selector } from './types';
2
+ interface PushLoginGuideSelectorProps {
3
+ defaultValue: Selector;
4
+ onChange: (value: Selector) => void;
5
+ options: SelectorOptions;
6
+ }
7
+ export declare function PushLoginGuideSelector(props: PushLoginGuideSelectorProps): JSX.Element;
8
+ export {};
@@ -0,0 +1,2 @@
1
+ import { LoginWithAuthingOtpPushProps } from './types';
2
+ export declare function LoginWithAuthingOtpPush(props: LoginWithAuthingOtpPushProps): JSX.Element;
@@ -0,0 +1,28 @@
1
+ import { BackFillMultipleState, StoreInstance } from '../../../Guard/core/hooks/useMultipleAccounts';
2
+ import { Agreement } from '../../../Type';
3
+ export interface OnPushSuccessProps {
4
+ pushCodeId: string;
5
+ }
6
+ export interface CheckPushCodeStatusProps {
7
+ pushCodeId: string;
8
+ }
9
+ export interface OnLoginProps {
10
+ account: string;
11
+ }
12
+ export declare type LoginStatus = 'before' | 'pending';
13
+ export interface LoginWithAuthingOtpPushProps {
14
+ onLoginSuccess?: any;
15
+ multipleInstance?: StoreInstance;
16
+ initData?: BackFillMultipleState;
17
+ agreements: Agreement[];
18
+ }
19
+ export interface PushLoginGudeModalProps {
20
+ visible: boolean;
21
+ onClose: () => void;
22
+ }
23
+ export declare type Selector = 'howUsePushLogin' | 'howBindClient' | 'howGetAppLoginUrl';
24
+ export interface SelectorOption {
25
+ value: Selector;
26
+ label: string;
27
+ }
28
+ export declare type SelectorOptions = SelectorOption[];
@@ -0,0 +1,21 @@
1
+ import { Agreement } from '../../Type/application';
2
+ import { BackFillMultipleState, StoreInstance } from '../../Guard/core/hooks/useMultipleAccounts';
3
+ interface LoginWithLDAPProps {
4
+ publicKey: string;
5
+ autoRegister?: boolean;
6
+ host?: string;
7
+ onLoginSuccess: any;
8
+ onLoginFailed: any;
9
+ onBeforeLogin: any;
10
+ agreements: Agreement[];
11
+ /**
12
+ * 根据输入的账号 & 返回获得对应的登录方法
13
+ */
14
+ multipleInstance?: StoreInstance;
15
+ /**
16
+ * 多账号回填的数据
17
+ */
18
+ backfillData?: BackFillMultipleState;
19
+ }
20
+ export declare const LoginWithLDAP: (props: LoginWithLDAPProps) => JSX.Element;
21
+ export {};
@@ -0,0 +1,6 @@
1
+ import { FormItemProps } from 'shim-antd/lib/form';
2
+ import { React } from 'shim-react';
3
+ export interface FormItemAccountProps extends FormItemProps {
4
+ validPasswordLoginMethods: string[];
5
+ }
6
+ export declare const FormItemAccount: React.FC<FormItemAccountProps>;
@@ -0,0 +1,7 @@
1
+ import { InputProps } from 'shim-antd/lib/input';
2
+ import { React } from 'shim-react';
3
+ export interface GraphicVerifyCodeProps extends InputProps {
4
+ verifyCodeUrl: string;
5
+ changeCode: () => void;
6
+ }
7
+ export declare const GraphicVerifyCode: React.FC<GraphicVerifyCodeProps>;
@@ -0,0 +1,6 @@
1
+ import { InputProps } from 'shim-antd/lib/input';
2
+ import { React } from 'shim-react';
3
+ export interface InputAccountProps extends InputProps {
4
+ passwordLoginMethods: string[];
5
+ }
6
+ export declare const InputAccount: React.FC<InputAccountProps>;
@@ -0,0 +1,27 @@
1
+ import { AuthingResponse } from '../../../_utils/http';
2
+ import { Agreement, LoginMethods } from '../../../Type/application';
3
+ import { BackFillMultipleState, StoreInstance } from '../../../Guard/core/hooks/useMultipleAccounts';
4
+ interface LoginWithPasswordProps {
5
+ publicKey: string;
6
+ autoRegister?: boolean;
7
+ host?: string;
8
+ onBeforeLogin?: any;
9
+ onLoginSuccess?: any;
10
+ onLoginFailed?: any;
11
+ onLoginRequest?: (loginInfo: any) => Promise<AuthingResponse>;
12
+ passwordLoginMethods: string[];
13
+ agreements: Agreement[];
14
+ loginWay?: LoginMethods;
15
+ submitButText?: string;
16
+ saveIdentify?: (type: LoginMethods, identity: string) => void;
17
+ /**
18
+ * 根据输入的账号 & 返回获得对应的登录方法
19
+ */
20
+ multipleInstance?: StoreInstance;
21
+ /**
22
+ * 多账号回填的数据
23
+ */
24
+ backfillData?: BackFillMultipleState;
25
+ }
26
+ export declare const LoginWithPassword: (props: LoginWithPasswordProps) => JSX.Element;
27
+ export {};
@@ -0,0 +1,11 @@
1
+ import { FormItemProps } from 'shim-antd/lib/form';
2
+ import { React } from 'shim-react';
3
+ import { VerifyLoginMethods } from '../../../Type/application';
4
+ export interface FormItemIdentifyProps extends FormItemProps {
5
+ checkRepeat?: boolean;
6
+ checkExist?: boolean;
7
+ methods: VerifyLoginMethods[];
8
+ currentMethod: 'phone-code' | 'email-code';
9
+ areaCode?: string;
10
+ }
11
+ export declare const FormItemIdentify: React.FC<FormItemIdentifyProps>;
@@ -0,0 +1,7 @@
1
+ import { InputProps } from 'shim-antd/lib/input';
2
+ import { React } from 'shim-react';
3
+ export interface InputInternationPhoneProps extends InputProps {
4
+ areaCode: string;
5
+ onAreaCodeChange: (areaCode: string) => void;
6
+ }
7
+ export declare const InputInternationPhone: React.FC<InputInternationPhoneProps>;
@@ -0,0 +1,12 @@
1
+ import { React } from 'shim-react';
2
+ import './styles.less';
3
+ export interface VirtualDropdownProps {
4
+ /**
5
+ * 回填的国际化区号
6
+ */
7
+ regionCode?: string;
8
+ value?: string;
9
+ onChange?: (value: string) => void;
10
+ style?: React.CSSProperties;
11
+ }
12
+ export declare const VirtualDropdown: React.FC<VirtualDropdownProps>;
@@ -0,0 +1,3 @@
1
+ import './styles.less';
2
+ declare const LoginWithVerifyCode: (props: any) => JSX.Element;
3
+ export { LoginWithVerifyCode };
@@ -0,0 +1,7 @@
1
+ import { InputProps } from 'shim-antd/lib/input';
2
+ import { React } from 'shim-react';
3
+ import { VerifyLoginMethods } from '../../../Type/application';
4
+ export interface InputIdentifyProps extends InputProps {
5
+ methods: VerifyLoginMethods[];
6
+ }
7
+ export declare const InputIdentify: React.FC<InputIdentifyProps>;
@@ -0,0 +1,10 @@
1
+ import { StoreInstance } from '../../Guard/core/hooks/useMultipleAccounts';
2
+ interface LoginWithWechatMiniQrcodeProps {
3
+ onLoginSuccess: any;
4
+ canLoop: boolean;
5
+ qrCodeScanOptions: any;
6
+ id: string;
7
+ multipleInstance?: StoreInstance;
8
+ }
9
+ export declare const LoginWithWechatMiniQrcode: (props: LoginWithWechatMiniQrcodeProps) => JSX.Element | null;
10
+ export {};
@@ -0,0 +1,13 @@
1
+ import { StoreInstance } from '../../Guard/core/hooks/useMultipleAccounts';
2
+ interface LoginWithWechatmpQrcodeProps {
3
+ onLoginSuccess: any;
4
+ canLoop: boolean;
5
+ qrCodeScanOptions: any;
6
+ id: string;
7
+ /**
8
+ * 多账号存储实例
9
+ */
10
+ multipleInstance?: StoreInstance;
11
+ }
12
+ export declare const LoginWithWechatmpQrcode: (props: LoginWithWechatmpQrcodeProps) => JSX.Element | null;
13
+ export {};
@@ -0,0 +1,64 @@
1
+ import { FormInstance } from 'shim-antd/lib/form';
2
+ import { React } from 'shim-react';
3
+ import { BackFillMultipleState, LoginWay } from '../../Guard/core/hooks/useMultipleAccounts';
4
+ /**
5
+ * 多账号登录下 账户 & 登录方式自动回填
6
+ * TODO: HOOK 参数有时间整理成为对象,开始没有想到有这么多
7
+ * 调用地方 core 中需要回填的两个登录方式
8
+ */
9
+ declare function useLoginMultipleBackFill(options: {
10
+ form: FormInstance<any>;
11
+ way: LoginWay;
12
+ formKey: string;
13
+ backfillData?: BackFillMultipleState;
14
+ isOnlyInternationSms?: boolean;
15
+ setAreaCode?: React.Dispatch<React.SetStateAction<string>>;
16
+ cancelBackfill?: boolean;
17
+ changeCurrentMethod?: (account: string) => void;
18
+ }): void;
19
+ /**
20
+ * 多账号统一状态管理
21
+ * @param setLoginWay
22
+ * @returns
23
+ */
24
+ declare function useLoginMultiple(setLoginWay: React.Dispatch<any>): {
25
+ isMultipleAccount: boolean;
26
+ multipleInstance: {
27
+ initStore: (appId: string, options: {
28
+ serverSideLoginMethods: LoginWay[];
29
+ isInternationSms: boolean;
30
+ }) => void;
31
+ setLoginWay: (tab: "input" | "qrcode", way: LoginWay, id?: string | undefined, internation?: {
32
+ phoneCountryCode: string;
33
+ areaCode: string;
34
+ } | undefined) => void;
35
+ setUserInfo: (user: Omit<import("../../Guard/core/hooks/useMultipleAccounts").User & {
36
+ id: string;
37
+ loginAccount?: string | undefined;
38
+ }, "tab" | "way" | "phoneCountryCode">) => void;
39
+ setLoginWayByHttpData: (account: string, data: {
40
+ username?: string | undefined;
41
+ phone?: string | undefined;
42
+ email?: string | undefined;
43
+ }) => void;
44
+ setLoginWayByLDAPData: (account: string, data: {
45
+ name?: string | undefined;
46
+ phone?: string | undefined;
47
+ email?: string | undefined;
48
+ }) => void;
49
+ getMemoUser: (excludeWays?: LoginWay[]) => import("../multipleAccounts/panel").SelectOptions[];
50
+ getMemoSingleUser: (id: string) => {
51
+ way: LoginWay;
52
+ account: string;
53
+ } | undefined;
54
+ delUserById: (id: string) => string;
55
+ getMemberState: () => boolean;
56
+ getFirstBackFillData: () => BackFillMultipleState | undefined;
57
+ getOriginAccount: () => string;
58
+ getOriginWay: () => string;
59
+ } | undefined;
60
+ referMultipleState: ((type: "multiple" | "login") => void) | undefined;
61
+ backfillData: BackFillMultipleState | undefined;
62
+ defaultQrWay: string | undefined;
63
+ };
64
+ export { useLoginMultipleBackFill, useLoginMultiple };
@@ -0,0 +1,5 @@
1
+ import { React } from 'shim-react';
2
+ import './styles.less';
3
+ export declare const GuardLoginView: React.FC<{
4
+ isResetPage?: boolean;
5
+ }>;
@@ -0,0 +1,41 @@
1
+ import { IG2Config, IG2Events, IG2FCProps, IG2FCViewProps } from '../Type';
2
+ import { AuthenticationClient, User } from 'authing-js-sdk';
3
+ import { QrCodeAuthenticationClient } from 'authing-js-sdk/build/main/lib/authentication/QrCodeAuthenticationClient';
4
+ import { Agreement, LoginMethods, SocialConnectionProvider } from '../Type/application';
5
+ export interface LoginConfig extends IG2Config {
6
+ autoRegister?: boolean;
7
+ disableResetPwd?: boolean;
8
+ disableRegister?: boolean;
9
+ defaultLoginMethod?: LoginMethods;
10
+ loginMethods?: LoginMethods[];
11
+ passwordLoginMethods?: string[];
12
+ socialConnections?: SocialConnectionProvider[];
13
+ socialConnectionsBtnShape?: 'default' | 'button' | 'icon';
14
+ enterpriseConnections?: string[];
15
+ qrCodeScanOptions?: Parameters<QrCodeAuthenticationClient['startScanning']>[1];
16
+ publicKey?: string;
17
+ agreementEnabled?: boolean;
18
+ agreements?: Agreement[];
19
+ /**
20
+ * 关闭二维码状态check轮询(console上使用)
21
+ */
22
+ _closeLoopCheckQrcode?: boolean;
23
+ }
24
+ export interface LoginEvents extends IG2Events {
25
+ onLogin?: (user: User, authClient: AuthenticationClient) => void;
26
+ onLoginError?: (errorMessages: any) => void;
27
+ onLoginTabChange?: (activeTab: LoginMethods) => void;
28
+ onBeforeLogin?: (loginInfo: any, authClient: AuthenticationClient) => boolean | Promise<boolean>;
29
+ }
30
+ export interface GuardLoginProps extends IG2FCProps, LoginEvents {
31
+ config?: Partial<LoginConfig>;
32
+ }
33
+ export interface GuardLoginViewProps extends GuardLoginProps, IG2FCViewProps {
34
+ config: LoginConfig;
35
+ }
36
+ export interface GuardLoginInitData {
37
+ specifyDefaultLoginMethod?: LoginMethods;
38
+ _firstItemInitialValue?: string;
39
+ _lockMethod?: string;
40
+ }
41
+ export declare const getDefaultLoginConfig: () => LoginConfig;
@@ -0,0 +1,22 @@
1
+ import { React } from 'shim-react';
2
+ import { LoginWay, StoreInstance } from '../../Guard/core/hooks/useMultipleAccounts';
3
+ import { GuardModuleType } from '../../Guard';
4
+ interface MultipleAccountsProps {
5
+ /**
6
+ * 多账号存储实例
7
+ */
8
+ multipleInstance?: StoreInstance;
9
+ /**
10
+ * 切换 Guard 方法
11
+ */
12
+ changeModule?: (moduleName: GuardModuleType, initData?: any) => Promise<void>;
13
+ /**
14
+ * 切换多账号状态
15
+ */
16
+ referMultipleState?: (type: 'login' | 'multiple', data?: {
17
+ account: string;
18
+ way: LoginWay;
19
+ }) => void;
20
+ }
21
+ declare const MultipleAccounts: React.NamedExoticComponent<MultipleAccountsProps>;
22
+ export { MultipleAccounts };
@@ -0,0 +1,46 @@
1
+ import { React } from 'shim-react';
2
+ import './style.less';
3
+ interface SelectPanelProps {
4
+ lists: SelectOptions[];
5
+ /**
6
+ * 点击删除
7
+ */
8
+ handleDel: (id: string) => void;
9
+ /**
10
+ * 点击 li
11
+ */
12
+ onClick: (id: string) => void;
13
+ }
14
+ export interface SelectOptions {
15
+ /**
16
+ * 头像
17
+ */
18
+ photo?: string;
19
+ /**
20
+ * 标题
21
+ */
22
+ title?: string;
23
+ /**
24
+ * 描述
25
+ */
26
+ description?: string;
27
+ /**
28
+ * 用户 ID 唯一标识符
29
+ */
30
+ id: string | 'other';
31
+ /**
32
+ * 显示操作栏 default: true
33
+ */
34
+ operation?: boolean;
35
+ /**
36
+ * 登录时间
37
+ */
38
+ _updateTime: number;
39
+ /**
40
+ * 替代图片元素
41
+ */
42
+ element?: React.ReactElement;
43
+ way: string;
44
+ }
45
+ declare const SelectPanel: React.FC<SelectPanelProps>;
46
+ export { SelectPanel };
@@ -0,0 +1,6 @@
1
+ export declare const enum ResetAccountBusinessAction {
2
+ ResetName = "reset-username-before-auth"
3
+ }
4
+ export declare const authFlow: (action: ResetAccountBusinessAction, content: {
5
+ username: string;
6
+ }) => Promise<import("../../_utils/http").AuthingGuardResponse<any>>;
@@ -0,0 +1,3 @@
1
+ import { React } from 'shim-react';
2
+ import './style.less';
3
+ export declare const ResetAccountName: React.FC;
@@ -0,0 +1 @@
1
+ export declare const IdpButton: (props: any) => JSX.Element | null;
@@ -0,0 +1,18 @@
1
+ import { React } from 'shim-react';
2
+ import './style.less';
3
+ import { GuardLocalConfig } from '../../Guard';
4
+ import { ApplicationConfig, SocialConnectionItem } from '../../Type/application';
5
+ import { StoreInstance } from '../../Guard/core/hooks/useMultipleAccounts';
6
+ export interface SocialLoginProps {
7
+ appId: string;
8
+ config: GuardLocalConfig;
9
+ onLoginFailed: any;
10
+ onLoginSuccess: any;
11
+ enterpriseConnectionObjs: ApplicationConfig['identityProviders'];
12
+ socialConnectionObjs: SocialConnectionItem[];
13
+ /**
14
+ * 根据输入的账号 & 返回获得对应的登录方法
15
+ */
16
+ multipleInstance?: StoreInstance;
17
+ }
18
+ export declare const SocialLogin: React.FC<SocialLoginProps>;
@@ -0,0 +1,7 @@
1
+ import { AuthingResponse } from '../../_utils/http';
2
+ export declare const usePostMessage: () => (evt: MessageEvent) => import("../../_utils/http").AuthingGuardResponse<any> | {
3
+ code: any;
4
+ data: any;
5
+ onGuardHandling: undefined;
6
+ } | undefined;
7
+ export declare const useErrorHandling: () => (res: AuthingResponse) => import("../../_utils/http").AuthingGuardResponse<any>;
@@ -0,0 +1,8 @@
1
+ import { React } from 'shim-react';
2
+ import { FormItemProps } from 'shim-antd/lib/form';
3
+ import './style.less';
4
+ export interface VerifyCodeFormItemProps extends FormItemProps {
5
+ codeLength: number;
6
+ ruleKeyword?: string;
7
+ }
8
+ export declare const VerifyCodeFormItem: React.FC<VerifyCodeFormItemProps>;
@@ -0,0 +1,14 @@
1
+ import { React } from 'shim-react';
2
+ import './style.less';
3
+ interface VerifyCodeInputProps extends React.HTMLAttributes<HTMLDivElement> {
4
+ length?: number;
5
+ size?: string;
6
+ gutter?: string;
7
+ onEenter?: Function;
8
+ showDivider?: boolean;
9
+ onChange?: any;
10
+ value?: Array<number | string>;
11
+ onFinish?: any;
12
+ }
13
+ export declare const VerifyCodeInput: React.FC<VerifyCodeInputProps>;
14
+ export {};
@@ -0,0 +1,46 @@
1
+ export declare enum MfaBusinessAction {
2
+ VerifyEmail = "verify-email",
3
+ VerifySms = "verify-sms",
4
+ VerifyTotp = "verify-totp",
5
+ VerifyFace = "verify-face",
6
+ AssociateFace = "associate-face"
7
+ }
8
+ export declare const authFlow: (action: MfaBusinessAction, content: any) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
9
+ interface VerifySmsContent {
10
+ phone: string;
11
+ code: string;
12
+ mfaToken?: string;
13
+ phoneCountryCode?: string;
14
+ }
15
+ interface VerifyEmailContent {
16
+ email: string;
17
+ code: string;
18
+ mfaToken?: string;
19
+ }
20
+ interface VerifyTotpContent {
21
+ totp: string;
22
+ mfaToken?: string;
23
+ }
24
+ interface VerifyFaceContent {
25
+ photo: string;
26
+ mfaToken?: string;
27
+ }
28
+ interface AssociateFaceContent {
29
+ photoA: string;
30
+ photoB: string;
31
+ isExternalPhoto?: boolean;
32
+ mfaToken?: string;
33
+ }
34
+ export declare const VerifyEmail: (content: VerifyEmailContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
35
+ export declare const VerifySms: (content: VerifySmsContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
36
+ export declare const VerifyTotp: (content: VerifyTotpContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
37
+ export declare const VerifyFace: (content: VerifyFaceContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
38
+ export declare const AssociateFace: (content: AssociateFaceContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
39
+ export declare const useMfaBusinessRequest: () => {
40
+ "verify-email": (content: VerifyEmailContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
41
+ "verify-sms": (content: VerifySmsContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
42
+ "verify-totp": (content: VerifyTotpContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
43
+ "verify-face": (content: VerifyFaceContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
44
+ "associate-face": (content: AssociateFaceContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
45
+ };
46
+ export {};
@@ -0,0 +1,2 @@
1
+ import { GuardModuleAction } from '../Guard/module';
2
+ export declare const codeMap: Record<number, GuardModuleAction>;