@asgardeo/react 0.2.1 → 0.2.2

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.
@@ -20,6 +20,7 @@ interface UseAuthentication {
20
20
  accessToken: string;
21
21
  authResponse: AuthApiResponse;
22
22
  isAuthenticated: Promise<boolean> | boolean;
23
+ isGlobalLoading: boolean;
23
24
  setUsername: (username: string) => void;
24
25
  signOut: () => void;
25
26
  user: MeAPIResponse;
package/dist/index.d.ts CHANGED
@@ -307,6 +307,7 @@ interface UseAuthentication {
307
307
  accessToken: string;
308
308
  authResponse: AuthApiResponse;
309
309
  isAuthenticated: Promise<boolean> | boolean;
310
+ isGlobalLoading: boolean;
310
311
  setUsername: (username: string) => void;
311
312
  signOut: () => void;
312
313
  user: MeAPIResponse;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asgardeo/react",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "React Wrapper to build customizable login UIs for Asgardeo or Identity Server",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",