ps-toolkit-ui 0.2.96 → 0.2.97

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.
@@ -3546,10 +3546,10 @@
3546
3546
  FormCheckboxComponent.prototype.setValue = function (v) {
3547
3547
  this.inp.value = v;
3548
3548
  if (v) {
3549
- $(this.inputBase.nativeElement).addClass('checked');
3549
+ $(this.inputCon.nativeElement).addClass('checked');
3550
3550
  }
3551
3551
  else {
3552
- $(this.inputBase.nativeElement).removeClass('checked');
3552
+ $(this.inputCon.nativeElement).removeClass('checked');
3553
3553
  }
3554
3554
  };
3555
3555
  FormCheckboxComponent.prototype.onChange = function () {