@authing/react-ui-components 3.0.19-rc.2 → 3.0.19-rc.3
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 +5 -1
- package/lib/index.min.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1891,6 +1891,9 @@ declare module '@authing/react-ui-components/components/MFA/core/sms' {
|
|
|
1891
1891
|
mfaToken: string;
|
|
1892
1892
|
onBind: (phone: string) => void;
|
|
1893
1893
|
config: any;
|
|
1894
|
+
areaCode: string;
|
|
1895
|
+
setAreaCode: (areaCode: string) => void;
|
|
1896
|
+
isInternationPhone: boolean;
|
|
1894
1897
|
}
|
|
1895
1898
|
export const BindMFASms: React.FC<BindMFASmsProps>;
|
|
1896
1899
|
export interface VerifyMFASmsProps {
|
|
@@ -1899,6 +1902,7 @@ declare module '@authing/react-ui-components/components/MFA/core/sms' {
|
|
|
1899
1902
|
onVerify: (code: number, data: any) => void;
|
|
1900
1903
|
sendCodeRef: React.RefObject<HTMLButtonElement>;
|
|
1901
1904
|
codeLength: number;
|
|
1905
|
+
areaCode: string;
|
|
1902
1906
|
}
|
|
1903
1907
|
export const VerifyMFASms: React.FC<VerifyMFASmsProps>;
|
|
1904
1908
|
export const MFASms: React.FC<{
|
|
@@ -2733,7 +2737,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2733
2737
|
|
|
2734
2738
|
}
|
|
2735
2739
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2736
|
-
const _default: "3.0.19-rc.
|
|
2740
|
+
const _default: "3.0.19-rc.3";
|
|
2737
2741
|
export default _default;
|
|
2738
2742
|
|
|
2739
2743
|
}
|