@angular/forms 19.1.6 → 19.1.8

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.1.6
2
+ * @license Angular v19.1.8
3
3
  * (c) 2010-2024 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1896,7 +1896,6 @@ export declare class FormArrayName extends ControlContainer implements OnInit, O
1896
1896
  * Each index is the string name of the control on that level.
1897
1897
  */
1898
1898
  get path(): string[];
1899
- private _checkParentType;
1900
1899
  static ɵfac: i0.ɵɵFactoryDeclaration<FormArrayName, [{ optional: true; host: true; skipSelf: true; }, { optional: true; self: true; }, { optional: true; self: true; }]>;
1901
1900
  static ɵdir: i0.ɵɵDirectiveDeclaration<FormArrayName, "[formArrayName]", never, { "name": { "alias": "formArrayName"; "required": false; }; }, {}, never, never, false, never>;
1902
1901
  }
@@ -2451,7 +2450,6 @@ export declare class FormControlName extends NgControl implements OnChanges, OnD
2451
2450
  * The top-level directive for this group if present, otherwise null.
2452
2451
  */
2453
2452
  get formDirective(): any;
2454
- private _checkParentType;
2455
2453
  private _setUpControl;
2456
2454
  static ɵfac: i0.ɵɵFactoryDeclaration<FormControlName, [{ optional: true; host: true; skipSelf: true; }, { optional: true; self: true; }, { optional: true; self: true; }, { optional: true; self: true; }, { optional: true; }]>;
2457
2455
  static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlName, "[formControlName]", never, { "name": { "alias": "formControlName"; "required": false; }; "isDisabled": { "alias": "disabled"; "required": false; }; "model": { "alias": "ngModel"; "required": false; }; }, { "update": "ngModelChange"; }, never, never, false, never>;
@@ -3037,7 +3035,6 @@ export declare class FormGroupDirective extends ControlContainer implements Form
3037
3035
  private _cleanUpFormContainer;
3038
3036
  private _updateRegistrations;
3039
3037
  private _updateValidators;
3040
- private _checkFormPresent;
3041
3038
  static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupDirective, [{ optional: true; self: true; }, { optional: true; self: true; }, { optional: true; }]>;
3042
3039
  static ɵdir: i0.ɵɵDirectiveDeclaration<FormGroupDirective, "[formGroup]", ["ngForm"], { "form": { "alias": "formGroup"; "required": false; }; }, { "ngSubmit": "ngSubmit"; }, never, never, false, never>;
3043
3040
  }
@@ -3175,7 +3172,7 @@ export declare interface FormRecord<TControl> {
3175
3172
  * See `FormGroup#setValue` for additional information.
3176
3173
  */
3177
3174
  setValue(value: {
3178
- [key: string]: ɵValue<TControl>;
3175
+ [key: string]: ɵRawValue<TControl>;
3179
3176
  }, options?: {
3180
3177
  onlySelf?: boolean;
3181
3178
  emitEvent?: boolean;
@@ -4156,7 +4153,6 @@ export declare class NgModel extends NgControl implements OnChanges, OnDestroy {
4156
4153
  private _isStandalone;
4157
4154
  private _setUpStandalone;
4158
4155
  private _checkForErrors;
4159
- private _checkParentType;
4160
4156
  private _checkName;
4161
4157
  private _updateValue;
4162
4158
  private _updateDisabled;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/forms",
3
- "version": "19.1.6",
3
+ "version": "19.1.8",
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.1.6",
15
- "@angular/common": "19.1.6",
16
- "@angular/platform-browser": "19.1.6",
14
+ "@angular/core": "19.1.8",
15
+ "@angular/common": "19.1.8",
16
+ "@angular/platform-browser": "19.1.8",
17
17
  "rxjs": "^6.5.3 || ^7.4.0"
18
18
  },
19
19
  "repository": {