@kiva/kv-components 3.22.0 → 3.22.1

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,14 @@
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.22.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.22.0...@kiva/kv-components@3.22.1) (2023-05-26)
7
+
8
+ **Note:** Version bump only for package @kiva/kv-components
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.22.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.21.2...@kiva/kv-components@3.22.0) (2023-05-24)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.22.0",
3
+ "version": "3.22.1",
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": "c5608d2e6311936eb4e27c6703512f88878fee6d"
78
+ "gitHead": "352f3fda590da17b49c7cc4538228309acbf1da0"
79
79
  }
@@ -60,7 +60,7 @@
60
60
  :disabled="item.disabled"
61
61
  @change="updateLocation"
62
62
  >
63
- {{ item.title }}
63
+ {{ item.title }} ({{ item.numberLoans }})
64
64
  </kv-checkbox>
65
65
  </li>
66
66
  </div>
@@ -165,6 +165,7 @@ export default {
165
165
  return countries.map((c) => ({
166
166
  value: c.isoCode,
167
167
  title: getItemLabel(c),
168
+ numberLoans: c.numLoansFundraising,
168
169
  disabled: c.numLoansFundraising === 0,
169
170
  }));
170
171
  };