@kiva/kv-components 3.45.0 → 3.46.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 +11 -0
- package/package.json +2 -2
- package/vue/KvLoanUse.vue +6 -4
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.46.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.45.0...@kiva/kv-components@3.46.0) (2023-09-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* loan name wasn't being suppressed from hotjar ([998daef](https://github.com/kiva/kv-ui-elements/commit/998daefd75ebebbabde03f37be78d17469e34e00))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.45.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.44.2...@kiva/kv-components@3.45.0) (2023-09-29)
|
|
7
18
|
|
|
8
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.46.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": "5d472fdd5e2d7c42eb1ef224ca668dddaf200c32"
|
|
79
79
|
}
|
package/vue/KvLoanUse.vue
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
<!-- eslint-disable vue/no-v-html -->
|
|
1
2
|
<template>
|
|
2
|
-
<p
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
<p
|
|
4
|
+
class="tw-line-clamp-4"
|
|
5
|
+
v-html="loanUse"
|
|
6
|
+
></p>
|
|
5
7
|
</template>
|
|
6
8
|
|
|
7
9
|
<script>
|
|
@@ -70,7 +72,7 @@ export default {
|
|
|
70
72
|
return `${numeral(this.loanAmount).format('$0,0')} `
|
|
71
73
|
+ `${this.isDirect ? 'to' : this.helpLanguage} `
|
|
72
74
|
+ `${isGroup ? 'a member of ' : ''}`
|
|
73
|
-
+
|
|
75
|
+
+ `<span class="data-hj-suppress">${this.name}</span> `
|
|
74
76
|
+ `${this.isDirect ? `${this.helpLanguage} ` : ''}`
|
|
75
77
|
+ `${this.use.charAt(0).toLowerCase() + this.use.slice(1)}`
|
|
76
78
|
+ `${this.whySpecialSentence}`;
|