@rxdi/forms 0.7.233 → 0.7.234

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.
@@ -512,6 +512,9 @@ class FormGroup {
512
512
  if (Array.isArray(modelValue)) {
513
513
  e.checked = modelValue.includes(e.value);
514
514
  }
515
+ else if (typeof modelValue === 'boolean') {
516
+ e.checked = modelValue;
517
+ }
515
518
  else {
516
519
  e.checked = modelValue === e.value;
517
520
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdi/forms",
3
- "version": "0.7.233",
3
+ "version": "0.7.234",
4
4
  "main": "./dist/index.js",
5
5
  "author": "Kristiyan Tachev",
6
6
  "license": "MIT",
@@ -12,7 +12,7 @@
12
12
  "build": "tsc"
13
13
  },
14
14
  "devDependencies": {
15
- "@rxdi/lit-html": "^0.7.232",
15
+ "@rxdi/lit-html": "^0.7.233",
16
16
  "@types/node": "^25.0.3",
17
17
  "rxjs": "^7.8.2",
18
18
  "typescript": "^5.9.3"