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.
- package/bundles/ps-toolkit-ui.umd.js +2 -2
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/components/form/checkbox/form.checkbox.component.js +3 -3
- package/fesm2015/ps-toolkit-ui.js +2 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3546,10 +3546,10 @@
|
|
|
3546
3546
|
FormCheckboxComponent.prototype.setValue = function (v) {
|
|
3547
3547
|
this.inp.value = v;
|
|
3548
3548
|
if (v) {
|
|
3549
|
-
$(this.
|
|
3549
|
+
$(this.inputCon.nativeElement).addClass('checked');
|
|
3550
3550
|
}
|
|
3551
3551
|
else {
|
|
3552
|
-
$(this.
|
|
3552
|
+
$(this.inputCon.nativeElement).removeClass('checked');
|
|
3553
3553
|
}
|
|
3554
3554
|
};
|
|
3555
3555
|
FormCheckboxComponent.prototype.onChange = function () {
|