@ory/elements-react 1.0.0-next.25 → 1.0.0-next.28

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 (182) 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 +40 -0
  53. package/dist/index.d.mts +3 -3
  54. package/dist/index.d.ts +3 -3
  55. package/dist/index.js +2105 -2053
  56. package/dist/index.js.map +1 -1
  57. package/dist/index.mjs +2105 -2053
  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 +29 -14
  62. package/dist/theme/default/index.js.map +1 -1
  63. package/dist/theme/default/index.mjs +29 -14
  64. package/dist/theme/default/index.mjs.map +1 -1
  65. package/dist/theme/default/tailwind/defaults.d.mts +737 -0
  66. package/dist/theme/default/tailwind/defaults.d.ts +737 -0
  67. package/dist/theme/default/tailwind/defaults.js +219 -0
  68. package/dist/theme/default/tailwind/defaults.js.map +1 -0
  69. package/dist/theme/default/tailwind/defaults.mjs +196 -0
  70. package/dist/theme/default/tailwind/defaults.mjs.map +1 -0
  71. package/package.json +7 -2
  72. package/stories/components/login/1fa/all.stories.ts +46 -0
  73. package/stories/components/login/1fa/code.stories.ts +64 -0
  74. package/stories/components/login/1fa/custom.stories.tsx +72 -0
  75. package/stories/components/login/1fa/none.stories.tsx +28 -0
  76. package/stories/components/login/1fa/oidc.stories.tsx +143 -0
  77. package/stories/components/login/1fa/passkey.stories.ts +28 -0
  78. package/stories/components/login/1fa/password.stories.ts +46 -0
  79. package/stories/components/login/1fa/webauthn.stories.ts +46 -0
  80. package/stories/components/registration/one-step/all-methods.stories.ts +37 -0
  81. package/stories/components/registration/one-step/password.stories.ts +37 -0
  82. package/stories/components/registration/one-step/webauthn.stories.ts +28 -0
  83. package/stories/components/registration/two-step/all-methods.stories.ts +55 -0
  84. package/stories/components/registration/two-step/password.stories.ts +55 -0
  85. package/stories/components/settings/all.stories.ts +46 -0
  86. package/stories/components/settings/oidc.stories.ts +28 -0
  87. package/stories/components/settings/passkey.stories.ts +28 -0
  88. package/stories/components/settings/webauthn.stories.ts +28 -0
  89. package/stories/pages/error.tsx +29 -0
  90. package/stories/utils.ts +20 -0
  91. package/storybook-static/InterVariable.woff2 +0 -0
  92. package/storybook-static/assets/Color-ERTF36HU-BdkKyVuV.js +1 -0
  93. package/storybook-static/assets/DocsRenderer-CFRXHY34-YqKt61zP.js +595 -0
  94. package/storybook-static/assets/all-methods.stories-B-rqPBX2.js +11 -0
  95. package/storybook-static/assets/all-methods.stories-CmMlhzsx.js +21 -0
  96. package/storybook-static/assets/all.stories-CtQ0yCQi.js +16 -0
  97. package/storybook-static/assets/all.stories-DgIVCzcZ.js +16 -0
  98. package/storybook-static/assets/chunk-H6MOWX77-DTQOW814.js +1 -0
  99. package/storybook-static/assets/code.stories-BbEryDcA.js +26 -0
  100. package/storybook-static/assets/custom.stories-DH2zHar9.js +6 -0
  101. package/storybook-static/assets/entry-preview-CcFGVifh.js +10 -0
  102. package/storybook-static/assets/entry-preview-docs-CyY-8bLe.js +54 -0
  103. package/storybook-static/assets/iframe-C5GAfuxh.js +2 -0
  104. package/storybook-static/assets/index-BVoBHvaS.js +8 -0
  105. package/storybook-static/assets/index-CfOt2XX2.js +24 -0
  106. package/storybook-static/assets/index-DPRSEdy-.js +1 -0
  107. package/storybook-static/assets/index-DrFu-skq.js +6 -0
  108. package/storybook-static/assets/index-FeUjBnvO.js +1 -0
  109. package/storybook-static/assets/index-uubelm5h.js +9 -0
  110. package/storybook-static/assets/initial-form-DWp_1F-f.js +1 -0
  111. package/storybook-static/assets/jsx-runtime-QvZ8i92b.js +9 -0
  112. package/storybook-static/assets/none.stories-TAeRhzd5.js +6 -0
  113. package/storybook-static/assets/oidc.stories-CniWBy7t.js +58 -0
  114. package/storybook-static/assets/oidc.stories-jhWzAyoQ.js +6 -0
  115. package/storybook-static/assets/passkey.stories-CBtjoVSN.js +6 -0
  116. package/storybook-static/assets/passkey.stories-CQU2Xw_t.js +6 -0
  117. package/storybook-static/assets/password.stories-0s6cDl0o.js +11 -0
  118. package/storybook-static/assets/password.stories-B2Wtckz_.js +16 -0
  119. package/storybook-static/assets/password.stories-DX0gkWjH.js +21 -0
  120. package/storybook-static/assets/preview-BBWR9nbA.js +1 -0
  121. package/storybook-static/assets/preview-BPAmP-pY.js +2 -0
  122. package/storybook-static/assets/preview-BWzBA1C2.js +396 -0
  123. package/storybook-static/assets/preview-BXtF2ySE.js +234 -0
  124. package/storybook-static/assets/preview-Cur_8nCX.css +1 -0
  125. package/storybook-static/assets/preview-D77C14du.js +34 -0
  126. package/storybook-static/assets/preview-DCjDUH0w.js +27 -0
  127. package/storybook-static/assets/preview-DFmD0pui.js +1 -0
  128. package/storybook-static/assets/preview-DGUiP6tS.js +7 -0
  129. package/storybook-static/assets/preview-aVwhiz9X.js +1 -0
  130. package/storybook-static/assets/react-18-CtsMCmcS.js +1 -0
  131. package/storybook-static/assets/settings-BqEFC2-V.css +1 -0
  132. package/storybook-static/assets/settings-Bx4osEmB.js +2304 -0
  133. package/storybook-static/assets/webauthn.stories-BzodmV0c.js +6 -0
  134. package/storybook-static/assets/webauthn.stories-DglGm7Ys.js +6 -0
  135. package/storybook-static/assets/webauthn.stories-G9E76Wjj.js +16 -0
  136. package/storybook-static/favicon.svg +1 -0
  137. package/storybook-static/iframe.html +654 -0
  138. package/storybook-static/index.html +173 -0
  139. package/storybook-static/index.json +1 -0
  140. package/storybook-static/inter.css +8 -0
  141. package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  142. package/storybook-static/nunito-sans-bold.woff2 +0 -0
  143. package/storybook-static/nunito-sans-italic.woff2 +0 -0
  144. package/storybook-static/nunito-sans-regular.woff2 +0 -0
  145. package/storybook-static/preview-stats.json +2344 -0
  146. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +3 -0
  147. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
  148. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +12 -0
  149. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
  150. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +394 -0
  151. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +0 -0
  152. package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js +3 -0
  153. package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.LEGAL.txt +0 -0
  154. package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js +3 -0
  155. package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.LEGAL.txt +0 -0
  156. package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js +3 -0
  157. package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.LEGAL.txt +0 -0
  158. package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js +3 -0
  159. package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.LEGAL.txt +0 -0
  160. package/storybook-static/sb-addons/interactions-8/manager-bundle.js +211 -0
  161. package/storybook-static/sb-addons/interactions-8/manager-bundle.js.LEGAL.txt +0 -0
  162. package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +3 -0
  163. package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js.LEGAL.txt +0 -0
  164. package/storybook-static/sb-common-assets/favicon.svg +1 -0
  165. package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  166. package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  167. package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  168. package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  169. package/storybook-static/sb-manager/globals-module-info.js +1006 -0
  170. package/storybook-static/sb-manager/globals-runtime.js +54400 -0
  171. package/storybook-static/sb-manager/globals.js +48 -0
  172. package/storybook-static/sb-manager/runtime.js +12089 -0
  173. package/storybook-static/sb-preview/globals.js +33 -0
  174. package/storybook-static/sb-preview/runtime.js +9498 -0
  175. package/tailwind/defaults.ts +34 -0
  176. package/tailwind/generated/README.md +2 -0
  177. package/tailwind/generated/default-variables.css +216 -0
  178. package/tailwind/generated/variables-processed.json +161 -0
  179. package/tsconfig.json +2 -3
  180. package/tsconfig.runtime.json +4 -0
  181. package/tsconfig.test.json +0 -9
  182. package/variables-processed.json +0 -391
@@ -0,0 +1,242 @@
1
+ {
2
+ "id": "2ee62ed3-9530-431c-b174-3570ed90af3c",
3
+ "type": "browser",
4
+ "expires_at": "2024-10-29T10:45:39.474943Z",
5
+ "issued_at": "2024-10-29T09:45:39.474943Z",
6
+ "request_url": "https://inspiring-buck-m6ru2ompf4.projects.oryapis:8080/self-service/registration/browser",
7
+ "ui": {
8
+ "action": "https://inspiring-buck-m6ru2ompf4.projects.oryapis:8080/self-service/registration?flow=2ee62ed3-9530-431c-b174-3570ed90af3c",
9
+ "method": "POST",
10
+ "nodes": [
11
+ {
12
+ "type": "input",
13
+ "group": "webauthn",
14
+ "attributes": {
15
+ "name": "webauthn_register_displayname",
16
+ "type": "text",
17
+ "value": "",
18
+ "disabled": false,
19
+ "node_type": "input"
20
+ },
21
+ "messages": [],
22
+ "meta": {
23
+ "label": {
24
+ "id": 1050013,
25
+ "text": "Name of the security key",
26
+ "type": "info"
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "type": "input",
32
+ "group": "webauthn",
33
+ "attributes": {
34
+ "name": "webauthn_register",
35
+ "type": "hidden",
36
+ "value": "",
37
+ "disabled": false,
38
+ "node_type": "input"
39
+ },
40
+ "messages": [],
41
+ "meta": {}
42
+ },
43
+ {
44
+ "type": "input",
45
+ "group": "webauthn",
46
+ "attributes": {
47
+ "name": "webauthn_register_trigger",
48
+ "type": "button",
49
+ "value": "{\"publicKey\":{\"rp\":{\"name\":\"ory-cy-e2e-da2f162d-af61-42dd-90dc-e3fcfa7c84a0-J5WorSyxZtiGkdy6-2-tests/elements/everything.ts\\u003eGenerate all method API responses for Ory Elements Storybook\\u003etwo-step\\u003etwo step registration\",\"id\":\"inspiring-buck-m6ru2ompf4.projects.oryapis\"},\"user\":{\"name\":\"ory-cy-e2e-da2f162d-af61-42dd-90dc-e3fcfa7c84a0-J5WorSyxZtiGkdy6-2-tests/elements/everything.ts\\u003eGenerate all method API responses for Ory Elements Storybook\\u003etwo-step\\u003etwo step registration\",\"displayName\":\"ory-cy-e2e-da2f162d-af61-42dd-90dc-e3fcfa7c84a0-J5WorSyxZtiGkdy6-2-tests/elements/everything.ts\\u003eGenerate all method API responses for Ory Elements Storybook\\u003etwo-step\\u003etwo step registration\",\"id\":\"bgtAmsoWR2mQGSIUTZwy7A\"},\"challenge\":\"2G9w1gEl_nKKSCmcLuEHdqIhNP7OaXsTEzGK-MFy_v4\",\"pubKeyCredParams\":[{\"type\":\"public-key\",\"alg\":-7},{\"type\":\"public-key\",\"alg\":-35},{\"type\":\"public-key\",\"alg\":-36},{\"type\":\"public-key\",\"alg\":-257},{\"type\":\"public-key\",\"alg\":-258},{\"type\":\"public-key\",\"alg\":-259},{\"type\":\"public-key\",\"alg\":-37},{\"type\":\"public-key\",\"alg\":-38},{\"type\":\"public-key\",\"alg\":-39},{\"type\":\"public-key\",\"alg\":-8}],\"timeout\":120000,\"authenticatorSelection\":{\"requireResidentKey\":false,\"userVerification\":\"discouraged\"}}}",
50
+ "disabled": false,
51
+ "onclick": "window.oryWebAuthnRegistration({\"publicKey\":{\"rp\":{\"name\":\"ory-cy-e2e-da2f162d-af61-42dd-90dc-e3fcfa7c84a0-J5WorSyxZtiGkdy6-2-tests/elements/everything.ts\\u003eGenerate all method API responses for Ory Elements Storybook\\u003etwo-step\\u003etwo step registration\",\"id\":\"inspiring-buck-m6ru2ompf4.projects.oryapis\"},\"user\":{\"name\":\"ory-cy-e2e-da2f162d-af61-42dd-90dc-e3fcfa7c84a0-J5WorSyxZtiGkdy6-2-tests/elements/everything.ts\\u003eGenerate all method API responses for Ory Elements Storybook\\u003etwo-step\\u003etwo step registration\",\"displayName\":\"ory-cy-e2e-da2f162d-af61-42dd-90dc-e3fcfa7c84a0-J5WorSyxZtiGkdy6-2-tests/elements/everything.ts\\u003eGenerate all method API responses for Ory Elements Storybook\\u003etwo-step\\u003etwo step registration\",\"id\":\"bgtAmsoWR2mQGSIUTZwy7A\"},\"challenge\":\"2G9w1gEl_nKKSCmcLuEHdqIhNP7OaXsTEzGK-MFy_v4\",\"pubKeyCredParams\":[{\"type\":\"public-key\",\"alg\":-7},{\"type\":\"public-key\",\"alg\":-35},{\"type\":\"public-key\",\"alg\":-36},{\"type\":\"public-key\",\"alg\":-257},{\"type\":\"public-key\",\"alg\":-258},{\"type\":\"public-key\",\"alg\":-259},{\"type\":\"public-key\",\"alg\":-37},{\"type\":\"public-key\",\"alg\":-38},{\"type\":\"public-key\",\"alg\":-39},{\"type\":\"public-key\",\"alg\":-8}],\"timeout\":120000,\"authenticatorSelection\":{\"requireResidentKey\":false,\"userVerification\":\"discouraged\"}}})",
52
+ "onclickTrigger": "oryWebAuthnRegistration",
53
+ "node_type": "input"
54
+ },
55
+ "messages": [],
56
+ "meta": {
57
+ "label": {
58
+ "id": 1040004,
59
+ "text": "Sign up with security key",
60
+ "type": "info"
61
+ }
62
+ }
63
+ },
64
+ {
65
+ "type": "script",
66
+ "group": "webauthn",
67
+ "attributes": {
68
+ "src": "https://inspiring-buck-m6ru2ompf4.projects.oryapis:8080/.well-known/ory/webauthn.js",
69
+ "async": true,
70
+ "referrerpolicy": "no-referrer",
71
+ "crossorigin": "anonymous",
72
+ "integrity": "sha512-MDzBlwh32rr+eus2Yf1BetIj94m+ULLbewYDulbZjczycs81klNed+qQWG2yi2N03KV5uZlRJJtWdV2x9JNHzQ==",
73
+ "type": "text/javascript",
74
+ "id": "webauthn_script",
75
+ "nonce": "e4568219-574f-4dff-8d2d-4e9bf9bb8a2b",
76
+ "node_type": "script"
77
+ },
78
+ "messages": [],
79
+ "meta": {}
80
+ },
81
+ {
82
+ "type": "input",
83
+ "group": "passkey",
84
+ "attributes": {
85
+ "name": "passkey_register",
86
+ "type": "hidden",
87
+ "disabled": false,
88
+ "node_type": "input"
89
+ },
90
+ "messages": [],
91
+ "meta": {}
92
+ },
93
+ {
94
+ "type": "input",
95
+ "group": "passkey",
96
+ "attributes": {
97
+ "name": "passkey_register_trigger",
98
+ "type": "button",
99
+ "disabled": false,
100
+ "onclick": "window.oryPasskeyRegistration()",
101
+ "onclickTrigger": "oryPasskeyRegistration",
102
+ "node_type": "input"
103
+ },
104
+ "messages": [],
105
+ "meta": {
106
+ "label": {
107
+ "id": 1040007,
108
+ "text": "Sign up with passkey",
109
+ "type": "info"
110
+ }
111
+ }
112
+ },
113
+ {
114
+ "type": "input",
115
+ "group": "passkey",
116
+ "attributes": {
117
+ "name": "passkey_create_data",
118
+ "type": "hidden",
119
+ "value": "{\"credentialOptions\":{\"publicKey\":{\"rp\":{\"name\":\"ory-cy-e2e-da2f162d-af61-42dd-90dc-e3fcfa7c84a0-J5WorSyxZtiGkdy6-2-tests/elements/everything.ts\\u003eGenerate all method API responses for Ory Elements Storybook\\u003etwo-step\\u003etwo step registration\",\"id\":\"inspiring-buck-m6ru2ompf4.projects.oryapis\"},\"user\":{\"name\":\"ory-cy-e2e-da2f162d-af61-42dd-90dc-e3fcfa7c84a0-J5WorSyxZtiGkdy6-2-tests/elements/everything.ts\\u003eGenerate all method API responses for Ory Elements Storybook\\u003etwo-step\\u003etwo step registration\",\"displayName\":\"ory-cy-e2e-da2f162d-af61-42dd-90dc-e3fcfa7c84a0-J5WorSyxZtiGkdy6-2-tests/elements/everything.ts\\u003eGenerate all method API responses for Ory Elements Storybook\\u003etwo-step\\u003etwo step registration\",\"id\":\"V1NSSTg0bFR1b05mMzVQSU9SU2dBenFHRnJZd1lXTHVURXlzb1NWWHBZcFBqTks5dXdja3JXRUNabEZESkY3ZQ\"},\"challenge\":\"Lza8qeMURMd7_VlbarfHmA_Rb14SCWMijcF_M2ht99k\",\"pubKeyCredParams\":[{\"type\":\"public-key\",\"alg\":-7},{\"type\":\"public-key\",\"alg\":-35},{\"type\":\"public-key\",\"alg\":-36},{\"type\":\"public-key\",\"alg\":-257},{\"type\":\"public-key\",\"alg\":-258},{\"type\":\"public-key\",\"alg\":-259},{\"type\":\"public-key\",\"alg\":-37},{\"type\":\"public-key\",\"alg\":-38},{\"type\":\"public-key\",\"alg\":-39},{\"type\":\"public-key\",\"alg\":-8}],\"timeout\":300000,\"authenticatorSelection\":{\"authenticatorAttachment\":\"platform\",\"requireResidentKey\":true,\"userVerification\":\"preferred\"}}},\"displayNameFieldName\":\"traits.email\"}",
120
+ "disabled": false,
121
+ "node_type": "input"
122
+ },
123
+ "messages": [],
124
+ "meta": {}
125
+ },
126
+ {
127
+ "type": "input",
128
+ "group": "code",
129
+ "attributes": {
130
+ "name": "method",
131
+ "type": "submit",
132
+ "value": "code",
133
+ "disabled": false,
134
+ "node_type": "input"
135
+ },
136
+ "messages": [],
137
+ "meta": {
138
+ "label": {
139
+ "id": 1040006,
140
+ "text": "Send sign up code",
141
+ "type": "info"
142
+ }
143
+ }
144
+ },
145
+ {
146
+ "type": "input",
147
+ "group": "password",
148
+ "attributes": {
149
+ "name": "password",
150
+ "type": "password",
151
+ "required": true,
152
+ "autocomplete": "new-password",
153
+ "disabled": false,
154
+ "node_type": "input"
155
+ },
156
+ "messages": [],
157
+ "meta": {
158
+ "label": {
159
+ "id": 1070001,
160
+ "text": "Password",
161
+ "type": "info"
162
+ }
163
+ }
164
+ },
165
+ {
166
+ "type": "input",
167
+ "group": "password",
168
+ "attributes": {
169
+ "name": "method",
170
+ "type": "submit",
171
+ "value": "password",
172
+ "disabled": false,
173
+ "node_type": "input"
174
+ },
175
+ "messages": [],
176
+ "meta": {
177
+ "label": {
178
+ "id": 1040001,
179
+ "text": "Sign up",
180
+ "type": "info"
181
+ }
182
+ }
183
+ },
184
+ {
185
+ "type": "input",
186
+ "group": "profile",
187
+ "attributes": {
188
+ "name": "screen",
189
+ "type": "submit",
190
+ "value": "previous",
191
+ "disabled": false,
192
+ "node_type": "input"
193
+ },
194
+ "messages": [],
195
+ "meta": {
196
+ "label": {
197
+ "id": 1040008,
198
+ "text": "Back",
199
+ "type": "info"
200
+ }
201
+ }
202
+ },
203
+ {
204
+ "type": "input",
205
+ "group": "default",
206
+ "attributes": {
207
+ "name": "traits.email",
208
+ "type": "hidden",
209
+ "value": "dev+orycye2eda2f162daf6142dd0.1s0bea5cyx5h0.3nwg7tmi5aj@ory.dev",
210
+ "disabled": false,
211
+ "node_type": "input"
212
+ },
213
+ "messages": [],
214
+ "meta": {}
215
+ },
216
+ {
217
+ "type": "input",
218
+ "group": "default",
219
+ "attributes": {
220
+ "name": "csrf_token",
221
+ "type": "hidden",
222
+ "value": "apZGQQWgrKAECULEOItFA97C5VXffSMxDW0KRTNhbllS7O/rmFW1gabqh0Zl3t8yzVOtS2kv2AR4p1Y9+/P/Jg==",
223
+ "required": true,
224
+ "disabled": false,
225
+ "node_type": "input"
226
+ },
227
+ "messages": [],
228
+ "meta": {}
229
+ }
230
+ ],
231
+ "messages": [
232
+ {
233
+ "id": 1040009,
234
+ "text": "Please choose a credential to authenticate yourself with.",
235
+ "type": "info"
236
+ }
237
+ ]
238
+ },
239
+ "organization_id": null,
240
+ "transient_payload": {},
241
+ "state": "choose_method"
242
+ }
@@ -0,0 +1,180 @@
1
+ {
2
+ "id": "2ee62ed3-9530-431c-b174-3570ed90af3c",
3
+ "type": "browser",
4
+ "expires_at": "2024-10-29T10:45:39.474943093Z",
5
+ "issued_at": "2024-10-29T09:45:39.474943093Z",
6
+ "request_url": "https://inspiring-buck-m6ru2ompf4.projects.oryapis:8080/self-service/registration/browser",
7
+ "ui": {
8
+ "action": "https://inspiring-buck-m6ru2ompf4.projects.oryapis:8080/self-service/registration?flow=2ee62ed3-9530-431c-b174-3570ed90af3c",
9
+ "method": "POST",
10
+ "nodes": [
11
+ {
12
+ "type": "input",
13
+ "group": "oidc",
14
+ "attributes": {
15
+ "name": "provider",
16
+ "type": "submit",
17
+ "value": "github",
18
+ "disabled": false,
19
+ "node_type": "input"
20
+ },
21
+ "messages": [],
22
+ "meta": {
23
+ "label": {
24
+ "id": 1040002,
25
+ "text": "Sign up with GitHub",
26
+ "type": "info",
27
+ "context": {
28
+ "provider": "GitHub",
29
+ "provider_id": "github"
30
+ }
31
+ }
32
+ }
33
+ },
34
+ {
35
+ "type": "input",
36
+ "group": "oidc",
37
+ "attributes": {
38
+ "name": "provider",
39
+ "type": "submit",
40
+ "value": "google",
41
+ "disabled": false,
42
+ "node_type": "input"
43
+ },
44
+ "messages": [],
45
+ "meta": {
46
+ "label": {
47
+ "id": 1040002,
48
+ "text": "Sign up with Google",
49
+ "type": "info",
50
+ "context": {
51
+ "provider": "Google",
52
+ "provider_id": "google"
53
+ }
54
+ }
55
+ }
56
+ },
57
+ {
58
+ "type": "input",
59
+ "group": "default",
60
+ "attributes": {
61
+ "name": "traits.email",
62
+ "type": "email",
63
+ "required": true,
64
+ "autocomplete": "email",
65
+ "disabled": false,
66
+ "node_type": "input"
67
+ },
68
+ "messages": [],
69
+ "meta": {
70
+ "label": {
71
+ "id": 1070002,
72
+ "text": "E-Mail",
73
+ "type": "info",
74
+ "context": {
75
+ "title": "E-Mail"
76
+ }
77
+ }
78
+ }
79
+ },
80
+ {
81
+ "type": "input",
82
+ "group": "default",
83
+ "attributes": {
84
+ "name": "traits.tos",
85
+ "type": "checkbox",
86
+ "disabled": false,
87
+ "node_type": "input"
88
+ },
89
+ "messages": [],
90
+ "meta": {
91
+ "label": {
92
+ "id": 1070002,
93
+ "text": "Accept the terms of service",
94
+ "type": "info",
95
+ "context": {
96
+ "title": "Accept the terms of service"
97
+ }
98
+ }
99
+ }
100
+ },
101
+ {
102
+ "type": "input",
103
+ "group": "default",
104
+ "attributes": {
105
+ "name": "traits.phone",
106
+ "type": "text",
107
+ "disabled": false,
108
+ "node_type": "input"
109
+ },
110
+ "messages": [],
111
+ "meta": {
112
+ "label": {
113
+ "id": 1070002,
114
+ "text": "Phone Number",
115
+ "type": "info",
116
+ "context": {
117
+ "title": "Phone Number"
118
+ }
119
+ }
120
+ }
121
+ },
122
+ {
123
+ "type": "input",
124
+ "group": "default",
125
+ "attributes": {
126
+ "name": "traits.nested.name",
127
+ "type": "text",
128
+ "disabled": false,
129
+ "node_type": "input"
130
+ },
131
+ "messages": [],
132
+ "meta": {
133
+ "label": {
134
+ "id": 1070002,
135
+ "text": "Name",
136
+ "type": "info",
137
+ "context": {
138
+ "title": "Name"
139
+ }
140
+ }
141
+ }
142
+ },
143
+ {
144
+ "type": "input",
145
+ "group": "default",
146
+ "attributes": {
147
+ "name": "csrf_token",
148
+ "type": "hidden",
149
+ "value": "QXWBIklgcs/KOac7iEC2erEXNRyqtQIzVXjElaJS3ah5DyiI1JVr7mjaYrnVFSxLooZ9Ahzn+QYgspjtasBM1w==",
150
+ "required": true,
151
+ "disabled": false,
152
+ "node_type": "input"
153
+ },
154
+ "messages": [],
155
+ "meta": {}
156
+ },
157
+ {
158
+ "type": "input",
159
+ "group": "profile",
160
+ "attributes": {
161
+ "name": "method",
162
+ "type": "submit",
163
+ "value": "profile",
164
+ "disabled": false,
165
+ "node_type": "input"
166
+ },
167
+ "messages": [],
168
+ "meta": {
169
+ "label": {
170
+ "id": 1040001,
171
+ "text": "Sign up",
172
+ "type": "info"
173
+ }
174
+ }
175
+ }
176
+ ]
177
+ },
178
+ "organization_id": null,
179
+ "state": "choose_method"
180
+ }
@@ -0,0 +1,189 @@
1
+ {
2
+ "id": "2ee62ed3-9530-431c-b174-3570ed90af3c",
3
+ "type": "browser",
4
+ "expires_at": "2024-10-29T10:45:39.474943Z",
5
+ "issued_at": "2024-10-29T09:45:39.474943Z",
6
+ "request_url": "https://inspiring-buck-m6ru2ompf4.projects.oryapis:8080/self-service/registration/browser",
7
+ "ui": {
8
+ "action": "https://inspiring-buck-m6ru2ompf4.projects.oryapis:8080/self-service/registration?flow=2ee62ed3-9530-431c-b174-3570ed90af3c",
9
+ "method": "POST",
10
+ "nodes": [
11
+ {
12
+ "type": "input",
13
+ "group": "oidc",
14
+ "attributes": {
15
+ "name": "provider",
16
+ "type": "submit",
17
+ "value": "github",
18
+ "disabled": false,
19
+ "node_type": "input"
20
+ },
21
+ "messages": [],
22
+ "meta": {
23
+ "label": {
24
+ "id": 1040002,
25
+ "text": "Sign up with GitHub",
26
+ "type": "info",
27
+ "context": {
28
+ "provider": "GitHub",
29
+ "provider_id": "github"
30
+ }
31
+ }
32
+ }
33
+ },
34
+ {
35
+ "type": "input",
36
+ "group": "oidc",
37
+ "attributes": {
38
+ "name": "provider",
39
+ "type": "submit",
40
+ "value": "google",
41
+ "disabled": false,
42
+ "node_type": "input"
43
+ },
44
+ "messages": [],
45
+ "meta": {
46
+ "label": {
47
+ "id": 1040002,
48
+ "text": "Sign up with Google",
49
+ "type": "info",
50
+ "context": {
51
+ "provider": "Google",
52
+ "provider_id": "google"
53
+ }
54
+ }
55
+ }
56
+ },
57
+ {
58
+ "type": "input",
59
+ "group": "default",
60
+ "attributes": {
61
+ "name": "traits.email",
62
+ "type": "email",
63
+ "required": true,
64
+ "autocomplete": "email",
65
+ "disabled": false,
66
+ "node_type": "input"
67
+ },
68
+ "messages": [
69
+ {
70
+ "id": 4000002,
71
+ "text": "Property email is missing.",
72
+ "type": "error",
73
+ "context": {
74
+ "property": "email"
75
+ }
76
+ }
77
+ ],
78
+ "meta": {
79
+ "label": {
80
+ "id": 1070002,
81
+ "text": "E-Mail",
82
+ "type": "info",
83
+ "context": {
84
+ "title": "E-Mail"
85
+ }
86
+ }
87
+ }
88
+ },
89
+ {
90
+ "type": "input",
91
+ "group": "default",
92
+ "attributes": {
93
+ "name": "traits.tos",
94
+ "type": "checkbox",
95
+ "disabled": false,
96
+ "node_type": "input"
97
+ },
98
+ "messages": [],
99
+ "meta": {
100
+ "label": {
101
+ "id": 1070002,
102
+ "text": "Accept the terms of service",
103
+ "type": "info",
104
+ "context": {
105
+ "title": "Accept the terms of service"
106
+ }
107
+ }
108
+ }
109
+ },
110
+ {
111
+ "type": "input",
112
+ "group": "default",
113
+ "attributes": {
114
+ "name": "traits.phone",
115
+ "type": "text",
116
+ "disabled": false,
117
+ "node_type": "input"
118
+ },
119
+ "messages": [],
120
+ "meta": {
121
+ "label": {
122
+ "id": 1070002,
123
+ "text": "Phone Number",
124
+ "type": "info",
125
+ "context": {
126
+ "title": "Phone Number"
127
+ }
128
+ }
129
+ }
130
+ },
131
+ {
132
+ "type": "input",
133
+ "group": "default",
134
+ "attributes": {
135
+ "name": "traits.nested.name",
136
+ "type": "text",
137
+ "disabled": false,
138
+ "node_type": "input"
139
+ },
140
+ "messages": [],
141
+ "meta": {
142
+ "label": {
143
+ "id": 1070002,
144
+ "text": "Name",
145
+ "type": "info",
146
+ "context": {
147
+ "title": "Name"
148
+ }
149
+ }
150
+ }
151
+ },
152
+ {
153
+ "type": "input",
154
+ "group": "default",
155
+ "attributes": {
156
+ "name": "csrf_token",
157
+ "type": "hidden",
158
+ "value": "4gO0cvwiVVNXxcMWr8xX36zYQIwF8DzAAtZeD3mBiqjaeR3YYddMcvUmBpTymc3uv0kIkrOix/V3HAJ3sRMb1w==",
159
+ "required": true,
160
+ "disabled": false,
161
+ "node_type": "input"
162
+ },
163
+ "messages": [],
164
+ "meta": {}
165
+ },
166
+ {
167
+ "type": "input",
168
+ "group": "profile",
169
+ "attributes": {
170
+ "name": "method",
171
+ "type": "submit",
172
+ "value": "profile",
173
+ "disabled": false,
174
+ "node_type": "input"
175
+ },
176
+ "messages": [],
177
+ "meta": {
178
+ "label": {
179
+ "id": 1040001,
180
+ "text": "Sign up",
181
+ "type": "info"
182
+ }
183
+ }
184
+ }
185
+ ]
186
+ },
187
+ "organization_id": null,
188
+ "state": "choose_method"
189
+ }