@kiva/kv-components 3.25.0 → 3.27.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 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.27.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.26.0...@kiva/kv-components@3.27.0) (2023-06-27)
7
+
8
+
9
+ ### Features
10
+
11
+ * disabling to click loan use when loading ([#269](https://github.com/kiva/kv-ui-elements/issues/269)) ([625afb2](https://github.com/kiva/kv-ui-elements/commit/625afb201bbd6a805516297946c0a428f1c4da50))
12
+
13
+
14
+
15
+
16
+
17
+ # [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)
18
+
19
+
20
+ ### Features
21
+
22
+ * lend amount CTA double event stop ([70997d5](https://github.com/kiva/kv-ui-elements/commit/70997d571940eb4f4a914c1a216bdcf64142954d))
23
+
24
+
25
+
26
+
27
+
6
28
  # [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)
7
29
 
8
30
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.25.0",
3
+ "version": "3.27.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": "c6487f1e1922fa7b3676c46fc39a0e4ce62ebd48"
78
+ "gitHead": "530efac1ea19e221ed355f9cdde7b25db591a863"
79
79
  }
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div
3
3
  class="tw-flex tw-flex-col tw-bg-white tw-rounded tw-w-full tw-pb-1"
4
- :class="{ 'tw-p-1': !largeCard }"
4
+ :class="{ 'tw-p-1': !largeCard, 'tw-pointer-events-none' : isLoading }"
5
5
  style="box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);"
6
6
  :style="{ minWidth: '230px', maxWidth: cardWidth }"
7
7
  >
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"