Skip to content

Releases: xiaoluoboding/vue-sonner

Release v1.2.4

29 Oct 03:44
Compare
Choose a tag to compare

What's Changed

Vue Sonner now supports a Nuxt 3 module

Use vue-sonner/nuxt module

// nuxt.config.ts
export default defineNuxtConfig({
  ...
  modules: ['vue-sonner/nuxt']
})

Use Toaster component and $toast function anywhere in the Vue SFC

<!-- app.vue -->
<template>
  <div>
    <Toaster position="top-right" />
    <button @click="() => $toast('My first toast')">Render a toast</button>
  </div>
</template>

<script setup lang="ts">
  const { $toast } = useNuxtApp()
</script>

Full Changelog: v1.2.3...v1.2.4

Release v1.2.3

21 Oct 13:42
Compare
Choose a tag to compare

What's Changed

  • Add playwright test from Sonner package and fix dismiss function by @CMarzin in #91
  • feat: add github action for tests by @adrienZ in #93
  • feature: pkg-pr-new by @adrienZ in #95

New Contributors

Full Changelog: v1.2.2...v1.2.3

Release v1.2.0

23 Sep 10:26
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.5...v1.2.0

Release v1.1.4

24 Jul 07:40
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.1.3...v1.1.4

Release v1.1.3

19 Jun 15:10
Compare
Choose a tag to compare

What's Changed

  • fix(README): Fix typo in markRaw import by @cernymatej in #65
  • feat: support dynamic position by @motea927 in #68
  • fix: fix the problem of rate calculation error when clicking actions … by @libondev in #71

New Contributors

Full Changelog: v1.1.2...v1.1.3

Release v1.1.2

07 Mar 14:10
Compare
Choose a tag to compare

What's Changed

  • fix: resolve #56 via checking for array type by @Saeid-Za in #57
  • refactor: Updated the οΏ½docs and type of the class option by @jdm1219 in #58

New Contributors

Full Changelog: v1.1.1...v1.1.2

Release v1.1.1

02 Mar 05:59
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.1.1

Release v1.0.4

29 Feb 02:33
Compare
Choose a tag to compare

What's Changed

  • fix: blurry text in chromium by @itsTPM in #48
  • feat: allow setting position when creating a toast by @wobsoriano in #49

New Contributors

Full Changelog: v1.0.3...v1.0.4

Release v1.0.3

24 Jan 07:27
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.2...v1.0.3

Release v1.0.2

07 Nov 17:11
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.1...v1.0.2