@authing/react-ui-components 4.4.4-ey.26 → 4.4.4-ey.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authing/react-ui-components",
3
- "version": "4.4.4-ey.26",
3
+ "version": "4.4.4-ey.27",
4
4
  "private": false,
5
5
  "main": "lib/index.min.js",
6
6
  "typings": "types/index.d.ts",
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import './style.less';
3
+ export default function BindPreCheck(props: any): JSX.Element;
@@ -32,6 +32,7 @@ interface AssociateFaceContent {
32
32
  mfaToken?: string;
33
33
  }
34
34
  export declare const VerifyEmail: (content: VerifyEmailContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
35
+ export declare const checkEmailOrSms: (content: any) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
35
36
  export declare const VerifySms: (content: VerifySmsContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
36
37
  export declare const VerifyTotp: (content: VerifyTotpContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
37
38
  export declare const VerifyFace: (content: VerifyFaceContent) => Promise<import("../_utils/http").AuthingGuardResponse<any>>;
@@ -20,4 +20,5 @@ export declare const MFAEmail: React.FC<{
20
20
  mfaLogin: any;
21
21
  config: MFAConfig;
22
22
  }>;
23
+ export declare const EmailPreCheck: React.FC<any>;
23
24
  export {};
@@ -26,3 +26,4 @@ export declare const MFASms: React.FC<{
26
26
  config: MFAConfig;
27
27
  initData: GuardMFAInitData;
28
28
  }>;
29
+ export declare const SmsPreCheck: React.FC<any>;
@@ -18,3 +18,4 @@ export interface MFATotpProps {
18
18
  mfaLogin: any;
19
19
  }
20
20
  export declare const MFATotp: React.FC<MFATotpProps>;
21
+ export declare const TotpPreCheck: (props: any) => JSX.Element;
@@ -4,5 +4,6 @@ import './style.less';
4
4
  export interface MFAMethodsProps {
5
5
  method: MFAType;
6
6
  onChangeMethod: (type: MFAType) => void;
7
+ beforeBind?: any;
7
8
  }
8
9
  export declare const MFAMethods: React.FC<MFAMethodsProps>;
@@ -1,2 +1,2 @@
1
- declare const _default: "4.4.4-ey.26";
1
+ declare const _default: "4.4.4-ey.27";
2
2
  export default _default;