@authing/react-ui-components 3.0.0-rc.14 → 3.0.0-rc.18
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 +20 -1
- package/lib/index.min.css +1 -1
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -474,6 +474,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
|
|
|
474
474
|
passwordStrength: PasswordStrength;
|
|
475
475
|
verifyCodeLength: number;
|
|
476
476
|
websocket: string;
|
|
477
|
+
welcomeMessage: any;
|
|
477
478
|
}
|
|
478
479
|
export const fetchAppConfig: (appId: string) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingResponse<ApplicationConfig>>;
|
|
479
480
|
|
|
@@ -1775,7 +1776,13 @@ declare module '@authing/react-ui-components/components/MFA/index' {
|
|
|
1775
1776
|
import React from 'react';
|
|
1776
1777
|
import { GuardMFAViewProps } from '@authing/react-ui-components/components/MFA/interface';
|
|
1777
1778
|
import './styles.less';
|
|
1779
|
+
interface MFABackStateContextType {
|
|
1780
|
+
setMfaBackState: React.Dispatch<React.SetStateAction<string>>;
|
|
1781
|
+
mfaBackState: string;
|
|
1782
|
+
}
|
|
1783
|
+
export const MFABackStateContext: React.Context<MFABackStateContextType | undefined>;
|
|
1778
1784
|
export const GuardMFAView: React.FC<GuardMFAViewProps>;
|
|
1785
|
+
export {};
|
|
1779
1786
|
|
|
1780
1787
|
}
|
|
1781
1788
|
declare module '@authing/react-ui-components/components/MFA/interface' {
|
|
@@ -1998,6 +2005,18 @@ declare module '@authing/react-ui-components/components/ShieldSpin/index' {
|
|
|
1998
2005
|
export const Spin: () => JSX.Element;
|
|
1999
2006
|
export {};
|
|
2000
2007
|
|
|
2008
|
+
}
|
|
2009
|
+
declare module '@authing/react-ui-components/components/SingleComponent/SingleComponent' {
|
|
2010
|
+
import React from 'react';
|
|
2011
|
+
import { IG2FCProps } from '@authing/react-ui-components/components/index';
|
|
2012
|
+
export function SingleComponent<T extends IG2FCProps>(props: T, Component: React.FC<any>): JSX.Element;
|
|
2013
|
+
|
|
2014
|
+
}
|
|
2015
|
+
declare module '@authing/react-ui-components/components/SingleComponent/index' {
|
|
2016
|
+
import React from 'react';
|
|
2017
|
+
import { GuardRegisterProps } from '@authing/react-ui-components/components/Register/interface';
|
|
2018
|
+
export const Register: React.FC<GuardRegisterProps>;
|
|
2019
|
+
|
|
2001
2020
|
}
|
|
2002
2021
|
declare module '@authing/react-ui-components/components/SubmitButton/index' {
|
|
2003
2022
|
import React from 'react';
|
|
@@ -2432,7 +2451,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2432
2451
|
|
|
2433
2452
|
}
|
|
2434
2453
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2435
|
-
const _default: "3.0.0-rc.
|
|
2454
|
+
const _default: "3.0.0-rc.18";
|
|
2436
2455
|
export default _default;
|
|
2437
2456
|
|
|
2438
2457
|
}
|