@carbon/vue 3.0.15 → 3.0.16
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/dist/carbon-vue-3.common.js +2 -2
- package/dist/carbon-vue-3.common.js.map +1 -1
- package/dist/carbon-vue-3.umd.js +2 -2
- package/dist/carbon-vue-3.umd.js.map +1 -1
- package/dist/carbon-vue-3.umd.min.js +1 -1
- package/dist/carbon-vue-3.umd.min.js.map +1 -1
- package/dist/web-types.json +1 -1
- package/package.json +10 -8
- package/src/components/CvCheckbox/CvCheckbox.vue +2 -2
package/dist/carbon-vue-3.umd.js
CHANGED
|
@@ -2500,11 +2500,11 @@ var _hoisted_2 = ["for"];
|
|
|
2500
2500
|
var hasFocus = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.ref)(false);
|
|
2501
2501
|
|
|
2502
2502
|
function onFocus() {
|
|
2503
|
-
hasFocus = true;
|
|
2503
|
+
hasFocus.value = true;
|
|
2504
2504
|
}
|
|
2505
2505
|
|
|
2506
2506
|
function onBlur() {
|
|
2507
|
-
hasFocus = false;
|
|
2507
|
+
hasFocus.value = false;
|
|
2508
2508
|
}
|
|
2509
2509
|
|
|
2510
2510
|
var cvId = (0,use_cvId/* useCvId */.l)(props);
|