@asgardeo/react 0.15.4 → 0.16.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/AsgardeoReactClient.d.ts +1 -0
- package/dist/cjs/index.js +1628 -1408
- package/dist/cjs/index.js.map +4 -4
- package/dist/components/adapters/ConsentCheckboxList.styles.d.ts +20 -0
- package/dist/components/primitives/Toggle/Toggle.d.ts +40 -0
- package/dist/components/primitives/Toggle/Toggle.styles.d.ts +20 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1231 -1011
- package/dist/index.js.map +4 -4
- package/package.json +2 -2
|
@@ -27,6 +27,7 @@ declare class AsgardeoReactClient<T extends AsgardeoReactConfig = AsgardeoReactC
|
|
|
27
27
|
private asgardeo;
|
|
28
28
|
private loadingState;
|
|
29
29
|
private clientInstanceId;
|
|
30
|
+
private initializeConfig;
|
|
30
31
|
/**
|
|
31
32
|
* Creates a new AsgardeoReactClient instance.
|
|
32
33
|
* @param instanceId - Optional instance ID for multi-auth context support. Defaults to 0 for backward compatibility.
|