@kiva/kv-components 3.66.1 → 3.66.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,17 @@
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.66.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.66.1...@kiva/kv-components@3.66.2) (2024-03-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * loan card bug fixed ([#375](https://github.com/kiva/kv-ui-elements/issues/375)) ([724be25](https://github.com/kiva/kv-ui-elements/commit/724be2519ed7ee176a6c1fbe8c47b4fb9a825dc7))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.66.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.66.0...@kiva/kv-components@3.66.1) (2024-03-21)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.66.1",
3
+ "version": "3.66.2",
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": "ee224b843c6a3a25266034ae2215759ff0462016"
78
+ "gitHead": "4174bae7eeb1c72e019291d9058e75490dc6c5a1"
79
79
  }
@@ -177,22 +177,24 @@
177
177
  />
178
178
  </div>
179
179
 
180
- <component
181
- :is="tag"
182
- v-if="unreservedAmount > 0"
183
- :to="readMorePath"
184
- :href="readMorePath"
185
- class="loan-card-progress tw-mt-1"
186
- aria-label="Loan progress"
187
- @click="clickReadMore('Progress')"
188
- >
189
- <kv-loan-progress-group
190
- id="loanProgress"
191
- :money-left="`${unreservedAmount}`"
192
- :progress-percent="fundraisingPercent"
193
- class="tw-text-black"
194
- />
195
- </component>
180
+ <div>
181
+ <component
182
+ :is="tag"
183
+ v-if="unreservedAmount > 0"
184
+ :to="readMorePath"
185
+ :href="readMorePath"
186
+ class="loan-card-progress tw-mt-1"
187
+ aria-label="Loan progress"
188
+ @click="clickReadMore('Progress')"
189
+ >
190
+ <kv-loan-progress-group
191
+ id="loanProgress"
192
+ :money-left="`${unreservedAmount}`"
193
+ :progress-percent="fundraisingPercent"
194
+ class="tw-text-black"
195
+ />
196
+ </component>
197
+ </div>
196
198
 
197
199
  <!-- CTA Button -->
198
200
  <kv-loading-placeholder