@kiva/kv-components 3.78.0 → 3.78.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,25 @@
|
|
|
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.78.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.78.1...@kiva/kv-components@3.78.2) (2024-05-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @kiva/kv-components
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.78.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.78.0...@kiva/kv-components@3.78.1) (2024-05-15)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* change activity copy in team pick loan ([190ea03](https://github.com/kiva/kv-ui-elements/commit/190ea03a93befc0fb60587a61b408c06a9f84be0))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [3.78.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.77.0...@kiva/kv-components@3.78.0) (2024-05-15)
|
|
7
26
|
|
|
8
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "3.78.
|
|
3
|
+
"version": "3.78.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"postcss": "^8.4.5",
|
|
40
40
|
"postcss-loader": "^4.3.0",
|
|
41
41
|
"style-loader": "^2.0.0",
|
|
42
|
-
"tailwindcss": "^3.
|
|
42
|
+
"tailwindcss": "^3.4.3",
|
|
43
43
|
"vue": "^2.6.14",
|
|
44
44
|
"vue-loader": "^15.9.6",
|
|
45
45
|
"vue-router": "^3.5.2",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"build": "echo No build needed for @kiva/kv-components."
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@kiva/kv-tokens": "^2.11.
|
|
56
|
+
"@kiva/kv-tokens": "^2.11.2",
|
|
57
57
|
"@mdi/js": "^5.9.55",
|
|
58
58
|
"@vueuse/integrations": "^7.6.0",
|
|
59
59
|
"aria-hidden": "^1.1.3",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"optional": true
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "c6f35180e5a27c234e8c7f4ea19d7b267b842677"
|
|
79
79
|
}
|
|
@@ -194,7 +194,7 @@ describe('KvClassicLoanCard', () => {
|
|
|
194
194
|
},
|
|
195
195
|
});
|
|
196
196
|
|
|
197
|
-
const activityText = getByText('7
|
|
197
|
+
const activityText = getByText('7 lenders lent $950.');
|
|
198
198
|
const activityBtn = getByRole('button', { name: 'See all activity' });
|
|
199
199
|
expect(activityText).toBeDefined();
|
|
200
200
|
expect(activityBtn).toBeDefined();
|
package/vue/KvLoanActivities.vue
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
</div>
|
|
11
11
|
<div class="tw-flex tw-justify-center tw-mt-1 tw-text-small">
|
|
12
12
|
<span v-if="lendersNumber && amountLent">
|
|
13
|
-
{{ lendersNumber }}
|
|
13
|
+
{{ lendersNumber }} lenders lent {{ amountLent }}.
|
|
14
14
|
</span>
|
|
15
15
|
<button
|
|
16
16
|
class="tw-text-action hover:tw-underline"
|