@kiva/kv-components 3.90.3 → 3.90.5
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 +22 -0
- package/package.json +2 -2
- package/vue/KvIntroductionLoanCard.vue +5 -7
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.90.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.90.4...@kiva/kv-components@3.90.5) (2024-08-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* use TW class inline to make overwriting simpler ([3af651f](https://github.com/kiva/kv-ui-elements/commit/3af651fbf961d06a631381029daa43f02550546c))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* use an image size we already have a retina size for ([109a303](https://github.com/kiva/kv-ui-elements/commit/109a303ba7ce6bd6830109e4323a9e25636556bf))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [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
29
|
|
|
8
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "3.90.
|
|
3
|
+
"version": "3.90.5",
|
|
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": "9cea37b07a084d2f1b349b0e9ab2e5f4d9288c14"
|
|
86
86
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
|
-
class="
|
|
3
|
+
class="tw-flex tw-flex-col tw-bg-white tw-rounded tw-w-full tw-pb-1"
|
|
4
4
|
:class="{ 'tw-pointer-events-none' : isLoading }"
|
|
5
5
|
data-testid="loan-card"
|
|
6
6
|
style="box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);"
|
|
@@ -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 [
|
|
@@ -381,9 +382,6 @@ export default {
|
|
|
381
382
|
</script>
|
|
382
383
|
|
|
383
384
|
<style lang="postcss" scoped>
|
|
384
|
-
.card-container {
|
|
385
|
-
@apply tw-flex tw-flex-col tw-bg-white tw-rounded tw-w-full tw-pb-1;
|
|
386
|
-
}
|
|
387
385
|
.loan-callouts >>> span {
|
|
388
386
|
@apply !tw-bg-transparent tw-text-brand;
|
|
389
387
|
}
|