@sysvale/cuida 3.0.0-beta.42 → 3.0.0-beta.43

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.
@@ -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));