@kiva/kv-components 3.72.0 → 3.73.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/KvVotingCard.vue +19 -7
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.73.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.72.0...@kiva/kv-components@3.73.0) (2024-04-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* change voting card icon ([#388](https://github.com/kiva/kv-ui-elements/issues/388)) ([c7a5061](https://github.com/kiva/kv-ui-elements/commit/c7a50617a591e9734f996ad87e80d06b2292dc4d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.72.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.71.2...@kiva/kv-components@3.72.0) (2024-04-05)
|
|
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.73.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": "5e7199e37777f95d09134f1e25745472896021e4"
|
|
79
79
|
}
|
package/vue/KvVotingCard.vue
CHANGED
|
@@ -25,10 +25,24 @@
|
|
|
25
25
|
tw-items-center"
|
|
26
26
|
style="padding: 2px 6px; text-transform: capitalize;"
|
|
27
27
|
>
|
|
28
|
-
<
|
|
29
|
-
class="tw-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
<span
|
|
29
|
+
class="tw-inline-flex tw-align-text-top"
|
|
30
|
+
aria-hidden="true"
|
|
31
|
+
role="img"
|
|
32
|
+
>
|
|
33
|
+
<svg
|
|
34
|
+
class="tw-h-2 tw-w-2.5"
|
|
35
|
+
viewBox="0 0 20 20"
|
|
36
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
37
|
+
>
|
|
38
|
+
<!-- eslint-disable max-len -->
|
|
39
|
+
<path
|
|
40
|
+
d="m3.12088 18.7441c12.86212 0 15.87912-14.52631 15.87912-16.99996h-1.1209c-12.85272 0-15.8791 14.51376-15.8791 16.99996z"
|
|
41
|
+
fill="currentColor"
|
|
42
|
+
/>
|
|
43
|
+
<!-- eslint-enable max-len -->
|
|
44
|
+
</svg>
|
|
45
|
+
</span>
|
|
32
46
|
<div>
|
|
33
47
|
{{ borrowerName }}
|
|
34
48
|
</div>
|
|
@@ -74,7 +88,7 @@
|
|
|
74
88
|
</template>
|
|
75
89
|
|
|
76
90
|
<script>
|
|
77
|
-
import { mdiInformation
|
|
91
|
+
import { mdiInformation } from '@mdi/js';
|
|
78
92
|
import { computed } from 'vue-demi';
|
|
79
93
|
import KvProgressBar from './KvProgressBar.vue';
|
|
80
94
|
import KvButton from './KvButton.vue';
|
|
@@ -118,10 +132,8 @@ export default {
|
|
|
118
132
|
},
|
|
119
133
|
},
|
|
120
134
|
setup() {
|
|
121
|
-
const mapMarkerIcon = computed(() => mdiMapMarker);
|
|
122
135
|
const infoIcon = computed(() => mdiInformation);
|
|
123
136
|
return {
|
|
124
|
-
mapMarkerIcon,
|
|
125
137
|
infoIcon,
|
|
126
138
|
};
|
|
127
139
|
},
|