@kiva/kv-components 3.101.0 → 3.101.2

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,30 @@
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.101.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.101.1...@kiva/kv-components@3.101.2) (2024-09-06)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * handle slide scale instead of img ([8758b9e](https://github.com/kiva/kv-ui-elements/commit/8758b9efccd3d40bf7420a2f808901c6f396d260))
12
+ * overflow ([59529e4](https://github.com/kiva/kv-ui-elements/commit/59529e4e8f8dbbf3b2a2ba413868911702bc95e9))
13
+
14
+
15
+
16
+
17
+
18
+ ## [3.101.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.101.0...@kiva/kv-components@3.101.1) (2024-09-05)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * force primary color ([652370b](https://github.com/kiva/kv-ui-elements/commit/652370b54998b4fd9597f434c66c783448d0419e))
24
+ * new loan card name wasn't clickable ([27603b7](https://github.com/kiva/kv-ui-elements/commit/27603b78f1c8d271baa23e93dfde2acc8e7e5727))
25
+
26
+
27
+
28
+
29
+
6
30
  # [3.101.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.100.0...@kiva/kv-components@3.101.0) (2024-09-05)
7
31
 
8
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.101.0",
3
+ "version": "3.101.2",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -83,5 +83,5 @@
83
83
  "optional": true
84
84
  }
85
85
  },
86
- "gitHead": "28b2c40a7ea9deae17eee7f58c1d29ae510b647c"
86
+ "gitHead": "0809b0816e59caee0fd4618825e77e921edf7278"
87
87
  }
@@ -429,15 +429,15 @@ export default {
429
429
  width: auto;
430
430
  }
431
431
 
432
- .cirle-slide.is-selected >>> img {
432
+ .cirle-slide.is-selected {
433
433
  opacity: 1;
434
- transform: scale(1);
434
+ transform: scale(1.2);
435
435
  max-width: 300px;
436
436
  }
437
437
 
438
- .cirle-slide:not(.is-selected) >>> img {
438
+ .cirle-slide:not(.is-selected) {
439
439
  opacity: 0.5;
440
- transform: scale(0.5);
440
+ transform: scale(0.7);
441
441
  }
442
442
 
443
443
  .circle-carousel {
@@ -91,14 +91,22 @@
91
91
  :style="{ width: '60%', height: '1.75rem', 'border-radius': '500rem' }"
92
92
  />
93
93
 
94
- <h3
95
- class="loan-card-name"
96
- :class="{ 'tw-text-center': borrowerName.length < 20 }"
97
- style="font-size: 28px;"
98
- @click="clickReadMore('Name', $event)"
94
+ <component
95
+ :is="tag"
96
+ :to="readMorePath"
97
+ :href="readMorePath"
98
+ aria-label="Borrower name"
99
+ class="!tw-text-primary"
100
+ @click.native="clickReadMore('Name', $event)"
99
101
  >
100
- {{ borrowerName }}
101
- </h3>
102
+ <h3
103
+ class="loan-card-name"
104
+ :class="{ 'tw-text-center': borrowerName.length < 20 }"
105
+ style="font-size: 28px;"
106
+ >
107
+ {{ borrowerName }}
108
+ </h3>
109
+ </component>
102
110
 
103
111
  <!-- Loan tag -->
104
112