@kiva/kv-components 3.71.0 → 3.71.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,29 @@
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.71.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.71.1...@kiva/kv-components@3.71.2) (2024-04-03)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * icon needs to be pulled to the right on voting card for small titles ([571d372](https://github.com/kiva/kv-ui-elements/commit/571d372d54c20c08203ef901cd8d55023e12477a))
12
+ * pinned title to top of area below image and vote + progress to bottom of card ([24f1609](https://github.com/kiva/kv-ui-elements/commit/24f1609f4ccc6211c02baef3530dba6bfe593271))
13
+
14
+
15
+
16
+
17
+
18
+ ## [3.71.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.71.0...@kiva/kv-components@3.71.1) (2024-04-03)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * fixed bug related to icon resizing in voting card ([7dc424c](https://github.com/kiva/kv-ui-elements/commit/7dc424ce0aa83f627240c50bb9925033f50c2cc2))
24
+
25
+
26
+
27
+
28
+
6
29
  # [3.71.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.70.0...@kiva/kv-components@3.71.0) (2024-04-02)
7
30
 
8
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.71.0",
3
+ "version": "3.71.2",
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": "b197fd66a43c4ad6c800a2fa9e0df7987bbfac45"
78
+ "gitHead": "8befe6efc6052b76c67a4b377b945dd19021f7ee"
79
79
  }
@@ -8,7 +8,6 @@
8
8
  tw-p-1
9
9
  tw-flex
10
10
  tw-flex-col
11
- tw-justify-between
12
11
  tw-max-w-300"
13
12
  >
14
13
  <div class="tw-relative tw-flex tw-w-full tw-bg-black tw-rounded tw-mb-1">
@@ -35,16 +34,20 @@
35
34
  </div>
36
35
  </div>
37
36
  </div>
38
- <div class="tw-flex">
39
- <h3 class="tw-font-medium">
40
- {{ category }}
41
- </h3>
42
- <kv-material-icon
43
- v-if="showInfoIcon"
44
- :icon="infoIcon"
45
- class="tw-h-3 tw-w-3"
46
- @click="handleInfoClick"
47
- />
37
+ <div class="tw-flex tw-flex-grow">
38
+ <div class="tw-flex-grow">
39
+ <h3 class="tw-font-medium">
40
+ {{ category }}
41
+ </h3>
42
+ </div>
43
+ <div class="tw-flex-shrink">
44
+ <kv-material-icon
45
+ v-if="showInfoIcon"
46
+ :icon="infoIcon"
47
+ class="tw-h-3 tw-w-3"
48
+ @click="handleInfoClick"
49
+ />
50
+ </div>
48
51
  </div>
49
52
  <div class="tw-flex tw-items-center tw-w-full tw-mb-1">
50
53
  <kv-progress-bar
@@ -26,7 +26,7 @@ const Template = (args) => ({
26
26
  export const Default = Template.bind({});
27
27
  Default.args = {
28
28
  borrowerName: 'Jacqueline',
29
- category: 'Women-owned retail businesses',
29
+ category: 'Helping households mitigate or adapt to climate change',
30
30
  percentage: 45,
31
31
  showVoteButton: true,
32
32
  showInfoIcon: true,