Releases: ory/elements
v0.0.1-beta.10
v0.0.1-beta.9
What's Changed
Full Changelog: v0.0.1-beta.8...v0.0.1-beta.9
v0.0.1-beta.8
v0.0.1-beta.7
What's Changed
- feat: add option to disable user signup on login flow page by @matthiastz in #109
- feat: add href handler for ButtonLink component by @DASPRiD in #103
- chore: bump to @ory/client v1.1.39 by @Benehiko in #111
- chore: bump react, vanilla-extract and express package version by @Benehiko in #114
- feat: associate all inputs with labels via unique IDs by @LBBO in #113
New Contributors
- @matthiastz made their first contribution in #109
- @DASPRiD made their first contribution in #103
- @LBBO made their first contribution in #113
Full Changelog: v0.0.1-beta.6...v0.0.1-beta.7
v0.0.1-beta.6
v0.0.1-beta.5
What's Changed
- fix: wrong autocomplete in input fields by @jonas-jonas in #101
- fix: hr and img tags shouldn't break with global css overrides by @Benehiko in #102
Full Changelog: v0.0.1-beta.4...v0.0.1-beta.5
v0.0.1-beta.4
v0.0.1-beta.3
What's Changed
- fix: can override fonts for regular and mono by @Benehiko in #88
- fix: update id of resend code button by @jonas-jonas in #89
Full Changelog: v0.0.1-beta.2...v0.0.1-beta.3
v0.0.1-beta.2
What's Changed
Full Changelog: v0.0.1-beta.1...v0.0.1-beta.2
v0.0.1-beta.1
What's Changed
This version contains a breaking change.
Before v0.0.1-beta.1, Ory Elements exposed a singular style.css file which contained all the required fonts and icons necessary to work out of the box. This was convenient for elements to work out of the box, but caused the bundle size to be larger than necessary, especially for applications that only use a few components or their own icons and fonts.
The new version of Ory Elements now only exposes the CSS for the components in the style.css file, and the rest of the CSS are optional and can be imported individually.
// Ory Elements
// optional global css reset
import "@ory/elements/assets/normalize.css"
// optional fontawesome icons
import "@ory/elements/assets/fa-brands.min.css"
import "@ory/elements/assets/fa-solid.min.css"
import "@ory/elements/assets/fontawesome.min.css"
// optional fonts
import "@ory/elements/assets/inter-font.css"
import "@ory/elements/assets/jetbrains-mono-font.css"
// required styles for Ory Elements
import "@ory/elements/style.css"
Full Changelog: v0.0.1-alpha.30...v0.0.1-beta.1