Releases: Maronato/vue-toastification
Releases · Maronato/vue-toastification
v2.0.0-rc.5
📦 Bundle
- Remove accidental dependency: It happens 😅
- Side effects-free!: Let it be known!
v2.0.0-rc.4
v1.7.14
🔧 Bug fixes
- Fix Nuxt composition API: It was not possible to use
useToast
with Nuxt. Now you can by importing fromvue-toastification/composition/nuxt
. closes #180 through #287 - Fix RTL margins in firefox: Firefox does not invert
margin: auto
when indirection: rtl
like other browsers do. That led to broken UI. closes #179 through #286
v2.0.0-rc.2
🔧 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
v1.7.11
v1.7.10
v2.0.0-rc.1
🔧 Bug fixes
- Remove references to DOM-only objects: Fixes SSR integrations by removing
HTMLElement
from runtime prop validation. 59588de
v2.0.0-beta.9
v2.0.0-beta.8
🚀 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 calluseToast
(#152 )