@kiva/kv-components 3.101.0 → 3.101.1

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,18 @@
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.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.101.0...@kiva/kv-components@3.101.1) (2024-09-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * force primary color ([652370b](https://github.com/kiva/kv-ui-elements/commit/652370b54998b4fd9597f434c66c783448d0419e))
12
+ * new loan card name wasn't clickable ([27603b7](https://github.com/kiva/kv-ui-elements/commit/27603b78f1c8d271baa23e93dfde2acc8e7e5727))
13
+
14
+
15
+
16
+
17
+
6
18
  # [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
19
 
8
20
 
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.1",
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": "ab2bc8592e474d04339b85dd865149e3b525609a"
87
87
  }
@@ -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