@authing/react-ui-components 4.3.11 → 4.3.12-alpha.0
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/dist/asset-manifest.json +26 -0
- package/dist/index.html +1 -0
- package/dist/static/css/2.c8e70804.chunk.css +3 -0
- package/dist/static/css/2.c8e70804.chunk.css.map +1 -0
- package/dist/static/css/main.98fc077f.chunk.css +2 -0
- package/dist/static/css/main.98fc077f.chunk.css.map +1 -0
- package/dist/static/js/2.a44b6e48.chunk.js +3 -0
- package/dist/static/js/2.a44b6e48.chunk.js.LICENSE.txt +92 -0
- package/dist/static/js/2.a44b6e48.chunk.js.map +1 -0
- package/dist/static/js/3.cdb98af5.chunk.js +2 -0
- package/dist/static/js/3.cdb98af5.chunk.js.map +1 -0
- package/dist/static/js/main.078d3347.chunk.js +2 -0
- package/dist/static/js/main.078d3347.chunk.js.map +1 -0
- package/dist/static/js/runtime-main.f781373c.js +2 -0
- package/dist/static/js/runtime-main.f781373c.js.map +1 -0
- package/dist/static/media/loading.3cf0104f.svg +32 -0
- package/lib/index.min.js +1 -1
- package/lib/index.min.js.LICENSE.txt +3 -9
- package/package.json +1 -1
- package/types/_utils/index.d.ts +1 -1
- package/types/version/version.d.ts +1 -1
- package/types/AppOtpVerify/DownloadVerifier.d.ts +0 -2
- package/types/AppOtpVerify/LoginApp.d.ts +0 -2
- package/types/AppOtpVerify/ScanQrcode.d.ts +0 -2
- package/types/AppOtpVerify/Steps.d.ts +0 -11
- package/types/AppOtpVerify/index.d.ts +0 -3
- package/types/Login/hooks/useOtpPushLogin.d.ts +0 -10
|
@@ -5,15 +5,9 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
/*!
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
/*!
|
|
14
|
-
Copyright (c) 2018 Jed Watson.
|
|
15
|
-
Licensed under the MIT License (MIT), see
|
|
16
|
-
http://jedwatson.github.io/classnames
|
|
8
|
+
Copyright (c) 2018 Jed Watson.
|
|
9
|
+
Licensed under the MIT License (MIT), see
|
|
10
|
+
http://jedwatson.github.io/classnames
|
|
17
11
|
*/
|
|
18
12
|
|
|
19
13
|
/**
|
package/package.json
CHANGED
package/types/_utils/index.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare const getClassnames: (classnames: (string | boolean | undefined)[
|
|
|
27
27
|
* @param item
|
|
28
28
|
* @returns {boolean}
|
|
29
29
|
*/
|
|
30
|
-
export declare function isObject(item: any):
|
|
30
|
+
export declare function isObject(item: any): boolean;
|
|
31
31
|
/**
|
|
32
32
|
* https://www.itranslater.com/qa/details/2115518846294557696
|
|
33
33
|
* Deep merge two objects.
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.3.
|
|
1
|
+
declare const _default: "4.3.12-alpha.0";
|
|
2
2
|
export default _default;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import './steps.styles.less';
|
|
3
|
-
interface StepsProps {
|
|
4
|
-
current: number;
|
|
5
|
-
items: StepItem[];
|
|
6
|
-
}
|
|
7
|
-
interface StepItem {
|
|
8
|
-
title: ReactNode;
|
|
9
|
-
}
|
|
10
|
-
export declare function Steps(props: StepsProps): JSX.Element;
|
|
11
|
-
export {};
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
export declare function useOtpPushLoginWay(setLoginWay: React.Dispatch<any>): void;
|
|
3
|
-
export declare function useOtpPushLoginCache(): {
|
|
4
|
-
getCachedOtpLoginAccount: typeof getCachedOtpLoginAccount;
|
|
5
|
-
cacheOtpLoginAccount: typeof cacheOtpLoginAccount;
|
|
6
|
-
clearOtpLoginAccountCache: typeof clearOtpLoginAccountCache;
|
|
7
|
-
};
|
|
8
|
-
export declare function cacheOtpLoginAccount(account: string): void;
|
|
9
|
-
export declare function getCachedOtpLoginAccount(): string;
|
|
10
|
-
export declare function clearOtpLoginAccountCache(): void;
|