@ory/elements-react 1.0.0-pr.5494d7c2 → 1.0.0-pr.97a7df82
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/CHANGELOG.md +13 -0
- package/dist/index.js +145 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +143 -10
- package/dist/index.mjs.map +1 -1
- package/dist/theme/default/index.js +102 -96
- package/dist/theme/default/index.js.map +1 -1
- package/dist/theme/default/index.mjs +11 -7
- package/dist/theme/default/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -281,15 +281,22 @@ import { useFormContext } from "react-hook-form";
|
|
|
281
281
|
// src/util/onSubmitLogin.ts
|
|
282
282
|
import {
|
|
283
283
|
FlowType as FlowType3,
|
|
284
|
-
handleFlowError,
|
|
285
284
|
loginUrl
|
|
286
285
|
} from "@ory/client-fetch";
|
|
287
286
|
|
|
287
|
+
// src/util/sdk-helpers/error.ts
|
|
288
|
+
import {
|
|
289
|
+
ResponseError,
|
|
290
|
+
FetchError
|
|
291
|
+
} from "@ory/client-fetch";
|
|
292
|
+
|
|
293
|
+
// src/util/sdk-helpers/utils.ts
|
|
294
|
+
import { FetchError as FetchError2, ResponseError as ResponseError2 } from "@ory/client-fetch";
|
|
295
|
+
|
|
288
296
|
// src/util/onSubmitRecovery.ts
|
|
289
297
|
import {
|
|
290
298
|
FlowType as FlowType4,
|
|
291
299
|
handleContinueWith,
|
|
292
|
-
handleFlowError as handleFlowError2,
|
|
293
300
|
instanceOfContinueWithRecoveryUi,
|
|
294
301
|
recoveryUrl
|
|
295
302
|
} from "@ory/client-fetch";
|
|
@@ -298,7 +305,6 @@ import {
|
|
|
298
305
|
import {
|
|
299
306
|
FlowType as FlowType5,
|
|
300
307
|
handleContinueWith as handleContinueWith2,
|
|
301
|
-
handleFlowError as handleFlowError3,
|
|
302
308
|
registrationUrl
|
|
303
309
|
} from "@ory/client-fetch";
|
|
304
310
|
|
|
@@ -306,8 +312,7 @@ import {
|
|
|
306
312
|
import {
|
|
307
313
|
FlowType as FlowType6,
|
|
308
314
|
handleContinueWith as handleContinueWith3,
|
|
309
|
-
|
|
310
|
-
isResponseError,
|
|
315
|
+
isResponseError as isResponseError2,
|
|
311
316
|
loginUrl as loginUrl2,
|
|
312
317
|
settingsUrl
|
|
313
318
|
} from "@ory/client-fetch";
|
|
@@ -315,8 +320,7 @@ import {
|
|
|
315
320
|
// src/util/onSubmitVerification.ts
|
|
316
321
|
import {
|
|
317
322
|
FlowType as FlowType7,
|
|
318
|
-
|
|
319
|
-
verificationUrl
|
|
323
|
+
verificationUrl as verificationUrl2
|
|
320
324
|
} from "@ory/client-fetch";
|
|
321
325
|
|
|
322
326
|
// src/components/form/form-helpers.ts
|