@awes-io/ui 2.63.4 → 2.63.6

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,28 @@
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.6](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.5...@awes-io/ui@2.63.6) (2023-06-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **google-maps:** set protocol in url to work in capacitor ([d928ec7](https://github.com/awes-io/client/commit/d928ec7346186a6fe4d8fe980bc5f3ba02e2ab5b))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.63.5](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.4...@awes-io/ui@2.63.5) (2023-06-23)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **aw-money:** convert to number when comparing values ([e41d833](https://github.com/awes-io/client/commit/e41d833c082b50a03d0e9795de4fe9291928e782))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [2.63.4](https://github.com/awes-io/client/compare/@awes-io/ui@2.63.3...@awes-io/ui@2.63.4) (2023-06-22)
7
29
 
8
30
 
@@ -71,7 +71,7 @@ export default {
71
71
 
72
72
  data() {
73
73
  return {
74
- currencyValue: this.value
74
+ currencyValue: null
75
75
  }
76
76
  },
77
77
 
@@ -116,7 +116,7 @@ export default {
116
116
  this.$refs.element.$ci.currencyFormat.minimumFractionDigits
117
117
  )
118
118
 
119
- if (newValue !== this.$refs.element.$ci.getValue()) {
119
+ if (newValue !== (this.$refs.element.$ci.getValue() || 0)) {
120
120
  this.$refs.element.$ci.setValue(newValue)
121
121
  }
122
122
  },
@@ -35,7 +35,7 @@ export default {
35
35
 
36
36
  computed: {
37
37
  gmLibUrl() {
38
- const base = '//maps.googleapis.com/maps/api/js'
38
+ const base = 'https://maps.googleapis.com/maps/api/js'
39
39
  let params = {
40
40
  key: this.gmKey,
41
41
  libraries: this.gmLibraries.join(','),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awes-io/ui",
3
- "version": "2.63.4",
3
+ "version": "2.63.6",
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": "76e2dc0760efe75ecc3f1a7329561fdf86fbe3fd"
125
+ "gitHead": "13c51e132ed92120d6118f3c4daa59005a6a42f8"
126
126
  }