@angular/forms 20.2.0-next.2 → 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 +133 -127
- package/fesm2022/forms.mjs.map +1 -1
- package/index.d.ts +2 -3
- 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
|
*/
|
|
@@ -284,7 +284,6 @@ declare class SelectControlValueAccessor extends BuiltInControlValueAccessor imp
|
|
|
284
284
|
set compareWith(fn: (o1: any, o2: any) => boolean);
|
|
285
285
|
private _compareWith;
|
|
286
286
|
private readonly appRefInjector;
|
|
287
|
-
private readonly appRefDestroyRef;
|
|
288
287
|
private readonly destroyRef;
|
|
289
288
|
private readonly cdr;
|
|
290
289
|
private _queuedWrite;
|
|
@@ -1102,7 +1101,7 @@ declare class FormArray<TControl extends AbstractControl<any> = any> extends Abs
|
|
|
1102
1101
|
* `valueChanges` observables emit events with the latest status and value when the control is
|
|
1103
1102
|
* inserted. When false, no events are emitted.
|
|
1104
1103
|
*/
|
|
1105
|
-
push(control: TControl
|
|
1104
|
+
push(control: TControl | Array<TControl>, options?: {
|
|
1106
1105
|
emitEvent?: boolean;
|
|
1107
1106
|
}): void;
|
|
1108
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": {
|