@asgardeo/react 0.14.0 → 0.14.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.
- package/dist/cjs/index.js +1150 -810
- package/dist/cjs/index.js.map +4 -4
- package/dist/components/adapters/Consent.d.ts +90 -0
- package/dist/components/adapters/ConsentCheckboxList.d.ts +94 -0
- package/dist/components/adapters/FlowTimer.d.ts +62 -0
- package/dist/components/presentation/auth/AuthOptionFactory.d.ts +8 -0
- package/dist/components/presentation/auth/SignIn/v2/BaseSignIn.d.ts +12 -0
- package/dist/components/presentation/auth/SignIn/v2/SignIn.d.ts +10 -0
- package/dist/components/primitives/Icons/ArrowRightLeft.d.ts +29 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +1002 -663
- package/dist/index.js.map +4 -4
- package/dist/utils/v2/flowTransformer.d.ts +1 -0
- package/package.json +3 -3
|
@@ -114,6 +114,7 @@ export declare const checkForErrorResponse: (response: any, t: UseTranslation["t
|
|
|
114
114
|
* @throws {any} The original response if it's an error and throwOnError is true
|
|
115
115
|
*/
|
|
116
116
|
export declare const normalizeFlowResponse: (response: any, t: UseTranslation["t"], options?: FlowTransformOptions, meta?: FlowMetadataResponse | null) => {
|
|
117
|
+
additionalData: Record<string, any>;
|
|
117
118
|
components: EmbeddedFlowComponent[];
|
|
118
119
|
flowId: string;
|
|
119
120
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asgardeo/react",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.2",
|
|
4
4
|
"description": "React implementation of Asgardeo JavaScript SDK.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"asgardeo",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"esbuild": "0.25.9",
|
|
60
60
|
"react-dom": "19.1.4",
|
|
61
61
|
"tslib": "2.8.1",
|
|
62
|
-
"@asgardeo/browser": "0.5.
|
|
63
|
-
"@asgardeo/i18n": "0.4.
|
|
62
|
+
"@asgardeo/browser": "0.5.2",
|
|
63
|
+
"@asgardeo/i18n": "0.4.4"
|
|
64
64
|
},
|
|
65
65
|
"publishConfig": {
|
|
66
66
|
"access": "public"
|