@angular/forms 21.0.0-next.4 → 21.0.0-next.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/forms",
3
- "version": "21.0.0-next.4",
3
+ "version": "21.0.0-next.6",
4
4
  "description": "Angular - directives and services for creating forms",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -11,9 +11,9 @@
11
11
  "tslib": "^2.3.0"
12
12
  },
13
13
  "peerDependencies": {
14
- "@angular/core": "21.0.0-next.4",
15
- "@angular/common": "21.0.0-next.4",
16
- "@angular/platform-browser": "21.0.0-next.4",
14
+ "@angular/core": "21.0.0-next.6",
15
+ "@angular/common": "21.0.0-next.6",
16
+ "@angular/platform-browser": "21.0.0-next.6",
17
17
  "@standard-schema/spec": "^1.0.0",
18
18
  "rxjs": "^6.5.3 || ^7.4.0"
19
19
  },
@@ -44,18 +44,18 @@
44
44
  },
45
45
  "sideEffects": false,
46
46
  "module": "./fesm2022/forms.mjs",
47
- "typings": "./index.d.ts",
47
+ "typings": "./types/forms.d.ts",
48
48
  "type": "module",
49
49
  "exports": {
50
50
  "./package.json": {
51
51
  "default": "./package.json"
52
52
  },
53
53
  ".": {
54
- "types": "./index.d.ts",
54
+ "types": "./types/forms.d.ts",
55
55
  "default": "./fesm2022/forms.mjs"
56
56
  },
57
57
  "./signals": {
58
- "types": "./signals/index.d.ts",
58
+ "types": "./types/signals.d.ts",
59
59
  "default": "./fesm2022/signals.mjs"
60
60
  }
61
61
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.0.0-next.4
2
+ * @license Angular v21.0.0-next.6
3
3
  * (c) 2010-2025 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -3028,6 +3028,8 @@ declare abstract class AbstractControl<TValue = any, TRawValue extends TValue =
3028
3028
  *
3029
3029
  * Calling `setErrors` also updates the validity of the parent control.
3030
3030
  *
3031
+ * Note: Manually set errors are always overwritten by the results of the next validation run.
3032
+ *
3031
3033
  * @param opts Configuration options that determine how the control propagates
3032
3034
  * changes and emits events after the control errors are set.
3033
3035
  * * `emitEvent`: When true or not supplied (the default), the `statusChanges`