@kiva/kv-components 3.10.0 → 3.10.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,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.10.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.10.1...@kiva/kv-components@3.10.2) (2022-12-07)
7
+
8
+ **Note:** Version bump only for package @kiva/kv-components
9
+
10
+
11
+
12
+
13
+
14
+ ## [3.10.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.10.0...@kiva/kv-components@3.10.1) (2022-11-23)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * use value instead of ref ([8620e81](https://github.com/kiva/kv-ui-elements/commit/8620e81b5e3a5b649c3825b1a62be17cf1d8c72c))
20
+
21
+
22
+
23
+
24
+
6
25
  # [3.10.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.9.1...@kiva/kv-components@3.10.0) (2022-11-09)
7
26
 
8
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.10.0",
3
+ "version": "3.10.2",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -50,7 +50,7 @@
50
50
  "test": "npm run lint"
51
51
  },
52
52
  "dependencies": {
53
- "@kiva/kv-tokens": "^2.4.0",
53
+ "@kiva/kv-tokens": "^2.4.1",
54
54
  "@mdi/js": "^5.9.55",
55
55
  "@vueuse/integrations": "^7.6.0",
56
56
  "aria-hidden": "^1.1.3",
@@ -69,5 +69,5 @@
69
69
  "optional": true
70
70
  }
71
71
  },
72
- "gitHead": "6c36724fbfad7b16e6fc613769bb3ec9c5d682c0"
72
+ "gitHead": "7b0db8590c0c04d727b98365ee306c0cb14ce17f"
73
73
  }
@@ -90,9 +90,9 @@ export default {
90
90
  const titleSlugified = computed(() => paramCase(title.value));
91
91
 
92
92
  const toggleFAQ = () => {
93
- props.kvTrackFunction('faq', 'toggle', titleSlugified, open.value ? 'expand' : 'collapse');
93
+ props.kvTrackFunction('faq', 'toggle', titleSlugified.value, open.value ? 'expand' : 'collapse');
94
94
  open.value = !open.value;
95
- emit('toggle', { title: titleSlugified });
95
+ emit('toggle', { title: titleSlugified.value });
96
96
  };
97
97
 
98
98
  watch(active, (val) => {