@rxdi/forms 0.7.166 → 0.7.168
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/dist/form.group.js +0 -3
- package/package.json +2 -2
package/dist/form.group.js
CHANGED
|
@@ -207,9 +207,6 @@ class FormGroup {
|
|
|
207
207
|
return;
|
|
208
208
|
}
|
|
209
209
|
const isInputPresent = Object.keys(this.value).filter(v => v === input.name);
|
|
210
|
-
if (!isInputPresent.length) {
|
|
211
|
-
console.error(`Missing input element with name ${input.name} for form ${this.getFormElement().name}`);
|
|
212
|
-
}
|
|
213
210
|
return isInputPresent.length;
|
|
214
211
|
}
|
|
215
212
|
validate(element) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdi/forms",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.168",
|
|
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.
|
|
15
|
+
"@rxdi/lit-html": "^0.7.167",
|
|
16
16
|
"@types/node": "^12.0.10",
|
|
17
17
|
"rxjs": "^7.8.0",
|
|
18
18
|
"typescript": "^4.3.5"
|