@ktjs/mui 0.18.8 → 0.18.9

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.
@@ -629,7 +629,7 @@ var __ktjs_mui__ = (function (exports, jsxRuntime, kt_js) {
629
629
  return checked;
630
630
  },
631
631
  set(newChecked) {
632
- checked = newChecked === value;
632
+ checked = newChecked;
633
633
  input.checked = checked;
634
634
  toggleIcon(checked);
635
635
  },
package/dist/index.mjs CHANGED
@@ -629,7 +629,7 @@ function Radio(props) {
629
629
  return checked;
630
630
  },
631
631
  set(newChecked) {
632
- checked = newChecked === value;
632
+ checked = newChecked;
633
633
  input.checked = checked;
634
634
  toggleIcon(checked);
635
635
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ktjs/mui",
3
- "version": "0.18.8",
3
+ "version": "0.18.9",
4
4
  "description": "Material-UI inspired components for kt.js - pre-styled UI components",
5
5
  "type": "module",
6
6
  "module": "./dist/index.mjs",