@authing/react-ui-components 3.0.19-rc.3 → 3.0.19-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +6 -4
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -1886,7 +1886,7 @@ declare module '@authing/react-ui-components/components/MFA/core/face_deps' {
|
|
|
1886
1886
|
}
|
|
1887
1887
|
declare module '@authing/react-ui-components/components/MFA/core/sms' {
|
|
1888
1888
|
import React from 'react';
|
|
1889
|
-
import { MFAConfig } from '@authing/react-ui-components/components/MFA/interface';
|
|
1889
|
+
import { GuardMFAInitData, MFAConfig } from '@authing/react-ui-components/components/MFA/interface';
|
|
1890
1890
|
export interface BindMFASmsProps {
|
|
1891
1891
|
mfaToken: string;
|
|
1892
1892
|
onBind: (phone: string) => void;
|
|
@@ -1903,13 +1903,14 @@ declare module '@authing/react-ui-components/components/MFA/core/sms' {
|
|
|
1903
1903
|
sendCodeRef: React.RefObject<HTMLButtonElement>;
|
|
1904
1904
|
codeLength: number;
|
|
1905
1905
|
areaCode: string;
|
|
1906
|
+
phoneCountryCode?: string;
|
|
1907
|
+
isInternationPhone: boolean;
|
|
1906
1908
|
}
|
|
1907
1909
|
export const VerifyMFASms: React.FC<VerifyMFASmsProps>;
|
|
1908
1910
|
export const MFASms: React.FC<{
|
|
1909
|
-
mfaToken: string;
|
|
1910
|
-
phone?: string;
|
|
1911
1911
|
mfaLogin: any;
|
|
1912
1912
|
config: MFAConfig;
|
|
1913
|
+
initData: GuardMFAInitData;
|
|
1913
1914
|
}>;
|
|
1914
1915
|
|
|
1915
1916
|
}
|
|
@@ -1972,6 +1973,7 @@ declare module '@authing/react-ui-components/components/MFA/interface' {
|
|
|
1972
1973
|
sort: number;
|
|
1973
1974
|
status: 0 | 1;
|
|
1974
1975
|
}[];
|
|
1976
|
+
phoneCountryCode?: string;
|
|
1975
1977
|
faceMfaEnabled: boolean;
|
|
1976
1978
|
totpMfaEnabled: boolean;
|
|
1977
1979
|
email?: string;
|
|
@@ -2737,7 +2739,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2737
2739
|
|
|
2738
2740
|
}
|
|
2739
2741
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2740
|
-
const _default: "3.0.19-rc.
|
|
2742
|
+
const _default: "3.0.19-rc.4";
|
|
2741
2743
|
export default _default;
|
|
2742
2744
|
|
|
2743
2745
|
}
|