Skip to content

Releases: ory/elements

v0.0.1-beta.10

11 Aug 10:15
67d4ed9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.1-beta.9...v0.0.1-beta.10

v0.0.1-beta.9

09 Aug 10:57
31b1208
Compare
Choose a tag to compare

What's Changed

  • fix: useIdWithFallback for react 17 and lower by @jorgeepc in #122

Full Changelog: v0.0.1-beta.8...v0.0.1-beta.9

v0.0.1-beta.8

08 Aug 09:58
3c06879
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.1-beta.7...v0.0.1-beta.8

v0.0.1-beta.7

11 Jul 12:13
518080e
Compare
Choose a tag to compare

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

Full Changelog: v0.0.1-beta.6...v0.0.1-beta.7

v0.0.1-beta.6

30 Mar 12:06
466c85f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.1-beta.5...v0.0.1-beta.6

v0.0.1-beta.5

16 Mar 09:37
40bc4ab
Compare
Choose a tag to compare

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

09 Mar 08:31
f2b9d51
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.1-beta.3...v0.0.1-beta.4

v0.0.1-beta.3

09 Feb 10:07
a340041
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.1-beta.2...v0.0.1-beta.3

v0.0.1-beta.2

03 Feb 12:02
8212609
Compare
Choose a tag to compare

What's Changed

  • fix: package exports should be more explicit by @Benehiko in #87

Full Changelog: v0.0.1-beta.1...v0.0.1-beta.2

v0.0.1-beta.1

31 Jan 11:23
68c4f0f
Compare
Choose a tag to compare

What's Changed

  • feat: split css files into optional imports by @Benehiko in #77

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