@kiva/kv-components 3.26.0 → 3.28.0
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/KvClassicLoanCard.vue +1 -2
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.28.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.27.0...@kiva/kv-components@3.28.0) (2023-07-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* avoid image bug for tiny screens ([#270](https://github.com/kiva/kv-ui-elements/issues/270)) ([d59aa72](https://github.com/kiva/kv-ui-elements/commit/d59aa72fa49605bcf5b7d88ed9efed28bc804d14))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.27.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.26.0...@kiva/kv-components@3.27.0) (2023-06-27)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* disabling to click loan use when loading ([#269](https://github.com/kiva/kv-ui-elements/issues/269)) ([625afb2](https://github.com/kiva/kv-ui-elements/commit/625afb201bbd6a805516297946c0a428f1c4da50))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [3.26.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.25.0...@kiva/kv-components@3.26.0) (2023-06-23)
|
|
7
29
|
|
|
8
30
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.28.0",
|
|
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": "
|
|
78
|
+
"gitHead": "c61bf2fb46b8da3b2ddd69836e3b62500e314fa1"
|
|
79
79
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div
|
|
3
3
|
class="tw-flex tw-flex-col tw-bg-white tw-rounded tw-w-full tw-pb-1"
|
|
4
|
-
:class="{ 'tw-p-1': !largeCard }"
|
|
4
|
+
:class="{ 'tw-p-1': !largeCard, 'tw-pointer-events-none' : isLoading }"
|
|
5
5
|
style="box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);"
|
|
6
6
|
:style="{ minWidth: '230px', maxWidth: cardWidth }"
|
|
7
7
|
>
|
|
@@ -417,7 +417,6 @@ export default {
|
|
|
417
417
|
{ width: 416, viewSize: 480 },
|
|
418
418
|
{ width: 374, viewSize: 414 },
|
|
419
419
|
{ width: 335, viewSize: 375 },
|
|
420
|
-
{ width: 300 },
|
|
421
420
|
];
|
|
422
421
|
},
|
|
423
422
|
loanCallouts() {
|