@kiva/kv-components 3.22.1 → 3.22.3

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.22.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.22.2...@kiva/kv-components@3.22.3) (2023-06-02)
7
+
8
+ **Note:** Version bump only for package @kiva/kv-components
9
+
10
+
11
+
12
+
13
+
14
+ ## [3.22.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.22.1...@kiva/kv-components@3.22.2) (2023-05-29)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * regions watcher removed from location selector ([#255](https://github.com/kiva/kv-ui-elements/issues/255)) ([69a5c7b](https://github.com/kiva/kv-ui-elements/commit/69a5c7b8430f1732fb04d08aa2a6b4768720dbf4))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [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
26
 
8
27
  **Note:** Version bump only for package @kiva/kv-components
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.22.1",
3
+ "version": "3.22.3",
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": "352f3fda590da17b49c7cc4538228309acbf1da0"
78
+ "gitHead": "dd2af23865a3e623f8ab7275504be02ee5e6d873"
79
79
  }
@@ -67,10 +67,7 @@
67
67
  </menu>
68
68
  </fieldset>
69
69
  <div class="tw-hidden md:tw-flex tw-gap-2 tw-justify-end tw-mt-1.5">
70
- <button
71
- class="tw-text-link"
72
- @click="resetCountries"
73
- >
70
+ <button @click="resetCountries">
74
71
  Reset country selection
75
72
  </button>
76
73
 
@@ -216,13 +213,6 @@ export default {
216
213
  return total;
217
214
  };
218
215
 
219
- watch(regions, (val) => {
220
- if (displayedRegions.value.sort().toString() !== val.sort().toString()) {
221
- displayedRegions.value = val;
222
- }
223
- resetCountries();
224
- });
225
-
226
216
  watch(activeIsoCodes, (val) => {
227
217
  if (selected.value.sort().toString() !== val.sort().toString()) {
228
218
  selected.value = val;