Skip to content

Releases: skyra-project/discord-components

v3.4.1

06 Aug 08:28
Compare
Choose a tag to compare

3.4.1 (2022-08-06)

Bug Fixes

  • core: enable experimentalImportInjection to ensure compatibility with Vite/NextJS builds (053c8eb)
  • deps: update all non-major dependencies (#271) (7896b9c)

v3.4.0

10 May 20:45
Compare
Choose a tag to compare

3.4.0 (2022-05-10)

Features

v3.3.1

25 Apr 23:16
Compare
Choose a tag to compare

3.3.1 (2022-04-25)

Bug Fixes

  • core: emit [@vite-ignore](https://github.com/vite-ignore) comments on dynamic imports (ba84b9e)
  • deps: update all non-major dependencies (#240) (e0e22fe)

v3.3.0

06 Apr 19:50
Compare
Choose a tag to compare

3.3.0 (2022-04-06)

Features

v3.2.0

04 Apr 21:44
Compare
Choose a tag to compare

3.2.0 (2022-04-04)

Bug Fixes

  • deps: update all non-major dependencies (#217) (3c391b6)
  • deps: update all non-major dependencies (#225) (87349f3)

Features

  • add new components to react bundle (3055336)
  • added multiple style specific components (80ed132), closes #220

v3.1.1

10 Mar 19:32
Compare
Choose a tag to compare

3.1.1 (2022-03-10)

Bug Fixes

v3.1.0

12 Jan 20:57
Compare
Choose a tag to compare

3.1.0 (2022-01-12)

Features

  • discord-embed-description: add styles for nested HTML tags (#195) (6ee7b9f)

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)