@awes-io/ui 2.63.2 → 2.63.3

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.63.3](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.2...@awes-io/ui@2.63.3) (2023-06-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **aw-money:** always get and set value in coins ([297435e](https://github.com/awes-io/client/commit/297435e8560a9892729270fbb8746ca0c56d963b))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.63.2](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.1...@awes-io/ui@2.63.2) (2023-04-25)
7
18
 
8
19
 
@@ -111,15 +111,15 @@ export default {
111
111
  this.$refs.input.setError('')
112
112
  }
113
113
 
114
- if (this.$refs.element.$ci.getValue() !== value) {
115
- this.$refs.element.$ci.setValue(value)
114
+ if ((this.$refs.element.$ci.numberValue || 0) * 100 !== value) {
115
+ this.$refs.element.$ci.setValue(value / 100)
116
116
  }
117
117
  },
118
118
 
119
119
  currencyValue(value) {
120
120
  if (!this.$refs.element) return
121
121
 
122
- const intValue = this.$refs.element.$ci.getValue()
122
+ const intValue = this.$refs.element.$ci.numberValue * 100
123
123
 
124
124
  if (this.value !== value) {
125
125
  this.$emit('input', intValue, value)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.63.2",
3
+ "version": "2.63.3",
4
4
  "description": "User Interface (UI) components",
5
5
  "keywords": [
6
6
  "ui",
@@ -122,5 +122,5 @@
122
122
  "vue-template-compiler": "^2.6.10",
123
123
  "webfonts-generator": "^0.4.0"
124
124
  },
125
- "gitHead": "d08ca39dcb2fb44ab52209078eace98adbebb81e"
125
+ "gitHead": "6087442bc6cf0fda0ee242e283b451adc989bd42"
126
126
  }