@angular/forms 20.1.0-next.0 → 20.1.0-next.1
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 +174 -126
- package/fesm2022/forms.mjs.map +1 -1
- package/index.d.ts +6 -1
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.1.0-next.
|
|
2
|
+
* @license Angular v20.1.0-next.1
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -283,6 +283,11 @@ declare class SelectControlValueAccessor extends BuiltInControlValueAccessor imp
|
|
|
283
283
|
*/
|
|
284
284
|
set compareWith(fn: (o1: any, o2: any) => boolean);
|
|
285
285
|
private _compareWith;
|
|
286
|
+
private readonly appRefInjector;
|
|
287
|
+
private readonly appRefDestroyRef;
|
|
288
|
+
private readonly destroyRef;
|
|
289
|
+
private readonly cdr;
|
|
290
|
+
private _queuedWrite;
|
|
286
291
|
/**
|
|
287
292
|
* Sets the "value" property on the select element.
|
|
288
293
|
* @docs-private
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/forms",
|
|
3
|
-
"version": "20.1.0-next.
|
|
3
|
+
"version": "20.1.0-next.1",
|
|
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.1.0-next.
|
|
15
|
-
"@angular/common": "20.1.0-next.
|
|
16
|
-
"@angular/platform-browser": "20.1.0-next.
|
|
14
|
+
"@angular/core": "20.1.0-next.1",
|
|
15
|
+
"@angular/common": "20.1.0-next.1",
|
|
16
|
+
"@angular/platform-browser": "20.1.0-next.1",
|
|
17
17
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|