Skip to content

Releases: jonathanpmartins/v-money3

3.19.1 - Improve Bundle Size

15 Sep 01:17
Compare
Choose a tag to compare
  • Smaller bundle by +6%. See pull request #47

3.19.0 - Upgrade do TypeScript

10 Sep 22:46
Compare
Choose a tag to compare
  • Upgrade package to TypeScript. Issue #41 and Pull Request #46. Thanks to @gigioSouza

3.18.0 - Introducing should-round option

09 Sep 04:10
Compare
Choose a tag to compare
  • Complete should-round feature. Issue #45

3.17.6 - Improvements

07 Sep 18:52
Compare
Choose a tag to compare
  • Vue 3.2.0+ added as a peerDependency in package.json file. Issue #44
  • Opt to avoid round precision. Issue #45

3.17.5 - Fix

30 Aug 23:59
Compare
Choose a tag to compare
  • Fixing problem with first digit #43
  • Updating development dependencies.

3.17.4 - Fix

30 Aug 19:42
Compare
Choose a tag to compare
  • Fixing problem with v-model.number #42
  • Fixing reactivity problem with options.

3.17.3 - Changes and Improvements

24 Aug 01:51
Compare
Choose a tag to compare
  • Numbers 0-9, + and - are restricted from the following options: prefix, suffix, thousands and decimal. In the past we throw new Error, but this could cause problems with reactivity. Currently we filter out the above restricted characters from the restricted options.
  • Max precision was changed from 20 to 1000.
  • Removing assign method and tests.
  • Test code coverage improved.

3.17.2 - Removing LastKnownValue

23 Aug 02:46
Compare
Choose a tag to compare
  • lastKnownValue was removed from directives setValue method. It was causing issues with reactivity.

3.17.1 - Fixbug

22 Aug 20:45
Compare
Choose a tag to compare
  • Fixing a problem when using precision "0" zero with thousands "." dot. Issue #39.

3.17.0 - BigInt support (arbitrary precision)

22 Aug 05:32
Compare
Choose a tag to compare
  • Codebase refactoring... See AndrolGenhald super helpful collaboration with this pull request and this critical issue.
  • BigInt support introduced via native BigNumber class.
  • v-model and v-model.number are now treated completely differently. See docs and examples.
  • Bundle compiled with es2020 target. This is necessary to support full native BigInt.
  • Many other changes... See diff.