@authing/react-ui-components 4.2.3-alpha.3 → 4.2.3-alpha.4
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/package.json
CHANGED
|
@@ -320,4 +320,7 @@ declare const useMultipleAccounts: ({ appId, finallyConfig, }: {
|
|
|
320
320
|
clearBackFillData: () => void;
|
|
321
321
|
};
|
|
322
322
|
export default useMultipleAccounts;
|
|
323
|
-
export declare function useMultipleAccountCache():
|
|
323
|
+
export declare function useMultipleAccountCache(): {
|
|
324
|
+
getMultipleAccountCache: typeof getMultipleAccountCache;
|
|
325
|
+
};
|
|
326
|
+
declare function getMultipleAccountCache(): any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { OnPushSuccessProps, OnLoginProps } from './types';
|
|
3
3
|
import { AuthingGuardResponse } from '../../../_utils/http';
|
|
4
4
|
interface BeforeLoginProps {
|
|
@@ -9,6 +9,7 @@ interface BeforeLoginProps {
|
|
|
9
9
|
pushLoginStatus: boolean;
|
|
10
10
|
onchangePushLoginStatus: () => void;
|
|
11
11
|
defaultAccount: string;
|
|
12
|
+
setAccount: React.Dispatch<any>;
|
|
12
13
|
}
|
|
13
14
|
export declare function BeforeLogin(props: BeforeLoginProps): JSX.Element;
|
|
14
15
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.2.3-alpha.
|
|
1
|
+
declare const _default: "4.2.3-alpha.3";
|
|
2
2
|
export default _default;
|