Releases: jonathanpmartins/v-money3
Releases · jonathanpmartins/v-money3
3.19.1 - Improve Bundle Size
- Smaller bundle by +6%. See pull request #47
3.19.0 - Upgrade do TypeScript
- Upgrade package to TypeScript. Issue #41 and Pull Request #46. Thanks to @gigioSouza
3.18.0 - Introducing should-round option
- Complete
should-round
feature. Issue #45
3.17.6 - Improvements
3.17.5 - Fix
- Fixing problem with first digit #43
- Updating development dependencies.
3.17.4 - Fix
- Fixing problem with
v-model.number
#42 - Fixing reactivity problem with options.
3.17.3 - Changes and Improvements
- Numbers
0-9
,+
and-
are restricted from the following options:prefix
,suffix
,thousands
anddecimal
. In the past wethrow 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
to1000
. - Removing
assign
method and tests. - Test code coverage improved.
3.17.2 - Removing LastKnownValue
lastKnownValue
was removed from directivessetValue
method. It was causing issues with reactivity.
3.17.1 - Fixbug
- Fixing a problem when using precision "0" zero with thousands "." dot. Issue #39.
3.17.0 - BigInt support (arbitrary precision)
- Codebase refactoring... See AndrolGenhald super helpful collaboration with this pull request and this critical issue.
- BigInt support introduced via native BigNumber class.
v-model
andv-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.