Skip to content

Releases: neighborhood999/vue-signature-pad

3.0.2

15 Mar 13:00
992b75a
Compare
Choose a tag to compare

Patches

  • Feat: Add a prop to prevent scaling the canvas based on the device pixel ratio: afabbfb
  • Chore: update deps and move vue to devDeps: b6d77fb
  • Chore: re-add @vue/compiler-sfc as rollup plugin require that explicitly instead of using vue/compiler-sfc: a183e37

3.0.1

06 Aug 01:02
5b56f00
Compare
Choose a tag to compare

Patches

  • Fix(lifecycle): beforeDestroy -> beforeUnmount: 703d00e

3.0.0

16 Jul 02:25
5d8ca88
Compare
Choose a tag to compare
  • Support Vue 3

2.0.4

16 Jul 01:54
36c5133
Compare
Choose a tag to compare
  • Support component import
<script>
import { VueSignaturePad } from 'vue-signature-pad';

export default {
  components: {
    VueSignaturePad
  }
}
</script>

2.0.2

13 May 06:05
Compare
Choose a tag to compare
2.0.2

2.0.1

13 May 05:56
Compare
Choose a tag to compare

Patches

  • Fix(sfc): refined bundle: #244

2.0.0

13 Mar 02:30
Compare
Choose a tag to compare

Breaking Change

  • Refactor(component): add save img type parameter to saveSignature method: 38a1ca0

We remove saveType prop from the component because it's not flexible for changing the saved image type.

If your component had use saveType prop, please remove it.

When you called saveSignature method, the default will use image/png as image type, if you want to change save type, just add image type parameter, e.g. saveSignature('image/svg+xml').

1.1.18

07 Feb 04:41
Compare
Choose a tag to compare

Patches

  • Chore(deps): update deps and migrate rollup related plugins: 8c37496
  • Chore: add github actions: 92a1bab

1.1.17

08 Nov 09:58
Compare
Choose a tag to compare

Patches

  • Fix: add watcher for changing signature options: #171
  • Chore(scripts): add publish related scripts: #175

1.1.16

31 Oct 06:47
Compare
Choose a tag to compare

Patches

  • Fix(component): add more options args for fromDataURL method: #170