@angular/forms 16.0.1 → 16.1.0-next.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.
Files changed (27) hide show
  1. package/esm2022/src/directives/abstract_form_group_directive.mjs +3 -3
  2. package/esm2022/src/directives/checkbox_value_accessor.mjs +3 -3
  3. package/esm2022/src/directives/control_value_accessor.mjs +6 -6
  4. package/esm2022/src/directives/default_value_accessor.mjs +3 -3
  5. package/esm2022/src/directives/ng_control_status.mjs +6 -6
  6. package/esm2022/src/directives/ng_form.mjs +3 -3
  7. package/esm2022/src/directives/ng_model.mjs +3 -3
  8. package/esm2022/src/directives/ng_model_group.mjs +3 -3
  9. package/esm2022/src/directives/ng_no_validate_directive.mjs +3 -3
  10. package/esm2022/src/directives/number_value_accessor.mjs +3 -3
  11. package/esm2022/src/directives/radio_control_value_accessor.mjs +10 -10
  12. package/esm2022/src/directives/range_value_accessor.mjs +3 -3
  13. package/esm2022/src/directives/reactive_directives/form_control_directive.mjs +3 -3
  14. package/esm2022/src/directives/reactive_directives/form_control_name.mjs +3 -3
  15. package/esm2022/src/directives/reactive_directives/form_group_directive.mjs +3 -3
  16. package/esm2022/src/directives/reactive_directives/form_group_name.mjs +6 -6
  17. package/esm2022/src/directives/select_control_value_accessor.mjs +6 -6
  18. package/esm2022/src/directives/select_multiple_control_value_accessor.mjs +6 -6
  19. package/esm2022/src/directives/validators.mjs +27 -27
  20. package/esm2022/src/directives.mjs +4 -4
  21. package/esm2022/src/form_builder.mjs +9 -9
  22. package/esm2022/src/form_providers.mjs +8 -8
  23. package/esm2022/src/version.mjs +1 -1
  24. package/fesm2022/forms.mjs +126 -126
  25. package/fesm2022/forms.mjs.map +1 -1
  26. package/index.d.ts +33 -33
  27. package/package.json +4 -4
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.0.1
2
+ * @license Angular v16.1.0-next.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -907,7 +907,7 @@ export declare class AbstractFormGroupDirective extends ControlContainer impleme
907
907
  */
908
908
  get formDirective(): Form | null;
909
909
  static ɵfac: i0.ɵɵFactoryDeclaration<AbstractFormGroupDirective, never>;
910
- static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFormGroupDirective, never, never, {}, {}, never, never, false, never>;
910
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractFormGroupDirective, never, never, {}, {}, never, never, false, never, false>;
911
911
  }
912
912
 
913
913
  /**
@@ -934,7 +934,7 @@ declare abstract class AbstractValidatorDirective implements Validator, OnChange
934
934
  */
935
935
  enabled(input: unknown): boolean;
936
936
  static ɵfac: i0.ɵɵFactoryDeclaration<AbstractValidatorDirective, never>;
937
- static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractValidatorDirective, never, never, {}, {}, never, never, false, never>;
937
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractValidatorDirective, never, never, {}, {}, never, never, false, never, false>;
938
938
  }
939
939
 
940
940
  /**
@@ -1033,7 +1033,7 @@ declare class BaseControlValueAccessor {
1033
1033
  */
1034
1034
  setDisabledState(isDisabled: boolean): void;
1035
1035
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseControlValueAccessor, never>;
1036
- static ɵdir: i0.ɵɵDirectiveDeclaration<BaseControlValueAccessor, never, never, {}, {}, never, never, false, never>;
1036
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BaseControlValueAccessor, never, never, {}, {}, never, never, false, never, false>;
1037
1037
  }
1038
1038
 
1039
1039
  /**
@@ -1047,7 +1047,7 @@ declare class BaseControlValueAccessor {
1047
1047
  */
1048
1048
  declare class BuiltInControlValueAccessor extends BaseControlValueAccessor {
1049
1049
  static ɵfac: i0.ɵɵFactoryDeclaration<BuiltInControlValueAccessor, never>;
1050
- static ɵdir: i0.ɵɵDirectiveDeclaration<BuiltInControlValueAccessor, never, never, {}, {}, never, never, false, never>;
1050
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BuiltInControlValueAccessor, never, never, {}, {}, never, never, false, never, false>;
1051
1051
  }
1052
1052
 
1053
1053
  /**
@@ -1094,7 +1094,7 @@ export declare class CheckboxControlValueAccessor extends BuiltInControlValueAcc
1094
1094
  */
1095
1095
  writeValue(value: any): void;
1096
1096
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxControlValueAccessor, never>;
1097
- static ɵdir: i0.ɵɵDirectiveDeclaration<CheckboxControlValueAccessor, "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]", never, {}, {}, never, never, false, never>;
1097
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CheckboxControlValueAccessor, "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]", never, {}, {}, never, never, false, never, false>;
1098
1098
  }
1099
1099
 
1100
1100
  /**
@@ -1120,7 +1120,7 @@ export declare class CheckboxControlValueAccessor extends BuiltInControlValueAcc
1120
1120
  */
1121
1121
  export declare class CheckboxRequiredValidator extends RequiredValidator {
1122
1122
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxRequiredValidator, never>;
1123
- static ɵdir: i0.ɵɵDirectiveDeclaration<CheckboxRequiredValidator, "input[type=checkbox][required][formControlName],input[type=checkbox][required][formControl],input[type=checkbox][required][ngModel]", never, {}, {}, never, never, false, never>;
1123
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CheckboxRequiredValidator, "input[type=checkbox][required][formControlName],input[type=checkbox][required][formControl],input[type=checkbox][required][ngModel]", never, {}, {}, never, never, false, never, false>;
1124
1124
  }
1125
1125
 
1126
1126
  /**
@@ -1332,7 +1332,7 @@ export declare class DefaultValueAccessor extends BaseControlValueAccessor imple
1332
1332
  */
1333
1333
  writeValue(value: any): void;
1334
1334
  static ɵfac: i0.ɵɵFactoryDeclaration<DefaultValueAccessor, [null, null, { optional: true; }]>;
1335
- static ɵdir: i0.ɵɵDirectiveDeclaration<DefaultValueAccessor, "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]", never, {}, {}, never, never, false, never>;
1335
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DefaultValueAccessor, "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]", never, {}, {}, never, never, false, never, false>;
1336
1336
  }
1337
1337
 
1338
1338
  /**
@@ -1377,7 +1377,7 @@ export declare class EmailValidator extends AbstractValidatorDirective {
1377
1377
  /** @nodoc */
1378
1378
  enabled(input: boolean): boolean;
1379
1379
  static ɵfac: i0.ɵɵFactoryDeclaration<EmailValidator, never>;
1380
- static ɵdir: i0.ɵɵDirectiveDeclaration<EmailValidator, "[email][formControlName],[email][formControl],[email][ngModel]", never, { "email": { "alias": "email"; "required": false; }; }, {}, never, never, false, never>;
1380
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EmailValidator, "[email][formControlName],[email][formControl],[email][ngModel]", never, { "email": { "alias": "email"; "required": false; }; }, {}, never, never, false, never, false>;
1381
1381
  }
1382
1382
 
1383
1383
  /**
@@ -1834,7 +1834,7 @@ export declare class FormArrayName extends ControlContainer implements OnInit, O
1834
1834
  get path(): string[];
1835
1835
  private _checkParentType;
1836
1836
  static ɵfac: i0.ɵɵFactoryDeclaration<FormArrayName, [{ optional: true; host: true; skipSelf: true; }, { optional: true; self: true; }, { optional: true; self: true; }]>;
1837
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormArrayName, "[formArrayName]", never, { "name": { "alias": "formArrayName"; "required": false; }; }, {}, never, never, false, never>;
1837
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormArrayName, "[formArrayName]", never, { "name": { "alias": "formArrayName"; "required": false; }; }, {}, never, never, false, never, false>;
1838
1838
  }
1839
1839
 
1840
1840
  declare const formArrayNameProvider: any;
@@ -2305,7 +2305,7 @@ export declare class FormControlDirective extends NgControl implements OnChanges
2305
2305
  viewToModelUpdate(newValue: any): void;
2306
2306
  private _isControlChanged;
2307
2307
  static ɵfac: i0.ɵɵFactoryDeclaration<FormControlDirective, [{ optional: true; self: true; }, { optional: true; self: true; }, { optional: true; self: true; }, { optional: true; }, { optional: true; }]>;
2308
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlDirective, "[formControl]", ["ngForm"], { "form": { "alias": "formControl"; "required": false; }; "isDisabled": { "alias": "disabled"; "required": false; }; "model": { "alias": "ngModel"; "required": false; }; }, { "update": "ngModelChange"; }, never, never, false, never>;
2308
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormControlDirective, "[formControl]", ["ngForm"], { "form": { "alias": "formControl"; "required": false; }; "isDisabled": { "alias": "disabled"; "required": false; }; "model": { "alias": "ngModel"; "required": false; }; }, { "update": "ngModelChange"; }, never, never, false, never, false>;
2309
2309
  }
2310
2310
 
2311
2311
  /**
@@ -2395,7 +2395,7 @@ export declare class FormControlName extends NgControl implements OnChanges, OnD
2395
2395
  private _checkParentType;
2396
2396
  private _setUpControl;
2397
2397
  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; }]>;
2398
- 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>;
2398
+ 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, false>;
2399
2399
  }
2400
2400
 
2401
2401
  /**
@@ -2978,7 +2978,7 @@ export declare class FormGroupDirective extends ControlContainer implements Form
2978
2978
  private _updateValidators;
2979
2979
  private _checkFormPresent;
2980
2980
  static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupDirective, [{ optional: true; self: true; }, { optional: true; self: true; }, { optional: true; }]>;
2981
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormGroupDirective, "[formGroup]", ["ngForm"], { "form": { "alias": "formGroup"; "required": false; }; }, { "ngSubmit": "ngSubmit"; }, never, never, false, never>;
2981
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormGroupDirective, "[formGroup]", ["ngForm"], { "form": { "alias": "formGroup"; "required": false; }; }, { "ngSubmit": "ngSubmit"; }, never, never, false, never, false>;
2982
2982
  }
2983
2983
 
2984
2984
  /**
@@ -3041,7 +3041,7 @@ export declare class FormGroupName extends AbstractFormGroupDirective implements
3041
3041
  name: string | number | null;
3042
3042
  constructor(parent: ControlContainer, validators: (Validator | ValidatorFn)[], asyncValidators: (AsyncValidator | AsyncValidatorFn)[]);
3043
3043
  static ɵfac: i0.ɵɵFactoryDeclaration<FormGroupName, [{ optional: true; host: true; skipSelf: true; }, { optional: true; self: true; }, { optional: true; self: true; }]>;
3044
- static ɵdir: i0.ɵɵDirectiveDeclaration<FormGroupName, "[formGroupName]", never, { "name": { "alias": "formGroupName"; "required": false; }; }, {}, never, never, false, never>;
3044
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FormGroupName, "[formGroupName]", never, { "name": { "alias": "formGroupName"; "required": false; }; }, {}, never, never, false, never, false>;
3045
3045
  }
3046
3046
 
3047
3047
  declare type FormHooks = 'change' | 'blur' | 'submit';
@@ -3426,7 +3426,7 @@ export declare class MaxLengthValidator extends AbstractValidatorDirective {
3426
3426
  */
3427
3427
  maxlength: string | number | null;
3428
3428
  static ɵfac: i0.ɵɵFactoryDeclaration<MaxLengthValidator, never>;
3429
- static ɵdir: i0.ɵɵDirectiveDeclaration<MaxLengthValidator, "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", never, { "maxlength": { "alias": "maxlength"; "required": false; }; }, {}, never, never, false, never>;
3429
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MaxLengthValidator, "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", never, { "maxlength": { "alias": "maxlength"; "required": false; }; }, {}, never, never, false, never, false>;
3430
3430
  }
3431
3431
 
3432
3432
  /**
@@ -3457,7 +3457,7 @@ export declare class MaxValidator extends AbstractValidatorDirective {
3457
3457
  */
3458
3458
  max: string | number | null;
3459
3459
  static ɵfac: i0.ɵɵFactoryDeclaration<MaxValidator, never>;
3460
- static ɵdir: i0.ɵɵDirectiveDeclaration<MaxValidator, "input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]", never, { "max": { "alias": "max"; "required": false; }; }, {}, never, never, false, never>;
3460
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MaxValidator, "input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]", never, { "max": { "alias": "max"; "required": false; }; }, {}, never, never, false, never, false>;
3461
3461
  }
3462
3462
 
3463
3463
  /**
@@ -3500,7 +3500,7 @@ export declare class MinLengthValidator extends AbstractValidatorDirective {
3500
3500
  */
3501
3501
  minlength: string | number | null;
3502
3502
  static ɵfac: i0.ɵɵFactoryDeclaration<MinLengthValidator, never>;
3503
- static ɵdir: i0.ɵɵDirectiveDeclaration<MinLengthValidator, "[minlength][formControlName],[minlength][formControl],[minlength][ngModel]", never, { "minlength": { "alias": "minlength"; "required": false; }; }, {}, never, never, false, never>;
3503
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MinLengthValidator, "[minlength][formControlName],[minlength][formControl],[minlength][ngModel]", never, { "minlength": { "alias": "minlength"; "required": false; }; }, {}, never, never, false, never, false>;
3504
3504
  }
3505
3505
 
3506
3506
  /**
@@ -3531,7 +3531,7 @@ export declare class MinValidator extends AbstractValidatorDirective {
3531
3531
  */
3532
3532
  min: string | number | null;
3533
3533
  static ɵfac: i0.ɵɵFactoryDeclaration<MinValidator, never>;
3534
- static ɵdir: i0.ɵɵDirectiveDeclaration<MinValidator, "input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]", never, { "min": { "alias": "min"; "required": false; }; }, {}, never, never, false, never>;
3534
+ static ɵdir: i0.ɵɵDirectiveDeclaration<MinValidator, "input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]", never, { "min": { "alias": "min"; "required": false; }; }, {}, never, never, false, never, false>;
3535
3535
  }
3536
3536
 
3537
3537
  declare const modelGroupProvider: any;
@@ -3664,7 +3664,7 @@ export declare abstract class NgControl extends AbstractControlDirective {
3664
3664
  export declare class NgControlStatus extends AbstractControlStatus {
3665
3665
  constructor(cd: NgControl);
3666
3666
  static ɵfac: i0.ɵɵFactoryDeclaration<NgControlStatus, [{ self: true; }]>;
3667
- static ɵdir: i0.ɵɵDirectiveDeclaration<NgControlStatus, "[formControlName],[ngModel],[formControl]", never, {}, {}, never, never, false, never>;
3667
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgControlStatus, "[formControlName],[ngModel],[formControl]", never, {}, {}, never, never, false, never, false>;
3668
3668
  }
3669
3669
 
3670
3670
  /**
@@ -3682,7 +3682,7 @@ export declare class NgControlStatus extends AbstractControlStatus {
3682
3682
  export declare class NgControlStatusGroup extends AbstractControlStatus {
3683
3683
  constructor(cd: ControlContainer);
3684
3684
  static ɵfac: i0.ɵɵFactoryDeclaration<NgControlStatusGroup, [{ optional: true; self: true; }]>;
3685
- static ɵdir: i0.ɵɵDirectiveDeclaration<NgControlStatusGroup, "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]", never, {}, {}, never, never, false, never>;
3685
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgControlStatusGroup, "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]", never, {}, {}, never, never, false, never, false>;
3686
3686
  }
3687
3687
 
3688
3688
  declare const ngControlStatusHost: {
@@ -3897,7 +3897,7 @@ export declare class NgForm extends ControlContainer implements Form, AfterViewI
3897
3897
  private _setUpdateStrategy;
3898
3898
  private _findContainer;
3899
3899
  static ɵfac: i0.ɵɵFactoryDeclaration<NgForm, [{ optional: true; self: true; }, { optional: true; self: true; }, { optional: true; }]>;
3900
- static ɵdir: i0.ɵɵDirectiveDeclaration<NgForm, "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", ["ngForm"], { "options": { "alias": "ngFormOptions"; "required": false; }; }, { "ngSubmit": "ngSubmit"; }, never, never, false, never>;
3900
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgForm, "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", ["ngForm"], { "options": { "alias": "ngFormOptions"; "required": false; }; }, { "ngSubmit": "ngSubmit"; }, never, never, false, never, false>;
3901
3901
  }
3902
3902
 
3903
3903
  declare const ngGroupStatusHost: {
@@ -4084,7 +4084,7 @@ export declare class NgModel extends NgControl implements OnChanges, OnDestroy {
4084
4084
  private _updateDisabled;
4085
4085
  private _getPath;
4086
4086
  static ɵfac: i0.ɵɵFactoryDeclaration<NgModel, [{ optional: true; host: true; }, { optional: true; self: true; }, { optional: true; self: true; }, { optional: true; self: true; }, { optional: true; }, { optional: true; }]>;
4087
- static ɵdir: i0.ɵɵDirectiveDeclaration<NgModel, "[ngModel]:not([formControlName]):not([formControl])", ["ngModel"], { "name": { "alias": "name"; "required": false; }; "isDisabled": { "alias": "disabled"; "required": false; }; "model": { "alias": "ngModel"; "required": false; }; "options": { "alias": "ngModelOptions"; "required": false; }; }, { "update": "ngModelChange"; }, never, never, false, never>;
4087
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgModel, "[ngModel]:not([formControlName]):not([formControl])", ["ngModel"], { "name": { "alias": "name"; "required": false; }; "isDisabled": { "alias": "disabled"; "required": false; }; "model": { "alias": "ngModel"; "required": false; }; "options": { "alias": "ngModelOptions"; "required": false; }; }, { "update": "ngModelChange"; }, never, never, false, never, false>;
4088
4088
  }
4089
4089
 
4090
4090
  /**
@@ -4122,7 +4122,7 @@ export declare class NgModelGroup extends AbstractFormGroupDirective implements
4122
4122
  name: string;
4123
4123
  constructor(parent: ControlContainer, validators: (Validator | ValidatorFn)[], asyncValidators: (AsyncValidator | AsyncValidatorFn)[]);
4124
4124
  static ɵfac: i0.ɵɵFactoryDeclaration<NgModelGroup, [{ host: true; skipSelf: true; }, { optional: true; self: true; }, { optional: true; self: true; }]>;
4125
- static ɵdir: i0.ɵɵDirectiveDeclaration<NgModelGroup, "[ngModelGroup]", ["ngModelGroup"], { "name": { "alias": "ngModelGroup"; "required": false; }; }, {}, never, never, false, never>;
4125
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgModelGroup, "[ngModelGroup]", ["ngModelGroup"], { "name": { "alias": "ngModelGroup"; "required": false; }; }, {}, never, never, false, never, false>;
4126
4126
  }
4127
4127
 
4128
4128
  /**
@@ -4160,7 +4160,7 @@ export declare class NgSelectOption implements OnDestroy {
4160
4160
  /** @nodoc */
4161
4161
  ngOnDestroy(): void;
4162
4162
  static ɵfac: i0.ɵɵFactoryDeclaration<NgSelectOption, [null, null, { optional: true; host: true; }]>;
4163
- static ɵdir: i0.ɵɵDirectiveDeclaration<NgSelectOption, "option", never, { "ngValue": { "alias": "ngValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
4163
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NgSelectOption, "option", never, { "ngValue": { "alias": "ngValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never, false>;
4164
4164
  }
4165
4165
 
4166
4166
  /**
@@ -4238,7 +4238,7 @@ export declare class NumberValueAccessor extends BuiltInControlValueAccessor imp
4238
4238
  */
4239
4239
  registerOnChange(fn: (_: number | null) => void): void;
4240
4240
  static ɵfac: i0.ɵɵFactoryDeclaration<NumberValueAccessor, never>;
4241
- static ɵdir: i0.ɵɵDirectiveDeclaration<NumberValueAccessor, "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]", never, {}, {}, never, never, false, never>;
4241
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NumberValueAccessor, "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]", never, {}, {}, never, never, false, never, false>;
4242
4242
  }
4243
4243
 
4244
4244
  /**
@@ -4277,7 +4277,7 @@ export declare class PatternValidator extends AbstractValidatorDirective {
4277
4277
  */
4278
4278
  pattern: string | RegExp;
4279
4279
  static ɵfac: i0.ɵɵFactoryDeclaration<PatternValidator, never>;
4280
- static ɵdir: i0.ɵɵDirectiveDeclaration<PatternValidator, "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", never, { "pattern": { "alias": "pattern"; "required": false; }; }, {}, never, never, false, never>;
4280
+ static ɵdir: i0.ɵɵDirectiveDeclaration<PatternValidator, "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", never, { "pattern": { "alias": "pattern"; "required": false; }; }, {}, never, never, false, never, false>;
4281
4281
  }
4282
4282
 
4283
4283
  /**
@@ -4410,7 +4410,7 @@ export declare class RadioControlValueAccessor extends BuiltInControlValueAccess
4410
4410
  fireUncheck(value: any): void;
4411
4411
  private _checkName;
4412
4412
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioControlValueAccessor, never>;
4413
- static ɵdir: i0.ɵɵDirectiveDeclaration<RadioControlValueAccessor, "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", never, { "name": { "alias": "name"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
4413
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RadioControlValueAccessor, "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", never, { "name": { "alias": "name"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never, false>;
4414
4414
  }
4415
4415
 
4416
4416
  /**
@@ -4449,7 +4449,7 @@ export declare class RangeValueAccessor extends BuiltInControlValueAccessor impl
4449
4449
  */
4450
4450
  registerOnChange(fn: (_: number | null) => void): void;
4451
4451
  static ɵfac: i0.ɵɵFactoryDeclaration<RangeValueAccessor, never>;
4452
- static ɵdir: i0.ɵɵDirectiveDeclaration<RangeValueAccessor, "input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]", never, {}, {}, never, never, false, never>;
4452
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RangeValueAccessor, "input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]", never, {}, {}, never, never, false, never, false>;
4453
4453
  }
4454
4454
 
4455
4455
  declare const REACTIVE_DRIVEN_DIRECTIVES: Type<any>[];
@@ -4521,7 +4521,7 @@ export declare class RequiredValidator extends AbstractValidatorDirective {
4521
4521
  /** @nodoc */
4522
4522
  enabled(input: boolean): boolean;
4523
4523
  static ɵfac: i0.ɵɵFactoryDeclaration<RequiredValidator, never>;
4524
- static ɵdir: i0.ɵɵDirectiveDeclaration<RequiredValidator, ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", never, { "required": { "alias": "required"; "required": false; }; }, {}, never, never, false, never>;
4524
+ static ɵdir: i0.ɵɵDirectiveDeclaration<RequiredValidator, ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", never, { "required": { "alias": "required"; "required": false; }; }, {}, never, never, false, never, false>;
4525
4525
  }
4526
4526
 
4527
4527
  /**
@@ -4601,7 +4601,7 @@ export declare class SelectControlValueAccessor extends BuiltInControlValueAcces
4601
4601
  */
4602
4602
  registerOnChange(fn: (value: any) => any): void;
4603
4603
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectControlValueAccessor, never>;
4604
- static ɵdir: i0.ɵɵDirectiveDeclaration<SelectControlValueAccessor, "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", never, { "compareWith": { "alias": "compareWith"; "required": false; }; }, {}, never, never, false, never>;
4604
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectControlValueAccessor, "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", never, { "compareWith": { "alias": "compareWith"; "required": false; }; }, {}, never, never, false, never, false>;
4605
4605
  }
4606
4606
 
4607
4607
  /**
@@ -4664,7 +4664,7 @@ export declare class SelectMultipleControlValueAccessor extends BuiltInControlVa
4664
4664
  */
4665
4665
  registerOnChange(fn: (value: any) => any): void;
4666
4666
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectMultipleControlValueAccessor, never>;
4667
- static ɵdir: i0.ɵɵDirectiveDeclaration<SelectMultipleControlValueAccessor, "select[multiple][formControlName],select[multiple][formControl],select[multiple][ngModel]", never, { "compareWith": { "alias": "compareWith"; "required": false; }; }, {}, never, never, false, never>;
4667
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectMultipleControlValueAccessor, "select[multiple][formControlName],select[multiple][formControl],select[multiple][ngModel]", never, { "compareWith": { "alias": "compareWith"; "required": false; }; }, {}, never, never, false, never, false>;
4668
4668
  }
4669
4669
 
4670
4670
  /**
@@ -5303,7 +5303,7 @@ export declare type ɵNavigate<T, K extends (Array<string | number>)> = T extend
5303
5303
  */
5304
5304
  export declare class ɵNgNoValidate {
5305
5305
  static ɵfac: i0.ɵɵFactoryDeclaration<ɵNgNoValidate, never>;
5306
- static ɵdir: i0.ɵɵDirectiveDeclaration<ɵNgNoValidate, "form:not([ngNoForm]):not([ngNativeValidate])", never, {}, {}, never, never, false, never>;
5306
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ɵNgNoValidate, "form:not([ngNoForm]):not([ngNativeValidate])", never, {}, {}, never, never, false, never, false>;
5307
5307
  }
5308
5308
 
5309
5309
  /**
@@ -5337,7 +5337,7 @@ export declare class ɵNgSelectMultipleOption implements OnDestroy {
5337
5337
  /** @nodoc */
5338
5338
  ngOnDestroy(): void;
5339
5339
  static ɵfac: i0.ɵɵFactoryDeclaration<ɵNgSelectMultipleOption, [null, null, { optional: true; host: true; }]>;
5340
- static ɵdir: i0.ɵɵDirectiveDeclaration<ɵNgSelectMultipleOption, "option", never, { "ngValue": { "alias": "ngValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
5340
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ɵNgSelectMultipleOption, "option", never, { "ngValue": { "alias": "ngValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never, false>;
5341
5341
  }
5342
5342
 
5343
5343
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/forms",
3
- "version": "16.0.1",
3
+ "version": "16.1.0-next.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": "16.0.1",
15
- "@angular/common": "16.0.1",
16
- "@angular/platform-browser": "16.0.1",
14
+ "@angular/core": "16.1.0-next.0",
15
+ "@angular/common": "16.1.0-next.0",
16
+ "@angular/platform-browser": "16.1.0-next.0",
17
17
  "rxjs": "^6.5.3 || ^7.4.0"
18
18
  },
19
19
  "repository": {