Skip to content

Releases: Maronato/vue-toastification

v2.0.0-rc.5

18 Oct 21:36
9912194
Compare
Choose a tag to compare
v2.0.0-rc.5 Pre-release
Pre-release

📦 Bundle

  • Remove accidental dependency: It happens 😅
  • Side effects-free!: Let it be known!

v2.0.0-rc.4

18 Oct 21:15
37d30e9
Compare
Choose a tag to compare
v2.0.0-rc.4 Pre-release
Pre-release

🚀 New Features

  • Share app context: Now you can use your plugins and global apps inside custom toast components. closes #162 through #290

🔧 Bug fixes

  • Fix RTL margins in firefox: Firefox does not invert margin: auto when in direction: rtl like other browsers do. That led to broken UI. closes #179 through #285

v1.7.14

18 Oct 20:59
cd1bbc0
Compare
Choose a tag to compare

🔧 Bug fixes

  • Fix Nuxt composition API: It was not possible to use useToast with Nuxt. Now you can by importing from vue-toastification/composition/nuxt. closes #180 through #287
  • Fix RTL margins in firefox: Firefox does not invert margin: auto when in direction: rtl like other browsers do. That led to broken UI. closes #179 through #286

v2.0.0-rc.2

16 Oct 05:05
8b15bd4
Compare
Choose a tag to compare
v2.0.0-rc.2 Pre-release
Pre-release

🔧 Bug fixes

  • Fix scss slash division: Slash division is deprecated. Use math.div instead
  • Duplicate animations: bounceOutDown was duplicated #272

📦 Bundle

  • esbuild Use esbuild instead of rollup
  • Github Actions Move from travis to GH actions
  • Dependencies Update and cleanup all dependencies

v1.7.12

16 Oct 04:53
51f06fc
Compare
Choose a tag to compare

🔧 Bug fixes

  • Add options for "toast" property in Nuxt Config: #263
  • Fix Sass slash division deprecation: #264

📦 Bundle

  • Github Actions Use github actions instead of travis #281

v1.7.11

18 Jan 19:57
Compare
Choose a tag to compare

🔧 Bug fixes

  • Disable runtime container prop validation: Runtime validation for the container prop is not possible since it requires a direct instanceof comparison with HTMLElement. resolves #161 (838dc42)

v1.7.10

13 Jan 20:12
Compare
Choose a tag to compare

🔧 Bug fixes

  • Remove references to DOM-only objects: Fixes SSR integrations by removing HTMLElement from runtime prop validation. Resolves #155 (cc1420e)

v2.0.0-rc.1

03 Jan 00:40
Compare
Choose a tag to compare
v2.0.0-rc.1 Pre-release
Pre-release

🔧 Bug fixes

  • Remove references to DOM-only objects: Fixes SSR integrations by removing HTMLElement from runtime prop validation. 59588de

v2.0.0-beta.9

10 Dec 18:25
Compare
Choose a tag to compare
v2.0.0-beta.9 Pre-release
Pre-release

📦 Bundle

  • Add back source folder to bundle: Add back src to bundled package. Resolves #153 (ef85ad7)

v2.0.0-beta.8

27 Nov 15:54
Compare
Choose a tag to compare
v2.0.0-beta.8 Pre-release
Pre-release

🚀 New Features

  • Toast interfaces are global by default: Toasts created with the app.use(Toast) plugin will be bound to a global event listener by default, meaning that all that is needed to use toasts outside of components is to call useToast (#152 )