@ory/elements-react 1.0.0-next.24 → 1.0.0-next.27

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.
Files changed (180) hide show
  1. package/.storybook/global.css +7 -0
  2. package/.storybook/main.ts +50 -0
  3. package/.storybook/preview-head.html +15 -0
  4. package/.storybook/preview.tsx +68 -0
  5. package/.storybook/public/InterVariable.woff2 +0 -0
  6. package/.storybook/public/inter.css +8 -0
  7. package/.stub-responses/login/1fa/all-methods/initial-form.json +247 -0
  8. package/.stub-responses/login/1fa/all-methods/missing-email.json +265 -0
  9. package/.stub-responses/login/1fa/all-methods/wrong-credentials.json +254 -0
  10. package/.stub-responses/login/1fa/code/code-input.json +135 -0
  11. package/.stub-responses/login/1fa/code/initial-form.json +173 -0
  12. package/.stub-responses/login/1fa/code/invalid-account.json +182 -0
  13. package/.stub-responses/login/1fa/code/missing-email.json +182 -0
  14. package/.stub-responses/login/1fa/code/wrong-credentials.json +124 -0
  15. package/.stub-responses/login/1fa/none/initial-form.json +33 -0
  16. package/.stub-responses/login/1fa/oidc/initial-form.json +279 -0
  17. package/.stub-responses/login/1fa/passkey/initial-form.json +122 -0
  18. package/.stub-responses/login/1fa/password/initial-form.json +154 -0
  19. package/.stub-responses/login/1fa/password/missing-email.json +172 -0
  20. package/.stub-responses/login/1fa/password/wrong-credentials.json +163 -0
  21. package/.stub-responses/login/1fa/webauthn/initial-form.json +76 -0
  22. package/.stub-responses/login/1fa/webauthn/invalid-account.json +83 -0
  23. package/.stub-responses/login/1fa/webauthn/show-trigger.json +105 -0
  24. package/.stub-responses/recovery/disabled/initial-form.json +9 -0
  25. package/.stub-responses/recovery/none/initial-form.json +9 -0
  26. package/.stub-responses/registration/one-step/all-methods/initial-form.json +334 -0
  27. package/.stub-responses/registration/one-step/all-methods/missing-fields.json +343 -0
  28. package/.stub-responses/registration/one-step/disabled/initial-form.json +10 -0
  29. package/.stub-responses/registration/one-step/none/initial-form.json +14 -0
  30. package/.stub-responses/registration/one-step/oidc/initial-form.json +338 -0
  31. package/.stub-responses/registration/one-step/passkey/initial-form.json +177 -0
  32. package/.stub-responses/registration/one-step/password/initial-form.json +154 -0
  33. package/.stub-responses/registration/one-step/password/missing-fields.json +172 -0
  34. package/.stub-responses/registration/one-step/password/second-step.json +164 -0
  35. package/.stub-responses/registration/one-step/webauthn/initial-form.json +185 -0
  36. package/.stub-responses/registration/two-step/all-methods/enter-password.json +242 -0
  37. package/.stub-responses/registration/two-step/all-methods/initial-form.json +180 -0
  38. package/.stub-responses/registration/two-step/all-methods/missing-fields.json +189 -0
  39. package/.stub-responses/registration/two-step/all-methods/password-validation-error.json +244 -0
  40. package/.stub-responses/registration/two-step/password/enter-password.json +108 -0
  41. package/.stub-responses/registration/two-step/password/initial-form.json +134 -0
  42. package/.stub-responses/registration/two-step/password/missing-fields.json +143 -0
  43. package/.stub-responses/registration/two-step/password/password-validation-error.json +110 -0
  44. package/.stub-responses/settings/all-methods/change-password.json +381 -0
  45. package/.stub-responses/settings/all-methods/change-trait.json +377 -0
  46. package/.stub-responses/settings/all-methods/initial-form.json +368 -0
  47. package/.stub-responses/settings/oidc/with-provider.json +230 -0
  48. package/.stub-responses/settings/passkey/initial-form.json +256 -0
  49. package/.stub-responses/settings/webauthn/initial-form.json +263 -0
  50. package/.stub-responses/verification/disabled/initial-form.json +9 -0
  51. package/.stub-responses/verification/none/initial-form.json +9 -0
  52. package/CHANGELOG.md +47 -0
  53. package/dist/index.d.mts +3 -3
  54. package/dist/index.d.ts +3 -3
  55. package/dist/index.js +2103 -2047
  56. package/dist/index.js.map +1 -1
  57. package/dist/index.mjs +2103 -2047
  58. package/dist/index.mjs.map +1 -1
  59. package/dist/theme/default/index.css +259 -106
  60. package/dist/theme/default/index.css.map +1 -1
  61. package/dist/theme/default/index.js +69 -41
  62. package/dist/theme/default/index.js.map +1 -1
  63. package/dist/theme/default/index.mjs +69 -41
  64. package/dist/theme/default/index.mjs.map +1 -1
  65. package/dist/theme/default/tailwind/defaults.js +219 -0
  66. package/dist/theme/default/tailwind/defaults.js.map +1 -0
  67. package/dist/theme/default/tailwind/defaults.mjs +196 -0
  68. package/dist/theme/default/tailwind/defaults.mjs.map +1 -0
  69. package/package.json +7 -2
  70. package/stories/components/login/1fa/all.stories.ts +46 -0
  71. package/stories/components/login/1fa/code.stories.ts +64 -0
  72. package/stories/components/login/1fa/custom.stories.tsx +72 -0
  73. package/stories/components/login/1fa/none.stories.tsx +28 -0
  74. package/stories/components/login/1fa/oidc.stories.tsx +143 -0
  75. package/stories/components/login/1fa/passkey.stories.ts +28 -0
  76. package/stories/components/login/1fa/password.stories.ts +46 -0
  77. package/stories/components/login/1fa/webauthn.stories.ts +46 -0
  78. package/stories/components/registration/one-step/all-methods.stories.ts +37 -0
  79. package/stories/components/registration/one-step/password.stories.ts +37 -0
  80. package/stories/components/registration/one-step/webauthn.stories.ts +28 -0
  81. package/stories/components/registration/two-step/all-methods.stories.ts +55 -0
  82. package/stories/components/registration/two-step/password.stories.ts +55 -0
  83. package/stories/components/settings/all.stories.ts +46 -0
  84. package/stories/components/settings/oidc.stories.ts +28 -0
  85. package/stories/components/settings/passkey.stories.ts +28 -0
  86. package/stories/components/settings/webauthn.stories.ts +28 -0
  87. package/stories/pages/error.tsx +29 -0
  88. package/stories/utils.ts +20 -0
  89. package/storybook-static/InterVariable.woff2 +0 -0
  90. package/storybook-static/assets/Color-ERTF36HU-BdkKyVuV.js +1 -0
  91. package/storybook-static/assets/DocsRenderer-CFRXHY34-YqKt61zP.js +595 -0
  92. package/storybook-static/assets/all-methods.stories-B-rqPBX2.js +11 -0
  93. package/storybook-static/assets/all-methods.stories-CmMlhzsx.js +21 -0
  94. package/storybook-static/assets/all.stories-CtQ0yCQi.js +16 -0
  95. package/storybook-static/assets/all.stories-DgIVCzcZ.js +16 -0
  96. package/storybook-static/assets/chunk-H6MOWX77-DTQOW814.js +1 -0
  97. package/storybook-static/assets/code.stories-BbEryDcA.js +26 -0
  98. package/storybook-static/assets/custom.stories-DH2zHar9.js +6 -0
  99. package/storybook-static/assets/entry-preview-CcFGVifh.js +10 -0
  100. package/storybook-static/assets/entry-preview-docs-CyY-8bLe.js +54 -0
  101. package/storybook-static/assets/iframe-C5GAfuxh.js +2 -0
  102. package/storybook-static/assets/index-BVoBHvaS.js +8 -0
  103. package/storybook-static/assets/index-CfOt2XX2.js +24 -0
  104. package/storybook-static/assets/index-DPRSEdy-.js +1 -0
  105. package/storybook-static/assets/index-DrFu-skq.js +6 -0
  106. package/storybook-static/assets/index-FeUjBnvO.js +1 -0
  107. package/storybook-static/assets/index-uubelm5h.js +9 -0
  108. package/storybook-static/assets/initial-form-DWp_1F-f.js +1 -0
  109. package/storybook-static/assets/jsx-runtime-QvZ8i92b.js +9 -0
  110. package/storybook-static/assets/none.stories-TAeRhzd5.js +6 -0
  111. package/storybook-static/assets/oidc.stories-CniWBy7t.js +58 -0
  112. package/storybook-static/assets/oidc.stories-jhWzAyoQ.js +6 -0
  113. package/storybook-static/assets/passkey.stories-CBtjoVSN.js +6 -0
  114. package/storybook-static/assets/passkey.stories-CQU2Xw_t.js +6 -0
  115. package/storybook-static/assets/password.stories-0s6cDl0o.js +11 -0
  116. package/storybook-static/assets/password.stories-B2Wtckz_.js +16 -0
  117. package/storybook-static/assets/password.stories-DX0gkWjH.js +21 -0
  118. package/storybook-static/assets/preview-BBWR9nbA.js +1 -0
  119. package/storybook-static/assets/preview-BPAmP-pY.js +2 -0
  120. package/storybook-static/assets/preview-BWzBA1C2.js +396 -0
  121. package/storybook-static/assets/preview-BXtF2ySE.js +234 -0
  122. package/storybook-static/assets/preview-Cur_8nCX.css +1 -0
  123. package/storybook-static/assets/preview-D77C14du.js +34 -0
  124. package/storybook-static/assets/preview-DCjDUH0w.js +27 -0
  125. package/storybook-static/assets/preview-DFmD0pui.js +1 -0
  126. package/storybook-static/assets/preview-DGUiP6tS.js +7 -0
  127. package/storybook-static/assets/preview-aVwhiz9X.js +1 -0
  128. package/storybook-static/assets/react-18-CtsMCmcS.js +1 -0
  129. package/storybook-static/assets/settings-BqEFC2-V.css +1 -0
  130. package/storybook-static/assets/settings-Bx4osEmB.js +2304 -0
  131. package/storybook-static/assets/webauthn.stories-BzodmV0c.js +6 -0
  132. package/storybook-static/assets/webauthn.stories-DglGm7Ys.js +6 -0
  133. package/storybook-static/assets/webauthn.stories-G9E76Wjj.js +16 -0
  134. package/storybook-static/favicon.svg +1 -0
  135. package/storybook-static/iframe.html +654 -0
  136. package/storybook-static/index.html +173 -0
  137. package/storybook-static/index.json +1 -0
  138. package/storybook-static/inter.css +8 -0
  139. package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  140. package/storybook-static/nunito-sans-bold.woff2 +0 -0
  141. package/storybook-static/nunito-sans-italic.woff2 +0 -0
  142. package/storybook-static/nunito-sans-regular.woff2 +0 -0
  143. package/storybook-static/preview-stats.json +2344 -0
  144. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +3 -0
  145. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
  146. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +12 -0
  147. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
  148. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +394 -0
  149. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +0 -0
  150. package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js +3 -0
  151. package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.LEGAL.txt +0 -0
  152. package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js +3 -0
  153. package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.LEGAL.txt +0 -0
  154. package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js +3 -0
  155. package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.LEGAL.txt +0 -0
  156. package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js +3 -0
  157. package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.LEGAL.txt +0 -0
  158. package/storybook-static/sb-addons/interactions-8/manager-bundle.js +211 -0
  159. package/storybook-static/sb-addons/interactions-8/manager-bundle.js.LEGAL.txt +0 -0
  160. package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +3 -0
  161. package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js.LEGAL.txt +0 -0
  162. package/storybook-static/sb-common-assets/favicon.svg +1 -0
  163. package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  164. package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  165. package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  166. package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  167. package/storybook-static/sb-manager/globals-module-info.js +1006 -0
  168. package/storybook-static/sb-manager/globals-runtime.js +54400 -0
  169. package/storybook-static/sb-manager/globals.js +48 -0
  170. package/storybook-static/sb-manager/runtime.js +12089 -0
  171. package/storybook-static/sb-preview/globals.js +33 -0
  172. package/storybook-static/sb-preview/runtime.js +9498 -0
  173. package/tailwind/defaults.ts +34 -0
  174. package/tailwind/generated/README.md +2 -0
  175. package/tailwind/generated/default-variables.css +216 -0
  176. package/tailwind/generated/variables-processed.json +161 -0
  177. package/tsconfig.json +2 -3
  178. package/tsconfig.runtime.json +4 -0
  179. package/tsconfig.test.json +0 -9
  180. package/variables-processed.json +0 -391
@@ -0,0 +1,2344 @@
1
+ {
2
+ "modules": [
3
+ {
4
+ "id": "./iframe.html",
5
+ "name": "./iframe.html",
6
+ "reasons": [
7
+ {
8
+ "moduleName": "./iframe.html"
9
+ }
10
+ ]
11
+ },
12
+ {
13
+ "id": "./sb-preview/runtime.js",
14
+ "name": "./sb-preview/runtime.js",
15
+ "reasons": [
16
+ {
17
+ "moduleName": "./iframe.html"
18
+ }
19
+ ]
20
+ },
21
+ {
22
+ "id": "/virtual:/@storybook/builder-vite/vite-app.js",
23
+ "name": "/virtual:/@storybook/builder-vite/vite-app.js",
24
+ "reasons": [
25
+ {
26
+ "moduleName": "./iframe.html"
27
+ }
28
+ ]
29
+ },
30
+ {
31
+ "id": "/virtual:/@storybook/builder-vite/setup-addons.js",
32
+ "name": "/virtual:/@storybook/builder-vite/setup-addons.js",
33
+ "reasons": [
34
+ {
35
+ "moduleName": "/virtual:/@storybook/builder-vite/vite-app.js"
36
+ }
37
+ ]
38
+ },
39
+ {
40
+ "id": "/virtual:/@storybook/builder-vite/storybook-stories.js",
41
+ "name": "/virtual:/@storybook/builder-vite/storybook-stories.js",
42
+ "reasons": [
43
+ {
44
+ "moduleName": "/virtual:/@storybook/builder-vite/vite-app.js"
45
+ }
46
+ ]
47
+ },
48
+ {
49
+ "id": "./.storybook/preview.tsx",
50
+ "name": "./.storybook/preview.tsx",
51
+ "reasons": [
52
+ {
53
+ "moduleName": "/virtual:/@storybook/builder-vite/vite-app.js"
54
+ }
55
+ ]
56
+ },
57
+ {
58
+ "id": "./stories/components/login/1fa/all.stories.ts",
59
+ "name": "./stories/components/login/1fa/all.stories.ts",
60
+ "reasons": [
61
+ {
62
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
63
+ }
64
+ ]
65
+ },
66
+ {
67
+ "id": "./stories/components/login/1fa/code.stories.ts",
68
+ "name": "./stories/components/login/1fa/code.stories.ts",
69
+ "reasons": [
70
+ {
71
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
72
+ }
73
+ ]
74
+ },
75
+ {
76
+ "id": "./stories/components/login/1fa/custom.stories.tsx",
77
+ "name": "./stories/components/login/1fa/custom.stories.tsx",
78
+ "reasons": [
79
+ {
80
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
81
+ }
82
+ ]
83
+ },
84
+ {
85
+ "id": "./stories/components/login/1fa/none.stories.tsx",
86
+ "name": "./stories/components/login/1fa/none.stories.tsx",
87
+ "reasons": [
88
+ {
89
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
90
+ }
91
+ ]
92
+ },
93
+ {
94
+ "id": "./stories/components/login/1fa/oidc.stories.tsx",
95
+ "name": "./stories/components/login/1fa/oidc.stories.tsx",
96
+ "reasons": [
97
+ {
98
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
99
+ }
100
+ ]
101
+ },
102
+ {
103
+ "id": "./stories/components/login/1fa/passkey.stories.ts",
104
+ "name": "./stories/components/login/1fa/passkey.stories.ts",
105
+ "reasons": [
106
+ {
107
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
108
+ }
109
+ ]
110
+ },
111
+ {
112
+ "id": "./stories/components/login/1fa/password.stories.ts",
113
+ "name": "./stories/components/login/1fa/password.stories.ts",
114
+ "reasons": [
115
+ {
116
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
117
+ }
118
+ ]
119
+ },
120
+ {
121
+ "id": "./stories/components/login/1fa/webauthn.stories.ts",
122
+ "name": "./stories/components/login/1fa/webauthn.stories.ts",
123
+ "reasons": [
124
+ {
125
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
126
+ }
127
+ ]
128
+ },
129
+ {
130
+ "id": "./stories/components/registration/one-step/all-methods.stories.ts",
131
+ "name": "./stories/components/registration/one-step/all-methods.stories.ts",
132
+ "reasons": [
133
+ {
134
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
135
+ }
136
+ ]
137
+ },
138
+ {
139
+ "id": "./stories/components/registration/one-step/password.stories.ts",
140
+ "name": "./stories/components/registration/one-step/password.stories.ts",
141
+ "reasons": [
142
+ {
143
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
144
+ }
145
+ ]
146
+ },
147
+ {
148
+ "id": "./stories/components/registration/one-step/webauthn.stories.ts",
149
+ "name": "./stories/components/registration/one-step/webauthn.stories.ts",
150
+ "reasons": [
151
+ {
152
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
153
+ }
154
+ ]
155
+ },
156
+ {
157
+ "id": "./stories/components/registration/two-step/all-methods.stories.ts",
158
+ "name": "./stories/components/registration/two-step/all-methods.stories.ts",
159
+ "reasons": [
160
+ {
161
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
162
+ }
163
+ ]
164
+ },
165
+ {
166
+ "id": "./stories/components/registration/two-step/password.stories.ts",
167
+ "name": "./stories/components/registration/two-step/password.stories.ts",
168
+ "reasons": [
169
+ {
170
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
171
+ }
172
+ ]
173
+ },
174
+ {
175
+ "id": "./stories/components/settings/all.stories.ts",
176
+ "name": "./stories/components/settings/all.stories.ts",
177
+ "reasons": [
178
+ {
179
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
180
+ }
181
+ ]
182
+ },
183
+ {
184
+ "id": "./stories/components/settings/oidc.stories.ts",
185
+ "name": "./stories/components/settings/oidc.stories.ts",
186
+ "reasons": [
187
+ {
188
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
189
+ }
190
+ ]
191
+ },
192
+ {
193
+ "id": "./stories/components/settings/passkey.stories.ts",
194
+ "name": "./stories/components/settings/passkey.stories.ts",
195
+ "reasons": [
196
+ {
197
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
198
+ }
199
+ ]
200
+ },
201
+ {
202
+ "id": "./stories/components/settings/webauthn.stories.ts",
203
+ "name": "./stories/components/settings/webauthn.stories.ts",
204
+ "reasons": [
205
+ {
206
+ "moduleName": "/virtual:/@storybook/builder-vite/storybook-stories.js"
207
+ }
208
+ ]
209
+ },
210
+ {
211
+ "id": "./.stub-responses/settings/passkey/initial-form.json",
212
+ "name": "./.stub-responses/settings/passkey/initial-form.json",
213
+ "reasons": [
214
+ {
215
+ "moduleName": "./stories/components/settings/passkey.stories.ts"
216
+ }
217
+ ]
218
+ },
219
+ {
220
+ "id": "./stories/utils.ts",
221
+ "name": "./stories/utils.ts",
222
+ "reasons": [
223
+ {
224
+ "moduleName": "./stories/components/settings/passkey.stories.ts"
225
+ },
226
+ {
227
+ "moduleName": "./stories/components/settings/oidc.stories.ts"
228
+ },
229
+ {
230
+ "moduleName": "./stories/components/registration/one-step/webauthn.stories.ts"
231
+ },
232
+ {
233
+ "moduleName": "./stories/components/login/1fa/code.stories.ts"
234
+ },
235
+ {
236
+ "moduleName": "./stories/components/settings/all.stories.ts"
237
+ },
238
+ {
239
+ "moduleName": "./stories/components/login/1fa/none.stories.tsx"
240
+ },
241
+ {
242
+ "moduleName": "./stories/components/settings/webauthn.stories.ts"
243
+ },
244
+ {
245
+ "moduleName": "./stories/components/login/1fa/passkey.stories.ts"
246
+ },
247
+ {
248
+ "moduleName": "./stories/components/registration/one-step/password.stories.ts"
249
+ },
250
+ {
251
+ "moduleName": "./stories/components/login/1fa/custom.stories.tsx"
252
+ },
253
+ {
254
+ "moduleName": "./stories/components/login/1fa/oidc.stories.tsx"
255
+ },
256
+ {
257
+ "moduleName": "./stories/components/login/1fa/all.stories.ts"
258
+ },
259
+ {
260
+ "moduleName": "./stories/components/registration/one-step/all-methods.stories.ts"
261
+ },
262
+ {
263
+ "moduleName": "./stories/components/registration/two-step/password.stories.ts"
264
+ },
265
+ {
266
+ "moduleName": "./stories/components/login/1fa/webauthn.stories.ts"
267
+ },
268
+ {
269
+ "moduleName": "./stories/components/login/1fa/password.stories.ts"
270
+ },
271
+ {
272
+ "moduleName": "./stories/components/registration/two-step/all-methods.stories.ts"
273
+ }
274
+ ]
275
+ },
276
+ {
277
+ "id": "./src/theme/default/index.ts",
278
+ "name": "./src/theme/default/index.ts",
279
+ "reasons": [
280
+ {
281
+ "moduleName": "./stories/components/settings/passkey.stories.ts"
282
+ },
283
+ {
284
+ "moduleName": "./stories/components/settings/oidc.stories.ts"
285
+ },
286
+ {
287
+ "moduleName": "./stories/components/registration/one-step/webauthn.stories.ts"
288
+ },
289
+ {
290
+ "moduleName": "./stories/components/login/1fa/code.stories.ts"
291
+ },
292
+ {
293
+ "moduleName": "./stories/components/settings/all.stories.ts"
294
+ },
295
+ {
296
+ "moduleName": "./stories/components/login/1fa/none.stories.tsx"
297
+ },
298
+ {
299
+ "moduleName": "./stories/components/settings/webauthn.stories.ts"
300
+ },
301
+ {
302
+ "moduleName": "./stories/components/login/1fa/passkey.stories.ts"
303
+ },
304
+ {
305
+ "moduleName": "./stories/components/registration/one-step/password.stories.ts"
306
+ },
307
+ {
308
+ "moduleName": "./stories/components/login/1fa/custom.stories.tsx"
309
+ },
310
+ {
311
+ "moduleName": "./stories/components/login/1fa/oidc.stories.tsx"
312
+ },
313
+ {
314
+ "moduleName": "./stories/components/login/1fa/all.stories.ts"
315
+ },
316
+ {
317
+ "moduleName": "./stories/components/registration/one-step/all-methods.stories.ts"
318
+ },
319
+ {
320
+ "moduleName": "./stories/components/registration/two-step/password.stories.ts"
321
+ },
322
+ {
323
+ "moduleName": "./stories/components/login/1fa/webauthn.stories.ts"
324
+ },
325
+ {
326
+ "moduleName": "./stories/components/login/1fa/password.stories.ts"
327
+ },
328
+ {
329
+ "moduleName": "./stories/components/registration/two-step/all-methods.stories.ts"
330
+ }
331
+ ]
332
+ },
333
+ {
334
+ "id": "./.stub-responses/settings/oidc/with-provider.json",
335
+ "name": "./.stub-responses/settings/oidc/with-provider.json",
336
+ "reasons": [
337
+ {
338
+ "moduleName": "./stories/components/settings/oidc.stories.ts"
339
+ }
340
+ ]
341
+ },
342
+ {
343
+ "id": "./.stub-responses/registration/one-step/webauthn/initial-form.json",
344
+ "name": "./.stub-responses/registration/one-step/webauthn/initial-form.json",
345
+ "reasons": [
346
+ {
347
+ "moduleName": "./stories/components/registration/one-step/webauthn.stories.ts"
348
+ }
349
+ ]
350
+ },
351
+ {
352
+ "id": "./.stub-responses/login/1fa/code/wrong-credentials.json",
353
+ "name": "./.stub-responses/login/1fa/code/wrong-credentials.json",
354
+ "reasons": [
355
+ {
356
+ "moduleName": "./stories/components/login/1fa/code.stories.ts"
357
+ }
358
+ ]
359
+ },
360
+ {
361
+ "id": "./.stub-responses/login/1fa/code/code-input.json",
362
+ "name": "./.stub-responses/login/1fa/code/code-input.json",
363
+ "reasons": [
364
+ {
365
+ "moduleName": "./stories/components/login/1fa/code.stories.ts"
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "id": "./.stub-responses/login/1fa/code/invalid-account.json",
371
+ "name": "./.stub-responses/login/1fa/code/invalid-account.json",
372
+ "reasons": [
373
+ {
374
+ "moduleName": "./stories/components/login/1fa/code.stories.ts"
375
+ }
376
+ ]
377
+ },
378
+ {
379
+ "id": "./.stub-responses/login/1fa/code/missing-email.json",
380
+ "name": "./.stub-responses/login/1fa/code/missing-email.json",
381
+ "reasons": [
382
+ {
383
+ "moduleName": "./stories/components/login/1fa/code.stories.ts"
384
+ }
385
+ ]
386
+ },
387
+ {
388
+ "id": "./.stub-responses/login/1fa/code/initial-form.json",
389
+ "name": "./.stub-responses/login/1fa/code/initial-form.json",
390
+ "reasons": [
391
+ {
392
+ "moduleName": "./stories/components/login/1fa/code.stories.ts"
393
+ }
394
+ ]
395
+ },
396
+ {
397
+ "id": "./.stub-responses/settings/all-methods/change-trait.json",
398
+ "name": "./.stub-responses/settings/all-methods/change-trait.json",
399
+ "reasons": [
400
+ {
401
+ "moduleName": "./stories/components/settings/all.stories.ts"
402
+ }
403
+ ]
404
+ },
405
+ {
406
+ "id": "./.stub-responses/settings/all-methods/change-password.json",
407
+ "name": "./.stub-responses/settings/all-methods/change-password.json",
408
+ "reasons": [
409
+ {
410
+ "moduleName": "./stories/components/settings/all.stories.ts"
411
+ }
412
+ ]
413
+ },
414
+ {
415
+ "id": "./.stub-responses/settings/all-methods/initial-form.json",
416
+ "name": "./.stub-responses/settings/all-methods/initial-form.json",
417
+ "reasons": [
418
+ {
419
+ "moduleName": "./stories/components/settings/all.stories.ts"
420
+ }
421
+ ]
422
+ },
423
+ {
424
+ "id": "./.stub-responses/login/1fa/none/initial-form.json",
425
+ "name": "./.stub-responses/login/1fa/none/initial-form.json",
426
+ "reasons": [
427
+ {
428
+ "moduleName": "./stories/components/login/1fa/none.stories.tsx"
429
+ }
430
+ ]
431
+ },
432
+ {
433
+ "id": "./.stub-responses/settings/webauthn/initial-form.json",
434
+ "name": "./.stub-responses/settings/webauthn/initial-form.json",
435
+ "reasons": [
436
+ {
437
+ "moduleName": "./stories/components/settings/webauthn.stories.ts"
438
+ }
439
+ ]
440
+ },
441
+ {
442
+ "id": "./.stub-responses/login/1fa/passkey/initial-form.json",
443
+ "name": "./.stub-responses/login/1fa/passkey/initial-form.json",
444
+ "reasons": [
445
+ {
446
+ "moduleName": "./stories/components/login/1fa/passkey.stories.ts"
447
+ }
448
+ ]
449
+ },
450
+ {
451
+ "id": "./.stub-responses/registration/one-step/password/missing-fields.json",
452
+ "name": "./.stub-responses/registration/one-step/password/missing-fields.json",
453
+ "reasons": [
454
+ {
455
+ "moduleName": "./stories/components/registration/one-step/password.stories.ts"
456
+ }
457
+ ]
458
+ },
459
+ {
460
+ "id": "./.stub-responses/registration/one-step/password/initial-form.json",
461
+ "name": "./.stub-responses/registration/one-step/password/initial-form.json",
462
+ "reasons": [
463
+ {
464
+ "moduleName": "./stories/components/registration/one-step/password.stories.ts"
465
+ }
466
+ ]
467
+ },
468
+ {
469
+ "id": "./.storybook/global.css",
470
+ "name": "./.storybook/global.css",
471
+ "reasons": [
472
+ {
473
+ "moduleName": "./.storybook/preview.tsx"
474
+ }
475
+ ]
476
+ },
477
+ {
478
+ "id": "./.stub-responses/login/1fa/all-methods/initial-form.json",
479
+ "name": "./.stub-responses/login/1fa/all-methods/initial-form.json",
480
+ "reasons": [
481
+ {
482
+ "moduleName": "./stories/components/login/1fa/custom.stories.tsx"
483
+ },
484
+ {
485
+ "moduleName": "./stories/components/login/1fa/all.stories.ts"
486
+ }
487
+ ]
488
+ },
489
+ {
490
+ "id": "./src/index.ts",
491
+ "name": "./src/index.ts",
492
+ "reasons": [
493
+ {
494
+ "moduleName": "./stories/components/login/1fa/custom.stories.tsx"
495
+ },
496
+ {
497
+ "moduleName": "./src/theme/default/flows/login.tsx"
498
+ },
499
+ {
500
+ "moduleName": "./src/theme/default/flows/recovery.tsx"
501
+ },
502
+ {
503
+ "moduleName": "./src/theme/default/components/form/index.tsx"
504
+ },
505
+ {
506
+ "moduleName": "./src/context/intl-context.tsx"
507
+ },
508
+ {
509
+ "moduleName": "./src/theme/default/flows/settings.tsx"
510
+ },
511
+ {
512
+ "moduleName": "./src/theme/default/flows/verification.tsx"
513
+ },
514
+ {
515
+ "moduleName": "./src/theme/default/flows/registration.tsx"
516
+ },
517
+ {
518
+ "moduleName": "./src/theme/default/components/form/button.tsx"
519
+ },
520
+ {
521
+ "moduleName": "./src/theme/default/components/form/checkbox.tsx"
522
+ },
523
+ {
524
+ "moduleName": "./src/theme/default/components/form/input.tsx"
525
+ },
526
+ {
527
+ "moduleName": "./src/theme/default/components/form/link-button.tsx"
528
+ },
529
+ {
530
+ "moduleName": "./src/theme/default/components/form/pin-code-input.tsx"
531
+ },
532
+ {
533
+ "moduleName": "./src/theme/default/components/form/social.tsx"
534
+ },
535
+ {
536
+ "moduleName": "./src/theme/default/components/form/label.tsx"
537
+ },
538
+ {
539
+ "moduleName": "./src/theme/default/components/form/text.tsx"
540
+ },
541
+ {
542
+ "moduleName": "./src/theme/default/components/generic/page-header.tsx"
543
+ },
544
+ {
545
+ "moduleName": "./src/theme/default/components/settings/settings-totp.tsx"
546
+ },
547
+ {
548
+ "moduleName": "./src/theme/default/components/settings/settings-passkey.tsx"
549
+ },
550
+ {
551
+ "moduleName": "./src/theme/default/components/settings/settings-webauthn.tsx"
552
+ },
553
+ {
554
+ "moduleName": "./src/theme/default/components/card/header.tsx"
555
+ },
556
+ {
557
+ "moduleName": "./src/theme/default/components/card/logo.tsx"
558
+ },
559
+ {
560
+ "moduleName": "./src/theme/default/components/card/footer.tsx"
561
+ },
562
+ {
563
+ "moduleName": "./src/theme/default/components/card/current-identifier-button.tsx"
564
+ },
565
+ {
566
+ "moduleName": "./src/theme/default/components/ui/user-menu.tsx"
567
+ }
568
+ ]
569
+ },
570
+ {
571
+ "id": "./.stub-responses/login/1fa/oidc/initial-form.json",
572
+ "name": "./.stub-responses/login/1fa/oidc/initial-form.json",
573
+ "reasons": [
574
+ {
575
+ "moduleName": "./stories/components/login/1fa/oidc.stories.tsx"
576
+ }
577
+ ]
578
+ },
579
+ {
580
+ "id": "./.stub-responses/login/1fa/all-methods/wrong-credentials.json",
581
+ "name": "./.stub-responses/login/1fa/all-methods/wrong-credentials.json",
582
+ "reasons": [
583
+ {
584
+ "moduleName": "./stories/components/login/1fa/all.stories.ts"
585
+ }
586
+ ]
587
+ },
588
+ {
589
+ "id": "./.stub-responses/login/1fa/all-methods/missing-email.json",
590
+ "name": "./.stub-responses/login/1fa/all-methods/missing-email.json",
591
+ "reasons": [
592
+ {
593
+ "moduleName": "./stories/components/login/1fa/all.stories.ts"
594
+ }
595
+ ]
596
+ },
597
+ {
598
+ "id": "./.stub-responses/registration/one-step/all-methods/missing-fields.json",
599
+ "name": "./.stub-responses/registration/one-step/all-methods/missing-fields.json",
600
+ "reasons": [
601
+ {
602
+ "moduleName": "./stories/components/registration/one-step/all-methods.stories.ts"
603
+ }
604
+ ]
605
+ },
606
+ {
607
+ "id": "./.stub-responses/registration/one-step/all-methods/initial-form.json",
608
+ "name": "./.stub-responses/registration/one-step/all-methods/initial-form.json",
609
+ "reasons": [
610
+ {
611
+ "moduleName": "./stories/components/registration/one-step/all-methods.stories.ts"
612
+ }
613
+ ]
614
+ },
615
+ {
616
+ "id": "./.stub-responses/registration/two-step/password/password-validation-error.json",
617
+ "name": "./.stub-responses/registration/two-step/password/password-validation-error.json",
618
+ "reasons": [
619
+ {
620
+ "moduleName": "./stories/components/registration/two-step/password.stories.ts"
621
+ }
622
+ ]
623
+ },
624
+ {
625
+ "id": "./.stub-responses/registration/two-step/password/enter-password.json",
626
+ "name": "./.stub-responses/registration/two-step/password/enter-password.json",
627
+ "reasons": [
628
+ {
629
+ "moduleName": "./stories/components/registration/two-step/password.stories.ts"
630
+ }
631
+ ]
632
+ },
633
+ {
634
+ "id": "./.stub-responses/registration/two-step/password/missing-fields.json",
635
+ "name": "./.stub-responses/registration/two-step/password/missing-fields.json",
636
+ "reasons": [
637
+ {
638
+ "moduleName": "./stories/components/registration/two-step/password.stories.ts"
639
+ }
640
+ ]
641
+ },
642
+ {
643
+ "id": "./.stub-responses/registration/two-step/password/initial-form.json",
644
+ "name": "./.stub-responses/registration/two-step/password/initial-form.json",
645
+ "reasons": [
646
+ {
647
+ "moduleName": "./stories/components/registration/two-step/password.stories.ts"
648
+ }
649
+ ]
650
+ },
651
+ {
652
+ "id": "./.stub-responses/login/1fa/webauthn/show-trigger.json",
653
+ "name": "./.stub-responses/login/1fa/webauthn/show-trigger.json",
654
+ "reasons": [
655
+ {
656
+ "moduleName": "./stories/components/login/1fa/webauthn.stories.ts"
657
+ }
658
+ ]
659
+ },
660
+ {
661
+ "id": "./.stub-responses/login/1fa/webauthn/invalid-account.json",
662
+ "name": "./.stub-responses/login/1fa/webauthn/invalid-account.json",
663
+ "reasons": [
664
+ {
665
+ "moduleName": "./stories/components/login/1fa/webauthn.stories.ts"
666
+ }
667
+ ]
668
+ },
669
+ {
670
+ "id": "./.stub-responses/login/1fa/webauthn/initial-form.json",
671
+ "name": "./.stub-responses/login/1fa/webauthn/initial-form.json",
672
+ "reasons": [
673
+ {
674
+ "moduleName": "./stories/components/login/1fa/webauthn.stories.ts"
675
+ }
676
+ ]
677
+ },
678
+ {
679
+ "id": "./.stub-responses/login/1fa/password/wrong-credentials.json",
680
+ "name": "./.stub-responses/login/1fa/password/wrong-credentials.json",
681
+ "reasons": [
682
+ {
683
+ "moduleName": "./stories/components/login/1fa/password.stories.ts"
684
+ }
685
+ ]
686
+ },
687
+ {
688
+ "id": "./.stub-responses/login/1fa/password/missing-email.json",
689
+ "name": "./.stub-responses/login/1fa/password/missing-email.json",
690
+ "reasons": [
691
+ {
692
+ "moduleName": "./stories/components/login/1fa/password.stories.ts"
693
+ }
694
+ ]
695
+ },
696
+ {
697
+ "id": "./.stub-responses/login/1fa/password/initial-form.json",
698
+ "name": "./.stub-responses/login/1fa/password/initial-form.json",
699
+ "reasons": [
700
+ {
701
+ "moduleName": "./stories/components/login/1fa/password.stories.ts"
702
+ }
703
+ ]
704
+ },
705
+ {
706
+ "id": "./.stub-responses/registration/two-step/all-methods/password-validation-error.json",
707
+ "name": "./.stub-responses/registration/two-step/all-methods/password-validation-error.json",
708
+ "reasons": [
709
+ {
710
+ "moduleName": "./stories/components/registration/two-step/all-methods.stories.ts"
711
+ }
712
+ ]
713
+ },
714
+ {
715
+ "id": "./.stub-responses/registration/two-step/all-methods/enter-password.json",
716
+ "name": "./.stub-responses/registration/two-step/all-methods/enter-password.json",
717
+ "reasons": [
718
+ {
719
+ "moduleName": "./stories/components/registration/two-step/all-methods.stories.ts"
720
+ }
721
+ ]
722
+ },
723
+ {
724
+ "id": "./.stub-responses/registration/two-step/all-methods/missing-fields.json",
725
+ "name": "./.stub-responses/registration/two-step/all-methods/missing-fields.json",
726
+ "reasons": [
727
+ {
728
+ "moduleName": "./stories/components/registration/two-step/all-methods.stories.ts"
729
+ }
730
+ ]
731
+ },
732
+ {
733
+ "id": "./.stub-responses/registration/two-step/all-methods/initial-form.json",
734
+ "name": "./.stub-responses/registration/two-step/all-methods/initial-form.json",
735
+ "reasons": [
736
+ {
737
+ "moduleName": "./stories/components/registration/two-step/all-methods.stories.ts"
738
+ }
739
+ ]
740
+ },
741
+ {
742
+ "id": "./src/components/index.ts",
743
+ "name": "./src/components/index.ts",
744
+ "reasons": [
745
+ {
746
+ "moduleName": "./src/index.ts"
747
+ }
748
+ ]
749
+ },
750
+ {
751
+ "id": "./src/context/index.tsx",
752
+ "name": "./src/context/index.tsx",
753
+ "reasons": [
754
+ {
755
+ "moduleName": "./src/index.ts"
756
+ },
757
+ {
758
+ "moduleName": "./src/components/generic/divider.tsx"
759
+ },
760
+ {
761
+ "moduleName": "./src/components/form/form.tsx"
762
+ },
763
+ {
764
+ "moduleName": "./src/components/form/messages.tsx"
765
+ },
766
+ {
767
+ "moduleName": "./src/components/generic/page-header.tsx"
768
+ },
769
+ {
770
+ "moduleName": "./src/components/form/groups.tsx"
771
+ },
772
+ {
773
+ "moduleName": "./src/components/card/footer.tsx"
774
+ },
775
+ {
776
+ "moduleName": "./src/components/card/header.tsx"
777
+ },
778
+ {
779
+ "moduleName": "./src/components/form/social.tsx"
780
+ },
781
+ {
782
+ "moduleName": "./src/components/form/section.tsx"
783
+ },
784
+ {
785
+ "moduleName": "./src/components/card/content.tsx"
786
+ },
787
+ {
788
+ "moduleName": "./src/components/card/card-two-step.tsx"
789
+ },
790
+ {
791
+ "moduleName": "./src/components/card/card.tsx"
792
+ },
793
+ {
794
+ "moduleName": "./src/components/settings/settings-card.tsx"
795
+ },
796
+ {
797
+ "moduleName": "./src/components/form/useOryFormSubmit.ts"
798
+ },
799
+ {
800
+ "moduleName": "./src/components/form/form-provider.tsx"
801
+ },
802
+ {
803
+ "moduleName": "./src/components/form/nodes/node.tsx"
804
+ },
805
+ {
806
+ "moduleName": "./src/components/settings/recovery-codes-settings.tsx"
807
+ },
808
+ {
809
+ "moduleName": "./src/components/settings/passkey-settings.tsx"
810
+ },
811
+ {
812
+ "moduleName": "./src/components/settings/oidc-settings.tsx"
813
+ },
814
+ {
815
+ "moduleName": "./src/components/settings/webauthn-settings.tsx"
816
+ },
817
+ {
818
+ "moduleName": "./src/components/settings/totp-settings.tsx"
819
+ },
820
+ {
821
+ "moduleName": "./src/components/form/form-resolver.ts"
822
+ },
823
+ {
824
+ "moduleName": "./src/components/form/nodes/input.tsx"
825
+ }
826
+ ]
827
+ },
828
+ {
829
+ "id": "./src/util/index.ts",
830
+ "name": "./src/util/index.ts",
831
+ "reasons": [
832
+ {
833
+ "moduleName": "./src/index.ts"
834
+ },
835
+ {
836
+ "moduleName": "./src/theme/default/components/ui/checkbox-label.tsx"
837
+ }
838
+ ]
839
+ },
840
+ {
841
+ "id": "./src/locales/index.ts",
842
+ "name": "./src/locales/index.ts",
843
+ "reasons": [
844
+ {
845
+ "moduleName": "./src/index.ts"
846
+ }
847
+ ]
848
+ },
849
+ {
850
+ "id": "./src/theme/default/global.css",
851
+ "name": "./src/theme/default/global.css",
852
+ "reasons": [
853
+ {
854
+ "moduleName": "./src/theme/default/index.ts"
855
+ }
856
+ ]
857
+ },
858
+ {
859
+ "id": "./src/theme/default/components/index.ts",
860
+ "name": "./src/theme/default/components/index.ts",
861
+ "reasons": [
862
+ {
863
+ "moduleName": "./src/theme/default/index.ts"
864
+ },
865
+ {
866
+ "moduleName": "./src/theme/default/flows/login.tsx"
867
+ },
868
+ {
869
+ "moduleName": "./src/theme/default/flows/recovery.tsx"
870
+ },
871
+ {
872
+ "moduleName": "./src/theme/default/flows/settings.tsx"
873
+ },
874
+ {
875
+ "moduleName": "./src/theme/default/flows/verification.tsx"
876
+ },
877
+ {
878
+ "moduleName": "./src/theme/default/flows/registration.tsx"
879
+ }
880
+ ]
881
+ },
882
+ {
883
+ "id": "./src/theme/default/flows/index.ts",
884
+ "name": "./src/theme/default/flows/index.ts",
885
+ "reasons": [
886
+ {
887
+ "moduleName": "./src/theme/default/index.ts"
888
+ }
889
+ ]
890
+ },
891
+ {
892
+ "id": "./src/util/clientConfiguration.ts",
893
+ "name": "./src/util/clientConfiguration.ts",
894
+ "reasons": [
895
+ {
896
+ "moduleName": "./src/util/index.ts"
897
+ }
898
+ ]
899
+ },
900
+ {
901
+ "id": "./src/util/flowContainer.ts",
902
+ "name": "./src/util/flowContainer.ts",
903
+ "reasons": [
904
+ {
905
+ "moduleName": "./src/util/index.ts"
906
+ }
907
+ ]
908
+ },
909
+ {
910
+ "id": "./src/util/i18n/index.ts",
911
+ "name": "./src/util/i18n/index.ts",
912
+ "reasons": [
913
+ {
914
+ "moduleName": "./src/util/index.ts"
915
+ }
916
+ ]
917
+ },
918
+ {
919
+ "id": "./src/util/submitHandler.ts",
920
+ "name": "./src/util/submitHandler.ts",
921
+ "reasons": [
922
+ {
923
+ "moduleName": "./src/util/index.ts"
924
+ }
925
+ ]
926
+ },
927
+ {
928
+ "id": "./src/util/test-id.ts",
929
+ "name": "./src/util/test-id.ts",
930
+ "reasons": [
931
+ {
932
+ "moduleName": "./src/util/index.ts"
933
+ }
934
+ ]
935
+ },
936
+ {
937
+ "id": "./src/components/card/index.tsx",
938
+ "name": "./src/components/card/index.tsx",
939
+ "reasons": [
940
+ {
941
+ "moduleName": "./src/components/index.ts"
942
+ },
943
+ {
944
+ "moduleName": "./src/components/card/card-two-step.tsx"
945
+ }
946
+ ]
947
+ },
948
+ {
949
+ "id": "./src/components/form/index.ts",
950
+ "name": "./src/components/form/index.ts",
951
+ "reasons": [
952
+ {
953
+ "moduleName": "./src/components/index.ts"
954
+ },
955
+ {
956
+ "moduleName": "./src/components/card/content.tsx"
957
+ },
958
+ {
959
+ "moduleName": "./src/components/settings/settings-card.tsx"
960
+ }
961
+ ]
962
+ },
963
+ {
964
+ "id": "./src/components/generic/index.ts",
965
+ "name": "./src/components/generic/index.ts",
966
+ "reasons": [
967
+ {
968
+ "moduleName": "./src/components/index.ts"
969
+ }
970
+ ]
971
+ },
972
+ {
973
+ "id": "./src/components/settings/index.tsx",
974
+ "name": "./src/components/settings/index.tsx",
975
+ "reasons": [
976
+ {
977
+ "moduleName": "./src/components/index.ts"
978
+ }
979
+ ]
980
+ },
981
+ {
982
+ "id": "./src/locales/en.json",
983
+ "name": "./src/locales/en.json",
984
+ "reasons": [
985
+ {
986
+ "moduleName": "./src/locales/index.ts"
987
+ }
988
+ ]
989
+ },
990
+ {
991
+ "id": "./src/locales/de.json",
992
+ "name": "./src/locales/de.json",
993
+ "reasons": [
994
+ {
995
+ "moduleName": "./src/locales/index.ts"
996
+ }
997
+ ]
998
+ },
999
+ {
1000
+ "id": "./src/locales/es.json",
1001
+ "name": "./src/locales/es.json",
1002
+ "reasons": [
1003
+ {
1004
+ "moduleName": "./src/locales/index.ts"
1005
+ }
1006
+ ]
1007
+ },
1008
+ {
1009
+ "id": "./src/locales/fr.json",
1010
+ "name": "./src/locales/fr.json",
1011
+ "reasons": [
1012
+ {
1013
+ "moduleName": "./src/locales/index.ts"
1014
+ }
1015
+ ]
1016
+ },
1017
+ {
1018
+ "id": "./src/locales/nl.json",
1019
+ "name": "./src/locales/nl.json",
1020
+ "reasons": [
1021
+ {
1022
+ "moduleName": "./src/locales/index.ts"
1023
+ }
1024
+ ]
1025
+ },
1026
+ {
1027
+ "id": "./src/locales/pl.json",
1028
+ "name": "./src/locales/pl.json",
1029
+ "reasons": [
1030
+ {
1031
+ "moduleName": "./src/locales/index.ts"
1032
+ }
1033
+ ]
1034
+ },
1035
+ {
1036
+ "id": "./src/locales/pt.json",
1037
+ "name": "./src/locales/pt.json",
1038
+ "reasons": [
1039
+ {
1040
+ "moduleName": "./src/locales/index.ts"
1041
+ }
1042
+ ]
1043
+ },
1044
+ {
1045
+ "id": "./src/locales/sv.json",
1046
+ "name": "./src/locales/sv.json",
1047
+ "reasons": [
1048
+ {
1049
+ "moduleName": "./src/locales/index.ts"
1050
+ }
1051
+ ]
1052
+ },
1053
+ {
1054
+ "id": "./src/context/component.tsx",
1055
+ "name": "./src/context/component.tsx",
1056
+ "reasons": [
1057
+ {
1058
+ "moduleName": "./src/context/index.tsx"
1059
+ },
1060
+ {
1061
+ "moduleName": "./src/context/provider.tsx"
1062
+ },
1063
+ {
1064
+ "moduleName": "./src/components/form/section.tsx"
1065
+ },
1066
+ {
1067
+ "moduleName": "./src/util/ui/index.ts"
1068
+ }
1069
+ ]
1070
+ },
1071
+ {
1072
+ "id": "./src/context/flow-context.tsx",
1073
+ "name": "./src/context/flow-context.tsx",
1074
+ "reasons": [
1075
+ {
1076
+ "moduleName": "./src/context/index.tsx"
1077
+ },
1078
+ {
1079
+ "moduleName": "./src/context/provider.tsx"
1080
+ }
1081
+ ]
1082
+ },
1083
+ {
1084
+ "id": "./src/context/provider.tsx",
1085
+ "name": "./src/context/provider.tsx",
1086
+ "reasons": [
1087
+ {
1088
+ "moduleName": "./src/context/index.tsx"
1089
+ }
1090
+ ]
1091
+ },
1092
+ {
1093
+ "id": "./src/theme/default/components/card/index.tsx",
1094
+ "name": "./src/theme/default/components/card/index.tsx",
1095
+ "reasons": [
1096
+ {
1097
+ "moduleName": "./src/theme/default/components/index.ts"
1098
+ },
1099
+ {
1100
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1101
+ }
1102
+ ]
1103
+ },
1104
+ {
1105
+ "id": "./src/theme/default/components/form/index.tsx",
1106
+ "name": "./src/theme/default/components/form/index.tsx",
1107
+ "reasons": [
1108
+ {
1109
+ "moduleName": "./src/theme/default/components/index.ts"
1110
+ },
1111
+ {
1112
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1113
+ }
1114
+ ]
1115
+ },
1116
+ {
1117
+ "id": "./src/theme/default/components/default-components.tsx",
1118
+ "name": "./src/theme/default/components/default-components.tsx",
1119
+ "reasons": [
1120
+ {
1121
+ "moduleName": "./src/theme/default/components/index.ts"
1122
+ }
1123
+ ]
1124
+ },
1125
+ {
1126
+ "id": "./src/theme/default/flows/error.tsx",
1127
+ "name": "./src/theme/default/flows/error.tsx",
1128
+ "reasons": [
1129
+ {
1130
+ "moduleName": "./src/theme/default/flows/index.ts"
1131
+ }
1132
+ ]
1133
+ },
1134
+ {
1135
+ "id": "./src/theme/default/flows/login.tsx",
1136
+ "name": "./src/theme/default/flows/login.tsx",
1137
+ "reasons": [
1138
+ {
1139
+ "moduleName": "./src/theme/default/flows/index.ts"
1140
+ }
1141
+ ]
1142
+ },
1143
+ {
1144
+ "id": "./src/theme/default/flows/recovery.tsx",
1145
+ "name": "./src/theme/default/flows/recovery.tsx",
1146
+ "reasons": [
1147
+ {
1148
+ "moduleName": "./src/theme/default/flows/index.ts"
1149
+ }
1150
+ ]
1151
+ },
1152
+ {
1153
+ "id": "./src/theme/default/flows/registration.tsx",
1154
+ "name": "./src/theme/default/flows/registration.tsx",
1155
+ "reasons": [
1156
+ {
1157
+ "moduleName": "./src/theme/default/flows/index.ts"
1158
+ }
1159
+ ]
1160
+ },
1161
+ {
1162
+ "id": "./src/theme/default/flows/settings.tsx",
1163
+ "name": "./src/theme/default/flows/settings.tsx",
1164
+ "reasons": [
1165
+ {
1166
+ "moduleName": "./src/theme/default/flows/index.ts"
1167
+ }
1168
+ ]
1169
+ },
1170
+ {
1171
+ "id": "./src/theme/default/flows/verification.tsx",
1172
+ "name": "./src/theme/default/flows/verification.tsx",
1173
+ "reasons": [
1174
+ {
1175
+ "moduleName": "./src/theme/default/flows/index.ts"
1176
+ }
1177
+ ]
1178
+ },
1179
+ {
1180
+ "id": "./src/context/form-state.ts",
1181
+ "name": "./src/context/form-state.ts",
1182
+ "reasons": [
1183
+ {
1184
+ "moduleName": "./src/context/flow-context.tsx"
1185
+ }
1186
+ ]
1187
+ },
1188
+ {
1189
+ "id": "./src/context/intl-context.tsx",
1190
+ "name": "./src/context/intl-context.tsx",
1191
+ "reasons": [
1192
+ {
1193
+ "moduleName": "./src/context/provider.tsx"
1194
+ }
1195
+ ]
1196
+ },
1197
+ {
1198
+ "id": "./src/components/generic/divider.tsx",
1199
+ "name": "./src/components/generic/divider.tsx",
1200
+ "reasons": [
1201
+ {
1202
+ "moduleName": "./src/components/generic/index.ts"
1203
+ }
1204
+ ]
1205
+ },
1206
+ {
1207
+ "id": "./src/components/generic/page-header.tsx",
1208
+ "name": "./src/components/generic/page-header.tsx",
1209
+ "reasons": [
1210
+ {
1211
+ "moduleName": "./src/components/generic/index.ts"
1212
+ }
1213
+ ]
1214
+ },
1215
+ {
1216
+ "id": "./src/components/form/form.tsx",
1217
+ "name": "./src/components/form/form.tsx",
1218
+ "reasons": [
1219
+ {
1220
+ "moduleName": "./src/components/form/index.ts"
1221
+ },
1222
+ {
1223
+ "moduleName": "./src/components/form/social.tsx"
1224
+ },
1225
+ {
1226
+ "moduleName": "./src/components/card/card-two-step.tsx"
1227
+ }
1228
+ ]
1229
+ },
1230
+ {
1231
+ "id": "./src/components/form/groups.tsx",
1232
+ "name": "./src/components/form/groups.tsx",
1233
+ "reasons": [
1234
+ {
1235
+ "moduleName": "./src/components/form/index.ts"
1236
+ },
1237
+ {
1238
+ "moduleName": "./src/components/form/form.tsx"
1239
+ }
1240
+ ]
1241
+ },
1242
+ {
1243
+ "id": "./src/components/form/messages.tsx",
1244
+ "name": "./src/components/form/messages.tsx",
1245
+ "reasons": [
1246
+ {
1247
+ "moduleName": "./src/components/form/index.ts"
1248
+ },
1249
+ {
1250
+ "moduleName": "./src/components/card/card-two-step.tsx"
1251
+ }
1252
+ ]
1253
+ },
1254
+ {
1255
+ "id": "./src/components/form/social.tsx",
1256
+ "name": "./src/components/form/social.tsx",
1257
+ "reasons": [
1258
+ {
1259
+ "moduleName": "./src/components/form/index.ts"
1260
+ },
1261
+ {
1262
+ "moduleName": "./src/components/form/form.tsx"
1263
+ },
1264
+ {
1265
+ "moduleName": "./src/components/card/card-two-step.tsx"
1266
+ }
1267
+ ]
1268
+ },
1269
+ {
1270
+ "id": "./src/components/form/section.tsx",
1271
+ "name": "./src/components/form/section.tsx",
1272
+ "reasons": [
1273
+ {
1274
+ "moduleName": "./src/components/form/index.ts"
1275
+ },
1276
+ {
1277
+ "moduleName": "./src/components/settings/settings-card.tsx"
1278
+ }
1279
+ ]
1280
+ },
1281
+ {
1282
+ "id": "./src/components/settings/settings-card.tsx",
1283
+ "name": "./src/components/settings/settings-card.tsx",
1284
+ "reasons": [
1285
+ {
1286
+ "moduleName": "./src/components/settings/index.tsx"
1287
+ }
1288
+ ]
1289
+ },
1290
+ {
1291
+ "id": "./src/components/card/header.tsx",
1292
+ "name": "./src/components/card/header.tsx",
1293
+ "reasons": [
1294
+ {
1295
+ "moduleName": "./src/components/card/index.tsx"
1296
+ },
1297
+ {
1298
+ "moduleName": "./src/components/card/card-two-step.tsx"
1299
+ },
1300
+ {
1301
+ "moduleName": "./src/components/card/card.tsx"
1302
+ }
1303
+ ]
1304
+ },
1305
+ {
1306
+ "id": "./src/components/card/card.tsx",
1307
+ "name": "./src/components/card/card.tsx",
1308
+ "reasons": [
1309
+ {
1310
+ "moduleName": "./src/components/card/index.tsx"
1311
+ }
1312
+ ]
1313
+ },
1314
+ {
1315
+ "id": "./src/components/card/footer.tsx",
1316
+ "name": "./src/components/card/footer.tsx",
1317
+ "reasons": [
1318
+ {
1319
+ "moduleName": "./src/components/card/index.tsx"
1320
+ },
1321
+ {
1322
+ "moduleName": "./src/components/card/card.tsx"
1323
+ }
1324
+ ]
1325
+ },
1326
+ {
1327
+ "id": "./src/components/card/content.tsx",
1328
+ "name": "./src/components/card/content.tsx",
1329
+ "reasons": [
1330
+ {
1331
+ "moduleName": "./src/components/card/index.tsx"
1332
+ },
1333
+ {
1334
+ "moduleName": "./src/components/card/card.tsx"
1335
+ }
1336
+ ]
1337
+ },
1338
+ {
1339
+ "id": "./src/components/card/card-two-step.tsx",
1340
+ "name": "./src/components/card/card-two-step.tsx",
1341
+ "reasons": [
1342
+ {
1343
+ "moduleName": "./src/components/card/index.tsx"
1344
+ }
1345
+ ]
1346
+ },
1347
+ {
1348
+ "id": "./src/theme/default/components/card/auth-methods.tsx",
1349
+ "name": "./src/theme/default/components/card/auth-methods.tsx",
1350
+ "reasons": [
1351
+ {
1352
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1353
+ }
1354
+ ]
1355
+ },
1356
+ {
1357
+ "id": "./src/theme/default/components/form/button.tsx",
1358
+ "name": "./src/theme/default/components/form/button.tsx",
1359
+ "reasons": [
1360
+ {
1361
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1362
+ }
1363
+ ]
1364
+ },
1365
+ {
1366
+ "id": "./src/theme/default/components/form/checkbox.tsx",
1367
+ "name": "./src/theme/default/components/form/checkbox.tsx",
1368
+ "reasons": [
1369
+ {
1370
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1371
+ }
1372
+ ]
1373
+ },
1374
+ {
1375
+ "id": "./src/theme/default/components/form/group-container.tsx",
1376
+ "name": "./src/theme/default/components/form/group-container.tsx",
1377
+ "reasons": [
1378
+ {
1379
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1380
+ }
1381
+ ]
1382
+ },
1383
+ {
1384
+ "id": "./src/theme/default/components/form/horizontal-divider.tsx",
1385
+ "name": "./src/theme/default/components/form/horizontal-divider.tsx",
1386
+ "reasons": [
1387
+ {
1388
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1389
+ },
1390
+ {
1391
+ "moduleName": "./src/theme/default/components/settings/settings-recovery-codes.tsx"
1392
+ },
1393
+ {
1394
+ "moduleName": "./src/theme/default/components/settings/settings-totp.tsx"
1395
+ },
1396
+ {
1397
+ "moduleName": "./src/theme/default/components/settings/settings-oidc.tsx"
1398
+ },
1399
+ {
1400
+ "moduleName": "./src/theme/default/components/settings/settings-passkey.tsx"
1401
+ }
1402
+ ]
1403
+ },
1404
+ {
1405
+ "id": "./src/theme/default/components/form/image.tsx",
1406
+ "name": "./src/theme/default/components/form/image.tsx",
1407
+ "reasons": [
1408
+ {
1409
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1410
+ }
1411
+ ]
1412
+ },
1413
+ {
1414
+ "id": "./src/theme/default/components/form/input.tsx",
1415
+ "name": "./src/theme/default/components/form/input.tsx",
1416
+ "reasons": [
1417
+ {
1418
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1419
+ }
1420
+ ]
1421
+ },
1422
+ {
1423
+ "id": "./src/theme/default/components/form/label.tsx",
1424
+ "name": "./src/theme/default/components/form/label.tsx",
1425
+ "reasons": [
1426
+ {
1427
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1428
+ }
1429
+ ]
1430
+ },
1431
+ {
1432
+ "id": "./src/theme/default/components/form/link-button.tsx",
1433
+ "name": "./src/theme/default/components/form/link-button.tsx",
1434
+ "reasons": [
1435
+ {
1436
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1437
+ }
1438
+ ]
1439
+ },
1440
+ {
1441
+ "id": "./src/theme/default/components/form/pin-code-input.tsx",
1442
+ "name": "./src/theme/default/components/form/pin-code-input.tsx",
1443
+ "reasons": [
1444
+ {
1445
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1446
+ }
1447
+ ]
1448
+ },
1449
+ {
1450
+ "id": "./src/theme/default/components/form/section.tsx",
1451
+ "name": "./src/theme/default/components/form/section.tsx",
1452
+ "reasons": [
1453
+ {
1454
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1455
+ }
1456
+ ]
1457
+ },
1458
+ {
1459
+ "id": "./src/theme/default/components/form/social.tsx",
1460
+ "name": "./src/theme/default/components/form/social.tsx",
1461
+ "reasons": [
1462
+ {
1463
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1464
+ },
1465
+ {
1466
+ "moduleName": "./src/theme/default/components/form/index.tsx"
1467
+ },
1468
+ {
1469
+ "moduleName": "./src/theme/default/components/settings/settings-oidc.tsx"
1470
+ }
1471
+ ]
1472
+ },
1473
+ {
1474
+ "id": "./src/theme/default/components/form/text.tsx",
1475
+ "name": "./src/theme/default/components/form/text.tsx",
1476
+ "reasons": [
1477
+ {
1478
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1479
+ }
1480
+ ]
1481
+ },
1482
+ {
1483
+ "id": "./src/theme/default/components/generic/page-header.tsx",
1484
+ "name": "./src/theme/default/components/generic/page-header.tsx",
1485
+ "reasons": [
1486
+ {
1487
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1488
+ }
1489
+ ]
1490
+ },
1491
+ {
1492
+ "id": "./src/theme/default/components/settings/settings-oidc.tsx",
1493
+ "name": "./src/theme/default/components/settings/settings-oidc.tsx",
1494
+ "reasons": [
1495
+ {
1496
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1497
+ }
1498
+ ]
1499
+ },
1500
+ {
1501
+ "id": "./src/theme/default/components/settings/settings-passkey.tsx",
1502
+ "name": "./src/theme/default/components/settings/settings-passkey.tsx",
1503
+ "reasons": [
1504
+ {
1505
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1506
+ }
1507
+ ]
1508
+ },
1509
+ {
1510
+ "id": "./src/theme/default/components/settings/settings-recovery-codes.tsx",
1511
+ "name": "./src/theme/default/components/settings/settings-recovery-codes.tsx",
1512
+ "reasons": [
1513
+ {
1514
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1515
+ }
1516
+ ]
1517
+ },
1518
+ {
1519
+ "id": "./src/theme/default/components/settings/settings-totp.tsx",
1520
+ "name": "./src/theme/default/components/settings/settings-totp.tsx",
1521
+ "reasons": [
1522
+ {
1523
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1524
+ }
1525
+ ]
1526
+ },
1527
+ {
1528
+ "id": "./src/theme/default/components/settings/settings-webauthn.tsx",
1529
+ "name": "./src/theme/default/components/settings/settings-webauthn.tsx",
1530
+ "reasons": [
1531
+ {
1532
+ "moduleName": "./src/theme/default/components/default-components.tsx"
1533
+ }
1534
+ ]
1535
+ },
1536
+ {
1537
+ "id": "./src/theme/default/components/card/badge.tsx",
1538
+ "name": "./src/theme/default/components/card/badge.tsx",
1539
+ "reasons": [
1540
+ {
1541
+ "moduleName": "./src/theme/default/components/card/index.tsx"
1542
+ }
1543
+ ]
1544
+ },
1545
+ {
1546
+ "id": "./src/theme/default/components/card/content.tsx",
1547
+ "name": "./src/theme/default/components/card/content.tsx",
1548
+ "reasons": [
1549
+ {
1550
+ "moduleName": "./src/theme/default/components/card/index.tsx"
1551
+ }
1552
+ ]
1553
+ },
1554
+ {
1555
+ "id": "./src/theme/default/components/card/footer.tsx",
1556
+ "name": "./src/theme/default/components/card/footer.tsx",
1557
+ "reasons": [
1558
+ {
1559
+ "moduleName": "./src/theme/default/components/card/index.tsx"
1560
+ }
1561
+ ]
1562
+ },
1563
+ {
1564
+ "id": "./src/theme/default/components/card/header.tsx",
1565
+ "name": "./src/theme/default/components/card/header.tsx",
1566
+ "reasons": [
1567
+ {
1568
+ "moduleName": "./src/theme/default/components/card/index.tsx"
1569
+ }
1570
+ ]
1571
+ },
1572
+ {
1573
+ "id": "./src/theme/default/components/card/logo.tsx",
1574
+ "name": "./src/theme/default/components/card/logo.tsx",
1575
+ "reasons": [
1576
+ {
1577
+ "moduleName": "./src/theme/default/components/card/index.tsx"
1578
+ }
1579
+ ]
1580
+ },
1581
+ {
1582
+ "id": "./src/theme/default/components/card/current-identifier-button.tsx",
1583
+ "name": "./src/theme/default/components/card/current-identifier-button.tsx",
1584
+ "reasons": [
1585
+ {
1586
+ "moduleName": "./src/theme/default/components/card/index.tsx"
1587
+ },
1588
+ {
1589
+ "moduleName": "./src/theme/default/components/card/header.tsx"
1590
+ }
1591
+ ]
1592
+ },
1593
+ {
1594
+ "id": "./src/theme/default/components/card/layout.tsx",
1595
+ "name": "./src/theme/default/components/card/layout.tsx",
1596
+ "reasons": [
1597
+ {
1598
+ "moduleName": "./src/theme/default/components/card/index.tsx"
1599
+ }
1600
+ ]
1601
+ },
1602
+ {
1603
+ "id": "./src/components/card/card-two-step.utils.ts",
1604
+ "name": "./src/components/card/card-two-step.utils.ts",
1605
+ "reasons": [
1606
+ {
1607
+ "moduleName": "./src/context/form-state.ts"
1608
+ },
1609
+ {
1610
+ "moduleName": "./src/components/card/card-two-step.tsx"
1611
+ }
1612
+ ]
1613
+ },
1614
+ {
1615
+ "id": "./src/util/ui/index.ts",
1616
+ "name": "./src/util/ui/index.ts",
1617
+ "reasons": [
1618
+ {
1619
+ "moduleName": "./src/context/form-state.ts"
1620
+ },
1621
+ {
1622
+ "moduleName": "./src/components/card/card-two-step.tsx"
1623
+ },
1624
+ {
1625
+ "moduleName": "./src/components/settings/settings-card.tsx"
1626
+ },
1627
+ {
1628
+ "moduleName": "./src/components/settings/passkey-settings.tsx"
1629
+ },
1630
+ {
1631
+ "moduleName": "./src/components/settings/webauthn-settings.tsx"
1632
+ },
1633
+ {
1634
+ "moduleName": "./src/components/form/nodes/input.tsx"
1635
+ }
1636
+ ]
1637
+ },
1638
+ {
1639
+ "id": "./src/theme/default/utils/cn.ts",
1640
+ "name": "./src/theme/default/utils/cn.ts",
1641
+ "reasons": [
1642
+ {
1643
+ "moduleName": "./src/theme/default/components/form/index.tsx"
1644
+ },
1645
+ {
1646
+ "moduleName": "./src/theme/default/components/form/checkbox.tsx"
1647
+ },
1648
+ {
1649
+ "moduleName": "./src/theme/default/components/form/input.tsx"
1650
+ },
1651
+ {
1652
+ "moduleName": "./src/theme/default/components/form/link-button.tsx"
1653
+ },
1654
+ {
1655
+ "moduleName": "./src/theme/default/components/form/pin-code-input.tsx"
1656
+ },
1657
+ {
1658
+ "moduleName": "./src/theme/default/components/form/section.tsx"
1659
+ },
1660
+ {
1661
+ "moduleName": "./src/theme/default/components/form/social.tsx"
1662
+ },
1663
+ {
1664
+ "moduleName": "./src/theme/default/components/form/spinner.tsx"
1665
+ },
1666
+ {
1667
+ "moduleName": "./src/theme/default/components/form/shadcn/otp-input.tsx"
1668
+ },
1669
+ {
1670
+ "moduleName": "./src/theme/default/components/ui/dropdown-menu.tsx"
1671
+ }
1672
+ ]
1673
+ },
1674
+ {
1675
+ "id": "./src/components/form/useOryFormSubmit.ts",
1676
+ "name": "./src/components/form/useOryFormSubmit.ts",
1677
+ "reasons": [
1678
+ {
1679
+ "moduleName": "./src/components/form/form.tsx"
1680
+ },
1681
+ {
1682
+ "moduleName": "./src/components/form/section.tsx"
1683
+ }
1684
+ ]
1685
+ },
1686
+ {
1687
+ "id": "./src/components/form/nodes/node.tsx",
1688
+ "name": "./src/components/form/nodes/node.tsx",
1689
+ "reasons": [
1690
+ {
1691
+ "moduleName": "./src/components/form/groups.tsx"
1692
+ },
1693
+ {
1694
+ "moduleName": "./src/components/card/card-two-step.tsx"
1695
+ },
1696
+ {
1697
+ "moduleName": "./src/components/settings/settings-card.tsx"
1698
+ },
1699
+ {
1700
+ "moduleName": "./src/components/settings/passkey-settings.tsx"
1701
+ },
1702
+ {
1703
+ "moduleName": "./src/components/settings/webauthn-settings.tsx"
1704
+ }
1705
+ ]
1706
+ },
1707
+ {
1708
+ "id": "./src/components/form/form-provider.tsx",
1709
+ "name": "./src/components/form/form-provider.tsx",
1710
+ "reasons": [
1711
+ {
1712
+ "moduleName": "./src/components/form/social.tsx"
1713
+ },
1714
+ {
1715
+ "moduleName": "./src/components/form/section.tsx"
1716
+ },
1717
+ {
1718
+ "moduleName": "./src/components/card/card.tsx"
1719
+ }
1720
+ ]
1721
+ },
1722
+ {
1723
+ "id": "./src/theme/default/utils/form.ts",
1724
+ "name": "./src/theme/default/utils/form.ts",
1725
+ "reasons": [
1726
+ {
1727
+ "moduleName": "./src/components/card/card-two-step.tsx"
1728
+ },
1729
+ {
1730
+ "moduleName": "./src/theme/default/components/card/auth-methods.tsx"
1731
+ }
1732
+ ]
1733
+ },
1734
+ {
1735
+ "id": "./src/components/settings/oidc-settings.tsx",
1736
+ "name": "./src/components/settings/oidc-settings.tsx",
1737
+ "reasons": [
1738
+ {
1739
+ "moduleName": "./src/components/settings/settings-card.tsx"
1740
+ }
1741
+ ]
1742
+ },
1743
+ {
1744
+ "id": "./src/components/settings/passkey-settings.tsx",
1745
+ "name": "./src/components/settings/passkey-settings.tsx",
1746
+ "reasons": [
1747
+ {
1748
+ "moduleName": "./src/components/settings/settings-card.tsx"
1749
+ }
1750
+ ]
1751
+ },
1752
+ {
1753
+ "id": "./src/components/settings/recovery-codes-settings.tsx",
1754
+ "name": "./src/components/settings/recovery-codes-settings.tsx",
1755
+ "reasons": [
1756
+ {
1757
+ "moduleName": "./src/components/settings/settings-card.tsx"
1758
+ }
1759
+ ]
1760
+ },
1761
+ {
1762
+ "id": "./src/components/settings/totp-settings.tsx",
1763
+ "name": "./src/components/settings/totp-settings.tsx",
1764
+ "reasons": [
1765
+ {
1766
+ "moduleName": "./src/components/settings/settings-card.tsx"
1767
+ }
1768
+ ]
1769
+ },
1770
+ {
1771
+ "id": "./src/components/settings/webauthn-settings.tsx",
1772
+ "name": "./src/components/settings/webauthn-settings.tsx",
1773
+ "reasons": [
1774
+ {
1775
+ "moduleName": "./src/components/settings/settings-card.tsx"
1776
+ }
1777
+ ]
1778
+ },
1779
+ {
1780
+ "id": "./src/theme/default/components/form/spinner.tsx",
1781
+ "name": "./src/theme/default/components/form/spinner.tsx",
1782
+ "reasons": [
1783
+ {
1784
+ "moduleName": "./src/theme/default/components/form/button.tsx"
1785
+ },
1786
+ {
1787
+ "moduleName": "./src/theme/default/components/form/social.tsx"
1788
+ },
1789
+ {
1790
+ "moduleName": "./src/theme/default/components/settings/settings-totp.tsx"
1791
+ },
1792
+ {
1793
+ "moduleName": "./src/theme/default/components/settings/settings-oidc.tsx"
1794
+ },
1795
+ {
1796
+ "moduleName": "./src/theme/default/components/settings/settings-passkey.tsx"
1797
+ },
1798
+ {
1799
+ "moduleName": "./src/theme/default/components/settings/settings-webauthn.tsx"
1800
+ }
1801
+ ]
1802
+ },
1803
+ {
1804
+ "id": "./src/theme/default/assets/icons/code.svg",
1805
+ "name": "./src/theme/default/assets/icons/code.svg",
1806
+ "reasons": [
1807
+ {
1808
+ "moduleName": "./src/theme/default/components/card/auth-methods.tsx"
1809
+ }
1810
+ ]
1811
+ },
1812
+ {
1813
+ "id": "./src/theme/default/assets/icons/passkey.svg",
1814
+ "name": "./src/theme/default/assets/icons/passkey.svg",
1815
+ "reasons": [
1816
+ {
1817
+ "moduleName": "./src/theme/default/components/card/auth-methods.tsx"
1818
+ },
1819
+ {
1820
+ "moduleName": "./src/theme/default/components/settings/settings-passkey.tsx"
1821
+ }
1822
+ ]
1823
+ },
1824
+ {
1825
+ "id": "./src/theme/default/assets/icons/password.svg",
1826
+ "name": "./src/theme/default/assets/icons/password.svg",
1827
+ "reasons": [
1828
+ {
1829
+ "moduleName": "./src/theme/default/components/card/auth-methods.tsx"
1830
+ }
1831
+ ]
1832
+ },
1833
+ {
1834
+ "id": "./src/theme/default/assets/icons/webauthn.svg",
1835
+ "name": "./src/theme/default/assets/icons/webauthn.svg",
1836
+ "reasons": [
1837
+ {
1838
+ "moduleName": "./src/theme/default/components/card/auth-methods.tsx"
1839
+ }
1840
+ ]
1841
+ },
1842
+ {
1843
+ "id": "./src/theme/default/components/ui/checkbox-label.tsx",
1844
+ "name": "./src/theme/default/components/ui/checkbox-label.tsx",
1845
+ "reasons": [
1846
+ {
1847
+ "moduleName": "./src/theme/default/components/form/checkbox.tsx"
1848
+ }
1849
+ ]
1850
+ },
1851
+ {
1852
+ "id": "./src/theme/default/components/form/shadcn/otp-input.tsx",
1853
+ "name": "./src/theme/default/components/form/shadcn/otp-input.tsx",
1854
+ "reasons": [
1855
+ {
1856
+ "moduleName": "./src/theme/default/components/form/pin-code-input.tsx"
1857
+ }
1858
+ ]
1859
+ },
1860
+ {
1861
+ "id": "./src/theme/default/provider-logos/index.ts",
1862
+ "name": "./src/theme/default/provider-logos/index.ts",
1863
+ "reasons": [
1864
+ {
1865
+ "moduleName": "./src/theme/default/components/form/social.tsx"
1866
+ },
1867
+ {
1868
+ "moduleName": "./src/theme/default/components/settings/settings-oidc.tsx"
1869
+ }
1870
+ ]
1871
+ },
1872
+ {
1873
+ "id": "./src/theme/default/utils/url.ts",
1874
+ "name": "./src/theme/default/utils/url.ts",
1875
+ "reasons": [
1876
+ {
1877
+ "moduleName": "./src/theme/default/components/form/label.tsx"
1878
+ },
1879
+ {
1880
+ "moduleName": "./src/theme/default/components/card/footer.tsx"
1881
+ },
1882
+ {
1883
+ "moduleName": "./src/theme/default/components/card/current-identifier-button.tsx"
1884
+ }
1885
+ ]
1886
+ },
1887
+ {
1888
+ "id": "./src/theme/default/assets/icons/download.svg",
1889
+ "name": "./src/theme/default/assets/icons/download.svg",
1890
+ "reasons": [
1891
+ {
1892
+ "moduleName": "./src/theme/default/components/settings/settings-recovery-codes.tsx"
1893
+ }
1894
+ ]
1895
+ },
1896
+ {
1897
+ "id": "./src/theme/default/assets/icons/eye.svg",
1898
+ "name": "./src/theme/default/assets/icons/eye.svg",
1899
+ "reasons": [
1900
+ {
1901
+ "moduleName": "./src/theme/default/components/settings/settings-recovery-codes.tsx"
1902
+ }
1903
+ ]
1904
+ },
1905
+ {
1906
+ "id": "./src/theme/default/assets/icons/refresh.svg",
1907
+ "name": "./src/theme/default/assets/icons/refresh.svg",
1908
+ "reasons": [
1909
+ {
1910
+ "moduleName": "./src/theme/default/components/settings/settings-recovery-codes.tsx"
1911
+ }
1912
+ ]
1913
+ },
1914
+ {
1915
+ "id": "./src/theme/default/components/ui/user-menu.tsx",
1916
+ "name": "./src/theme/default/components/ui/user-menu.tsx",
1917
+ "reasons": [
1918
+ {
1919
+ "moduleName": "./src/theme/default/components/generic/page-header.tsx"
1920
+ }
1921
+ ]
1922
+ },
1923
+ {
1924
+ "id": "./src/client/index.ts",
1925
+ "name": "./src/client/index.ts",
1926
+ "reasons": [
1927
+ {
1928
+ "moduleName": "./src/theme/default/components/generic/page-header.tsx"
1929
+ }
1930
+ ]
1931
+ },
1932
+ {
1933
+ "id": "./src/theme/default/assets/icons/qrcode.svg",
1934
+ "name": "./src/theme/default/assets/icons/qrcode.svg",
1935
+ "reasons": [
1936
+ {
1937
+ "moduleName": "./src/theme/default/components/settings/settings-totp.tsx"
1938
+ }
1939
+ ]
1940
+ },
1941
+ {
1942
+ "id": "./src/theme/default/assets/icons/trash.svg",
1943
+ "name": "./src/theme/default/assets/icons/trash.svg",
1944
+ "reasons": [
1945
+ {
1946
+ "moduleName": "./src/theme/default/components/settings/settings-totp.tsx"
1947
+ },
1948
+ {
1949
+ "moduleName": "./src/theme/default/components/settings/settings-oidc.tsx"
1950
+ },
1951
+ {
1952
+ "moduleName": "./src/theme/default/components/settings/settings-passkey.tsx"
1953
+ },
1954
+ {
1955
+ "moduleName": "./src/theme/default/components/settings/settings-webauthn.tsx"
1956
+ }
1957
+ ]
1958
+ },
1959
+ {
1960
+ "id": "./src/theme/default/assets/ory-badge-horizontal.svg",
1961
+ "name": "./src/theme/default/assets/ory-badge-horizontal.svg",
1962
+ "reasons": [
1963
+ {
1964
+ "moduleName": "./src/theme/default/components/card/badge.tsx"
1965
+ }
1966
+ ]
1967
+ },
1968
+ {
1969
+ "id": "./src/theme/default/assets/ory-badge-vertical.svg",
1970
+ "name": "./src/theme/default/assets/ory-badge-vertical.svg",
1971
+ "reasons": [
1972
+ {
1973
+ "moduleName": "./src/theme/default/components/card/badge.tsx"
1974
+ }
1975
+ ]
1976
+ },
1977
+ {
1978
+ "id": "./src/theme/default/assets/icons/key.svg",
1979
+ "name": "./src/theme/default/assets/icons/key.svg",
1980
+ "reasons": [
1981
+ {
1982
+ "moduleName": "./src/theme/default/components/settings/settings-webauthn.tsx"
1983
+ }
1984
+ ]
1985
+ },
1986
+ {
1987
+ "id": "./src/theme/default/utils/constructCardHeader.ts",
1988
+ "name": "./src/theme/default/utils/constructCardHeader.ts",
1989
+ "reasons": [
1990
+ {
1991
+ "moduleName": "./src/theme/default/components/card/header.tsx"
1992
+ }
1993
+ ]
1994
+ },
1995
+ {
1996
+ "id": "./src/theme/default/assets/icons/arrow-left.svg",
1997
+ "name": "./src/theme/default/assets/icons/arrow-left.svg",
1998
+ "reasons": [
1999
+ {
2000
+ "moduleName": "./src/theme/default/components/card/current-identifier-button.tsx"
2001
+ }
2002
+ ]
2003
+ },
2004
+ {
2005
+ "id": "./src/theme/default/utils/attributes.ts",
2006
+ "name": "./src/theme/default/utils/attributes.ts",
2007
+ "reasons": [
2008
+ {
2009
+ "moduleName": "./src/theme/default/components/card/current-identifier-button.tsx"
2010
+ }
2011
+ ]
2012
+ },
2013
+ {
2014
+ "id": "./src/util/onSubmitLogin.ts",
2015
+ "name": "./src/util/onSubmitLogin.ts",
2016
+ "reasons": [
2017
+ {
2018
+ "moduleName": "./src/components/form/useOryFormSubmit.ts"
2019
+ }
2020
+ ]
2021
+ },
2022
+ {
2023
+ "id": "./src/util/onSubmitRecovery.ts",
2024
+ "name": "./src/util/onSubmitRecovery.ts",
2025
+ "reasons": [
2026
+ {
2027
+ "moduleName": "./src/components/form/useOryFormSubmit.ts"
2028
+ }
2029
+ ]
2030
+ },
2031
+ {
2032
+ "id": "./src/util/onSubmitRegistration.ts",
2033
+ "name": "./src/util/onSubmitRegistration.ts",
2034
+ "reasons": [
2035
+ {
2036
+ "moduleName": "./src/components/form/useOryFormSubmit.ts"
2037
+ }
2038
+ ]
2039
+ },
2040
+ {
2041
+ "id": "./src/util/onSubmitSettings.ts",
2042
+ "name": "./src/util/onSubmitSettings.ts",
2043
+ "reasons": [
2044
+ {
2045
+ "moduleName": "./src/components/form/useOryFormSubmit.ts"
2046
+ }
2047
+ ]
2048
+ },
2049
+ {
2050
+ "id": "./src/util/onSubmitVerification.ts",
2051
+ "name": "./src/util/onSubmitVerification.ts",
2052
+ "reasons": [
2053
+ {
2054
+ "moduleName": "./src/components/form/useOryFormSubmit.ts"
2055
+ }
2056
+ ]
2057
+ },
2058
+ {
2059
+ "id": "./src/components/form/form-helpers.ts",
2060
+ "name": "./src/components/form/form-helpers.ts",
2061
+ "reasons": [
2062
+ {
2063
+ "moduleName": "./src/components/form/useOryFormSubmit.ts"
2064
+ },
2065
+ {
2066
+ "moduleName": "./src/components/form/form-provider.tsx"
2067
+ }
2068
+ ]
2069
+ },
2070
+ {
2071
+ "id": "./src/components/form/form-resolver.ts",
2072
+ "name": "./src/components/form/form-resolver.ts",
2073
+ "reasons": [
2074
+ {
2075
+ "moduleName": "./src/components/form/form-provider.tsx"
2076
+ }
2077
+ ]
2078
+ },
2079
+ {
2080
+ "id": "./src/components/form/nodes/input.tsx",
2081
+ "name": "./src/components/form/nodes/input.tsx",
2082
+ "reasons": [
2083
+ {
2084
+ "moduleName": "./src/components/form/nodes/node.tsx"
2085
+ }
2086
+ ]
2087
+ },
2088
+ {
2089
+ "id": "./src/theme/default/provider-logos/apple.svg",
2090
+ "name": "./src/theme/default/provider-logos/apple.svg",
2091
+ "reasons": [
2092
+ {
2093
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2094
+ }
2095
+ ]
2096
+ },
2097
+ {
2098
+ "id": "./src/theme/default/provider-logos/auth0.svg",
2099
+ "name": "./src/theme/default/provider-logos/auth0.svg",
2100
+ "reasons": [
2101
+ {
2102
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2103
+ }
2104
+ ]
2105
+ },
2106
+ {
2107
+ "id": "./src/theme/default/provider-logos/discord.svg",
2108
+ "name": "./src/theme/default/provider-logos/discord.svg",
2109
+ "reasons": [
2110
+ {
2111
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2112
+ }
2113
+ ]
2114
+ },
2115
+ {
2116
+ "id": "./src/theme/default/provider-logos/facebook.svg",
2117
+ "name": "./src/theme/default/provider-logos/facebook.svg",
2118
+ "reasons": [
2119
+ {
2120
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2121
+ }
2122
+ ]
2123
+ },
2124
+ {
2125
+ "id": "./src/theme/default/provider-logos/generic.svg",
2126
+ "name": "./src/theme/default/provider-logos/generic.svg",
2127
+ "reasons": [
2128
+ {
2129
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2130
+ }
2131
+ ]
2132
+ },
2133
+ {
2134
+ "id": "./src/theme/default/provider-logos/github.svg",
2135
+ "name": "./src/theme/default/provider-logos/github.svg",
2136
+ "reasons": [
2137
+ {
2138
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2139
+ }
2140
+ ]
2141
+ },
2142
+ {
2143
+ "id": "./src/theme/default/provider-logos/gitlab.svg",
2144
+ "name": "./src/theme/default/provider-logos/gitlab.svg",
2145
+ "reasons": [
2146
+ {
2147
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2148
+ }
2149
+ ]
2150
+ },
2151
+ {
2152
+ "id": "./src/theme/default/provider-logos/google.svg",
2153
+ "name": "./src/theme/default/provider-logos/google.svg",
2154
+ "reasons": [
2155
+ {
2156
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2157
+ }
2158
+ ]
2159
+ },
2160
+ {
2161
+ "id": "./src/theme/default/provider-logos/linkedin.svg",
2162
+ "name": "./src/theme/default/provider-logos/linkedin.svg",
2163
+ "reasons": [
2164
+ {
2165
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2166
+ }
2167
+ ]
2168
+ },
2169
+ {
2170
+ "id": "./src/theme/default/provider-logos/microsoft.svg",
2171
+ "name": "./src/theme/default/provider-logos/microsoft.svg",
2172
+ "reasons": [
2173
+ {
2174
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2175
+ }
2176
+ ]
2177
+ },
2178
+ {
2179
+ "id": "./src/theme/default/provider-logos/slack.svg",
2180
+ "name": "./src/theme/default/provider-logos/slack.svg",
2181
+ "reasons": [
2182
+ {
2183
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2184
+ }
2185
+ ]
2186
+ },
2187
+ {
2188
+ "id": "./src/theme/default/provider-logos/spotify.svg",
2189
+ "name": "./src/theme/default/provider-logos/spotify.svg",
2190
+ "reasons": [
2191
+ {
2192
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2193
+ }
2194
+ ]
2195
+ },
2196
+ {
2197
+ "id": "./src/theme/default/provider-logos/yandex.svg",
2198
+ "name": "./src/theme/default/provider-logos/yandex.svg",
2199
+ "reasons": [
2200
+ {
2201
+ "moduleName": "./src/theme/default/provider-logos/index.ts"
2202
+ }
2203
+ ]
2204
+ },
2205
+ {
2206
+ "id": "./src/client/session-provider.tsx",
2207
+ "name": "./src/client/session-provider.tsx",
2208
+ "reasons": [
2209
+ {
2210
+ "moduleName": "./src/client/index.ts"
2211
+ },
2212
+ {
2213
+ "moduleName": "./src/client/useSession.ts"
2214
+ }
2215
+ ]
2216
+ },
2217
+ {
2218
+ "id": "./src/client/useSession.ts",
2219
+ "name": "./src/client/useSession.ts",
2220
+ "reasons": [
2221
+ {
2222
+ "moduleName": "./src/client/index.ts"
2223
+ }
2224
+ ]
2225
+ },
2226
+ {
2227
+ "id": "./src/util/client.ts",
2228
+ "name": "./src/util/client.ts",
2229
+ "reasons": [
2230
+ {
2231
+ "moduleName": "./src/theme/default/components/ui/user-menu.tsx"
2232
+ },
2233
+ {
2234
+ "moduleName": "./src/util/onSubmitLogin.ts"
2235
+ },
2236
+ {
2237
+ "moduleName": "./src/util/onSubmitRegistration.ts"
2238
+ },
2239
+ {
2240
+ "moduleName": "./src/util/onSubmitRecovery.ts"
2241
+ },
2242
+ {
2243
+ "moduleName": "./src/util/onSubmitVerification.ts"
2244
+ },
2245
+ {
2246
+ "moduleName": "./src/util/onSubmitSettings.ts"
2247
+ }
2248
+ ]
2249
+ },
2250
+ {
2251
+ "id": "./src/theme/default/assets/icons/logout.svg",
2252
+ "name": "./src/theme/default/assets/icons/logout.svg",
2253
+ "reasons": [
2254
+ {
2255
+ "moduleName": "./src/theme/default/components/ui/user-menu.tsx"
2256
+ }
2257
+ ]
2258
+ },
2259
+ {
2260
+ "id": "./src/theme/default/assets/icons/settings.svg",
2261
+ "name": "./src/theme/default/assets/icons/settings.svg",
2262
+ "reasons": [
2263
+ {
2264
+ "moduleName": "./src/theme/default/components/ui/user-menu.tsx"
2265
+ }
2266
+ ]
2267
+ },
2268
+ {
2269
+ "id": "./src/theme/default/utils/user.ts",
2270
+ "name": "./src/theme/default/utils/user.ts",
2271
+ "reasons": [
2272
+ {
2273
+ "moduleName": "./src/theme/default/components/ui/user-menu.tsx"
2274
+ }
2275
+ ]
2276
+ },
2277
+ {
2278
+ "id": "./src/theme/default/components/ui/dropdown-menu.tsx",
2279
+ "name": "./src/theme/default/components/ui/dropdown-menu.tsx",
2280
+ "reasons": [
2281
+ {
2282
+ "moduleName": "./src/theme/default/components/ui/user-menu.tsx"
2283
+ }
2284
+ ]
2285
+ },
2286
+ {
2287
+ "id": "./src/theme/default/components/ui/user-avater.tsx",
2288
+ "name": "./src/theme/default/components/ui/user-avater.tsx",
2289
+ "reasons": [
2290
+ {
2291
+ "moduleName": "./src/theme/default/components/ui/user-menu.tsx"
2292
+ }
2293
+ ]
2294
+ },
2295
+ {
2296
+ "id": "./src/util/internal.ts",
2297
+ "name": "./src/util/internal.ts",
2298
+ "reasons": [
2299
+ {
2300
+ "moduleName": "./src/util/onSubmitLogin.ts"
2301
+ },
2302
+ {
2303
+ "moduleName": "./src/util/onSubmitRegistration.ts"
2304
+ },
2305
+ {
2306
+ "moduleName": "./src/util/onSubmitRecovery.ts"
2307
+ },
2308
+ {
2309
+ "moduleName": "./src/util/onSubmitVerification.ts"
2310
+ },
2311
+ {
2312
+ "moduleName": "./src/util/onSubmitSettings.ts"
2313
+ }
2314
+ ]
2315
+ },
2316
+ {
2317
+ "id": "./src/client/frontendClient.ts",
2318
+ "name": "./src/client/frontendClient.ts",
2319
+ "reasons": [
2320
+ {
2321
+ "moduleName": "./src/client/session-provider.tsx"
2322
+ }
2323
+ ]
2324
+ },
2325
+ {
2326
+ "id": "./src/theme/default/assets/icons/user.svg",
2327
+ "name": "./src/theme/default/assets/icons/user.svg",
2328
+ "reasons": [
2329
+ {
2330
+ "moduleName": "./src/theme/default/components/ui/user-avater.tsx"
2331
+ }
2332
+ ]
2333
+ },
2334
+ {
2335
+ "id": "./src/client/config.ts",
2336
+ "name": "./src/client/config.ts",
2337
+ "reasons": [
2338
+ {
2339
+ "moduleName": "./src/client/frontendClient.ts"
2340
+ }
2341
+ ]
2342
+ }
2343
+ ]
2344
+ }