@kiva/kv-components 3.24.0 → 3.26.0
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 +22 -0
- package/package.json +2 -2
- package/vue/KvClassicLoanCard.vue +1 -1
- package/vue/KvLendCta.vue +2 -2
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
|
+
# [3.26.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.25.0...@kiva/kv-components@3.26.0) (2023-06-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* lend amount CTA double event stop ([70997d5](https://github.com/kiva/kv-ui-elements/commit/70997d571940eb4f4a914c1a216bdcf64142954d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.25.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.24.0...@kiva/kv-components@3.25.0) (2023-06-21)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* fix prop type for route ([2102672](https://github.com/kiva/kv-ui-elements/commit/21026721bc62c6a71ec182e62396bdc0e8b3617c))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [3.24.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.23.1...@kiva/kv-components@3.24.0) (2023-06-21)
|
|
7
29
|
|
|
8
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.26.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"optional": true
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "5fad500848dd08fd079d4ea92393b6782ffd545e"
|
|
79
79
|
}
|
package/vue/KvLendCta.vue
CHANGED
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
style="border-radius: 14px 0 0 14px;"
|
|
67
67
|
aria-label="Lend amount"
|
|
68
68
|
@update:modelValue="trackLendAmountSelection"
|
|
69
|
-
@click.native="clickDropdown"
|
|
69
|
+
@click.native.stop="clickDropdown"
|
|
70
70
|
>
|
|
71
71
|
<option
|
|
72
72
|
v-for="priceOption in prices"
|
|
@@ -180,7 +180,7 @@ export default {
|
|
|
180
180
|
default: false,
|
|
181
181
|
},
|
|
182
182
|
route: {
|
|
183
|
-
type:
|
|
183
|
+
type: Object,
|
|
184
184
|
default: undefined,
|
|
185
185
|
},
|
|
186
186
|
userBalance: {
|