@authing/react-ui-components 3.0.0-rc.17 → 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 +13 -1
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -2005,6 +2005,18 @@ declare module '@authing/react-ui-components/components/ShieldSpin/index' {
|
|
|
2005
2005
|
export const Spin: () => JSX.Element;
|
|
2006
2006
|
export {};
|
|
2007
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
|
+
|
|
2008
2020
|
}
|
|
2009
2021
|
declare module '@authing/react-ui-components/components/SubmitButton/index' {
|
|
2010
2022
|
import React from 'react';
|
|
@@ -2439,7 +2451,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2439
2451
|
|
|
2440
2452
|
}
|
|
2441
2453
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2442
|
-
const _default: "3.0.0-rc.
|
|
2454
|
+
const _default: "3.0.0-rc.18";
|
|
2443
2455
|
export default _default;
|
|
2444
2456
|
|
|
2445
2457
|
}
|