@kiva/kv-components 3.90.3 → 3.90.4
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 +11 -0
- package/package.json +2 -2
- package/vue/KvIntroductionLoanCard.vue +4 -3
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.90.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.90.3...@kiva/kv-components@3.90.4) (2024-08-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* use an image size we already have a retina size for ([109a303](https://github.com/kiva/kv-ui-elements/commit/109a303ba7ce6bd6830109e4323a9e25636556bf))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.90.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.90.2...@kiva/kv-components@3.90.3) (2024-08-06)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "3.90.
|
|
3
|
+
"version": "3.90.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"optional": true
|
|
83
83
|
}
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "45936a0ec405a3b0d9dcaf39ddec503b06f714ac"
|
|
86
86
|
}
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
/>
|
|
17
17
|
<div
|
|
18
18
|
v-else
|
|
19
|
-
|
|
19
|
+
:style="{ height: '11rem' }"
|
|
20
|
+
class="tw-relative tw-overflow-hidden"
|
|
20
21
|
>
|
|
21
22
|
<component
|
|
22
23
|
:is="tag"
|
|
@@ -356,10 +357,10 @@ export default {
|
|
|
356
357
|
},
|
|
357
358
|
computed: {
|
|
358
359
|
imageAspectRatio() {
|
|
359
|
-
return
|
|
360
|
+
return 5 / 8;
|
|
360
361
|
},
|
|
361
362
|
imageDefaultWidth() {
|
|
362
|
-
return
|
|
363
|
+
return 480;
|
|
363
364
|
},
|
|
364
365
|
imageSizes() {
|
|
365
366
|
return [
|