@eturnity/eturnity_reusable_components 1.0.67 → 1.0.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "1.0.67",
3
+ "version": "1.0.68",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
@@ -28,6 +28,7 @@
28
28
  // checkColor="blue"
29
29
  // size="small"
30
30
  // backgroundColor="red"
31
+ // :isDisabled="true"
31
32
  // />
32
33
  import styled from "vue-styled-components"
33
34
 
@@ -297,7 +297,7 @@ export default {
297
297
  this.isFocused = true
298
298
  },
299
299
  formatWithCurrency(value) {
300
- if (value && !this.isFocused) {
300
+ if ((value || value === 0) && !this.isFocused) {
301
301
  let input = numberToString({
302
302
  value: value,
303
303
  numberPrecision: this.numberPrecision,