@authing/react-ui-components 4.3.19 → 4.3.20-jihai.1
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.839329b5.chunk.css +3 -0
- package/dist/static/css/2.839329b5.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.acd455a5.chunk.js +3 -0
- package/dist/static/js/2.acd455a5.chunk.js.LICENSE.txt +124 -0
- package/dist/static/js/2.acd455a5.chunk.js.map +1 -0
- package/dist/static/js/3.ca746d7e.chunk.js +2 -0
- package/dist/static/js/3.ca746d7e.chunk.js.map +1 -0
- package/dist/static/js/main.59425d4f.chunk.js +2 -0
- package/dist/static/js/main.59425d4f.chunk.js.map +1 -0
- package/dist/static/js/runtime-main.5d2cd96c.js +2 -0
- package/dist/static/js/runtime-main.5d2cd96c.js.map +1 -0
- package/dist/static/media/loading.3cf0104f.svg +32 -0
- package/lib/index.min.css +1 -1
- package/lib/index.min.js +1 -1
- package/package.json +1 -1
- package/types/Login/core/withDingTalkQrcode.d.ts +2 -0
- package/types/Login/core/withWeComQrcode.d.ts +2 -0
- package/types/Login/hooks/useOtpPushLogin.d.ts +10 -0
- package/types/_utils/workflowHandleStorage.d.ts +4 -0
- package/types/version/version.d.ts +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
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;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const getWorkflowHandle: () => string | undefined;
|
|
2
|
+
export declare const useWorkflowHandle: () => string | undefined;
|
|
3
|
+
export declare const updateWorkflowHandle: (workflowHandle: string) => void;
|
|
4
|
+
export declare const useUpdateFlowHandle: (workflowHandle: string) => void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.3.
|
|
1
|
+
declare const _default: "4.3.20-jihai.1";
|
|
2
2
|
export default _default;
|