@rxdi/forms 0.7.160 → 0.7.162

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.
@@ -296,6 +296,9 @@ class FormGroup {
296
296
  }
297
297
  setValue(name, value) {
298
298
  const input = this.get(name);
299
+ if (!input) {
300
+ return;
301
+ }
299
302
  input.value = value;
300
303
  const values = this.value;
301
304
  values[name] = value;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdi/forms",
3
- "version": "0.7.160",
3
+ "version": "0.7.162",
4
4
  "main": "./dist/index.js",
5
5
  "author": "Kristiyan Tachev",
6
6
  "license": "MIT",
@@ -12,7 +12,7 @@
12
12
  "build": "tsc || true"
13
13
  },
14
14
  "devDependencies": {
15
- "@rxdi/lit-html": "^0.7.159",
15
+ "@rxdi/lit-html": "^0.7.161",
16
16
  "@types/node": "^12.0.10",
17
17
  "rxjs": "^6.5.3",
18
18
  "typescript": "^4.3.5"