@angular/forms 19.2.0-next.3 → 19.2.0-rc.0

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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.2.0-next.3
2
+ * @license Angular v19.2.0-rc.0
3
3
  * (c) 2010-2024 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -3037,7 +3037,6 @@ export declare class FormGroupDirective extends ControlContainer implements Form
3037
3037
  private _cleanUpFormContainer;
3038
3038
  private _updateRegistrations;
3039
3039
  private _updateValidators;
3040
- private _checkFormPresent;
3041
3040
  static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupDirective, [{ optional: true; self: true; }, { optional: true; self: true; }, { optional: true; }]>;
3042
3041
  static ɵdir: i0.ɵɵDirectiveDeclaration<FormGroupDirective, "[formGroup]", ["ngForm"], { "form": { "alias": "formGroup"; "required": false; }; }, { "ngSubmit": "ngSubmit"; }, never, never, false, never>;
3043
3042
  }
@@ -3175,7 +3174,7 @@ export declare interface FormRecord<TControl> {
3175
3174
  * See `FormGroup#setValue` for additional information.
3176
3175
  */
3177
3176
  setValue(value: {
3178
- [key: string]: ɵValue<TControl>;
3177
+ [key: string]: ɵRawValue<TControl>;
3179
3178
  }, options?: {
3180
3179
  onlySelf?: boolean;
3181
3180
  emitEvent?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/forms",
3
- "version": "19.2.0-next.3",
3
+ "version": "19.2.0-rc.0",
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": "19.2.0-next.3",
15
- "@angular/common": "19.2.0-next.3",
16
- "@angular/platform-browser": "19.2.0-next.3",
14
+ "@angular/core": "19.2.0-rc.0",
15
+ "@angular/common": "19.2.0-rc.0",
16
+ "@angular/platform-browser": "19.2.0-rc.0",
17
17
  "rxjs": "^6.5.3 || ^7.4.0"
18
18
  },
19
19
  "repository": {