@angular/forms 20.2.0-next.3 → 20.2.0-next.4
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/fesm2022/forms.mjs +132 -124
- package/fesm2022/forms.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.2.0-next.
|
|
2
|
+
* @license Angular v20.2.0-next.4
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1101,7 +1101,7 @@ declare class FormArray<TControl extends AbstractControl<any> = any> extends Abs
|
|
|
1101
1101
|
* `valueChanges` observables emit events with the latest status and value when the control is
|
|
1102
1102
|
* inserted. When false, no events are emitted.
|
|
1103
1103
|
*/
|
|
1104
|
-
push(control: TControl
|
|
1104
|
+
push(control: TControl | Array<TControl>, options?: {
|
|
1105
1105
|
emitEvent?: boolean;
|
|
1106
1106
|
}): void;
|
|
1107
1107
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/forms",
|
|
3
|
-
"version": "20.2.0-next.
|
|
3
|
+
"version": "20.2.0-next.4",
|
|
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": "20.2.0-next.
|
|
15
|
-
"@angular/common": "20.2.0-next.
|
|
16
|
-
"@angular/platform-browser": "20.2.0-next.
|
|
14
|
+
"@angular/core": "20.2.0-next.4",
|
|
15
|
+
"@angular/common": "20.2.0-next.4",
|
|
16
|
+
"@angular/platform-browser": "20.2.0-next.4",
|
|
17
17
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|