@kiva/kv-components 3.0.2 → 3.0.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 +12 -0
- package/package.json +2 -2
- package/vue/KvRadio.vue +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.0.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.0.2...@kiva/kv-components@3.0.3) (2022-05-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* added back initial uuid value. ([aa4a88c](https://github.com/kiva/kv-ui-elements/commit/aa4a88c5a65846e9103ce25985bd7d1cc7bfd025))
|
|
12
|
+
* label and input uuids didn't match ([742452a](https://github.com/kiva/kv-ui-elements/commit/742452a9ffe03980f10f444a99f253429d028170))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [3.0.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.0.1...@kiva/kv-components@3.0.2) (2022-03-18)
|
|
7
19
|
|
|
8
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"optional": true
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "bf6cb32b35ce31c41323b3733a7231708876987e"
|
|
72
72
|
}
|
package/vue/KvRadio.vue
CHANGED
|
@@ -151,7 +151,7 @@ export default {
|
|
|
151
151
|
modelValue,
|
|
152
152
|
} = toRefs(props);
|
|
153
153
|
|
|
154
|
-
|
|
154
|
+
const uuid = ref(`kvr-${nanoid(10)}`);
|
|
155
155
|
const radioRef = ref(null);
|
|
156
156
|
|
|
157
157
|
const {
|
|
@@ -169,7 +169,7 @@ export default {
|
|
|
169
169
|
});
|
|
170
170
|
|
|
171
171
|
onMounted(() => {
|
|
172
|
-
uuid = `kvr-${nanoid(10)}`;
|
|
172
|
+
uuid.value = `kvr-${nanoid(10)}`;
|
|
173
173
|
});
|
|
174
174
|
|
|
175
175
|
const onChange = (event) => {
|