@rxdi/forms 0.7.148 → 0.7.149

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.
@@ -220,9 +220,9 @@ class FormGroup {
220
220
  .map(v => {
221
221
  this.errors[element.name] = this.errors[element.name] || {};
222
222
  const error = v.bind(this.getParentElement())(element);
223
- if (error) {
224
- element.focus();
225
- }
223
+ // if (error) {
224
+ // element.focus();
225
+ // }
226
226
  if (error && error.key) {
227
227
  this.errors[element.name][error.key] = error.message;
228
228
  this.errorMap.set(v, error.key);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rxdi/forms",
3
- "version": "0.7.148",
3
+ "version": "0.7.149",
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.147",
15
+ "@rxdi/lit-html": "^0.7.148",
16
16
  "@types/node": "^12.0.10",
17
17
  "rxjs": "^6.5.3",
18
18
  "typescript": "^4.3.5"