Skip to content

Releases: skyra-project/discord-components

v3.0.1

08 Jan 11:37
Compare
Choose a tag to compare

3.0.1 (2022-01-08)

Bug Fixes

  • react: use createElement named import for better compatibility with Vite (1d770da)

v3.0.0

08 Jan 11:29
Compare
Choose a tag to compare

3.0.0 (2022-01-08)

Bug Fixes

  • fixed embed description and footer disappearing when dynamically editing title (bdec29c)

BREAKING CHANGES

  • discord-embed no longer takes the properties footer-image and timestamp, they are moved to the discord-embed-footer component.
  • The embed description now has to go into its own component, discord-embed-description
<discord-embed slot="embeds">
-  Custom emojis in the embed description:
+  <discord-embed-description slot="description">Custom emojis in the embed description:</discord-embed-description>
</discord-embed>
  • The embed footer now has to go into its own component, discord-embed-footer
- <discord-embed slot="embeds" footer-image="/static/sapphire.png" timestamp="03/20/2021">
+ <discord-embed slot="embeds">
{ /* other embed components */ }
-  <span slot="footer">Open source libraries to aid in the creation of Discord bots</span>
+  <discord-embed-footer slot="footer" footer-image="/static/sapphire.png" timestamp="03/20/2021">
+    Open source libraries to aid in the creation of Discord bots
+  </discord-embed-footer>
</discord-embed>

v2.13.0

22 Dec 19:59
Compare
Choose a tag to compare

2.13.0 (2021-12-22)

Bug Fixes

  • deps: update all non-major dependencies (#184) (792e791)

Features

  • discord-invite: localization support for invite title and button (#183) (8fd541b)

v2.12.1

06 Dec 20:31
Compare
Choose a tag to compare

2.12.1 (2021-12-06)

Bug Fixes

  • deps: update all non-major dependencies (#177) (36a4c5d)
  • discord-embed: hide embed description when not provided (f3f3302), closes #180

v2.12.0

13 Nov 15:22
Compare
Choose a tag to compare

2.12.0 (2021-11-13)

Features

  • Add discord-custom-emoji component & custom emojis in embed titles (#168) (61a808e), closes #163

v2.11.6

08 Nov 21:57
Compare
Choose a tag to compare

2.11.6 (2021-11-08)

Bug Fixes

v2.11.5

08 Nov 21:16
Compare
Choose a tag to compare

2.11.5 (2021-11-08)

Bug Fixes

  • react: only output ESM bundle (cf9da04)

v2.11.4

08 Nov 20:56
Compare
Choose a tag to compare

2.11.4 (2021-11-08)

Bug Fixes

  • docs: update nextjs codesandbox link (4d6382f)

v2.11.3

08 Nov 20:49
Compare
Choose a tag to compare

2.11.3 (2021-11-08)

Note: Version bump only for package root

v2.11.3-alpha.3

08 Nov 20:42
Compare
Choose a tag to compare
v2.11.3-alpha.3 Pre-release
Pre-release

2.11.3-alpha.3 (2021-11-08)

Bug Fixes

  • react: add dependency on tslib (cc0b85e)