Vue Toastification Versions Save

Vue notifications made easy!

v2.0.0-rc.5

2 years ago

📦 Bundle

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

v2.0.0-rc.4

2 years ago

🚀 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

2 years ago

🔧 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

2 years ago

🔧 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

2 years ago

🔧 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

3 years ago

🔧 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 (838dc4212063858b53bf53144188838e7a4c120a)

v1.7.10

3 years ago

🔧 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

3 years ago

🔧 Bug fixes

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

v2.0.0-beta.9

3 years ago

📦 Bundle

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

v2.0.0-beta.8

3 years ago

🚀 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 )