@sysvale/cuida 3.0.0-beta.42 → 3.0.0-beta.44
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/README.md +1 -1
- package/dist/@sysvale/cuida.es.js +8 -0
- package/dist/@sysvale/cuida.umd.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<a href="https://sysvale.github.io/cuida">
|
|
3
|
-
<img src="https://
|
|
3
|
+
<img src="https://framerusercontent.com/images/xz7CrU73qctPY2Vm79XMnTAVM.svg" alt="Cuida logo" width="250" />
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
@@ -2891,6 +2891,14 @@ const WS = {
|
|
|
2891
2891
|
isChecked: this.modelValue
|
|
2892
2892
|
};
|
|
2893
2893
|
},
|
|
2894
|
+
watch: {
|
|
2895
|
+
modelValue: {
|
|
2896
|
+
handler(e, t) {
|
|
2897
|
+
e !== t && (this.isChecked = this.modelValue);
|
|
2898
|
+
},
|
|
2899
|
+
immediate: !0
|
|
2900
|
+
}
|
|
2901
|
+
},
|
|
2894
2902
|
methods: {
|
|
2895
2903
|
toggleValue() {
|
|
2896
2904
|
this.disabled || (this.isChecked = !this.isChecked, this.$emit("update:modelValue", this.isChecked));
|