@ory/elements-react 1.0.0-next.11 → 1.0.0-next.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/api-report/elements-react-theme.api.md +1 -0
- package/api-report/elements-react.api.json +710 -53
- package/api-report/elements-react.api.md +86 -3
- package/api-report/temp/elements-react-theme.api.md +1 -0
- package/api-report/temp/elements-react.api.md +86 -3
- package/dist/index.d.mts +96 -4
- package/dist/index.d.ts +96 -4
- package/dist/index.js +697 -124
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +695 -125
- package/dist/index.mjs.map +1 -1
- package/dist/theme/default/index.css +292 -29
- package/dist/theme/default/index.css.map +1 -1
- package/dist/theme/default/index.js +993 -249
- package/dist/theme/default/index.js.map +1 -1
- package/dist/theme/default/index.mjs +968 -214
- package/dist/theme/default/index.mjs.map +1 -1
- package/jest.config.ts +4 -3
- package/package.json +9 -7
- package/tailwind.config.ts +6 -1
- package/tsconfig.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
## 1.0.0-next.12 (2024-10-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🚀 Features
|
|
5
|
+
|
|
6
|
+
- add elements v1 packages
|
|
7
|
+
|
|
8
|
+
- add useSession hook
|
|
9
|
+
|
|
10
|
+
- add page header component with user menu
|
|
11
|
+
|
|
12
|
+
- support links in checkbox/boolean nodes
|
|
13
|
+
|
|
14
|
+
- add settings flow components
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### 🩹 Fixes
|
|
18
|
+
|
|
19
|
+
- use correct node to detect two step registration
|
|
20
|
+
|
|
21
|
+
- use translations in more missing places
|
|
22
|
+
|
|
23
|
+
- short-circuit code login on two step card
|
|
24
|
+
|
|
25
|
+
- duplicate resend button on recovery & verification
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### ❤️ Thank You
|
|
29
|
+
|
|
30
|
+
- Jonas Hungershausen
|
|
31
|
+
- Miłosz
|
|
32
|
+
|
|
1
33
|
## 1.0.0-next.11 (2024-10-22)
|
|
2
34
|
|
|
3
35
|
Breaking Changes: This update includes breaking changes to the naming of some variables and functions. Please refer to [Advisory: ory elements‐react upgrade guide to v1.0.0‐next.11](https://github.com/ory/elements/wiki/Advisory:-ory-elements%E2%80%90react-upgrade-guide-to-v1.0.0%E2%80%90next.11) for more information.
|
|
@@ -25,6 +25,7 @@ import { UiNodeImageAttributes } from '@ory/client-fetch';
|
|
|
25
25
|
import { UiNodeInputAttributes } from '@ory/client-fetch';
|
|
26
26
|
import { UiNodeTextAttributes } from '@ory/client-fetch';
|
|
27
27
|
import { UiText } from '@ory/client-fetch';
|
|
28
|
+
import { VariantProps } from 'class-variance-authority';
|
|
28
29
|
import { VerificationFlow } from '@ory/client-fetch';
|
|
29
30
|
|
|
30
31
|
// Warning: (ae-forgotten-export) The symbol "OryCardRootProps" needs to be exported by the entry point index.d.ts
|