@angular/forms 16.0.0-next.1 → 16.0.0-next.3

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 (33) hide show
  1. package/esm2020/src/directives/abstract_form_group_directive.mjs +3 -3
  2. package/esm2020/src/directives/checkbox_value_accessor.mjs +3 -3
  3. package/esm2020/src/directives/control_value_accessor.mjs +6 -6
  4. package/esm2020/src/directives/default_value_accessor.mjs +3 -3
  5. package/esm2020/src/directives/ng_control_status.mjs +6 -6
  6. package/esm2020/src/directives/ng_form.mjs +3 -3
  7. package/esm2020/src/directives/ng_model.mjs +3 -3
  8. package/esm2020/src/directives/ng_model_group.mjs +3 -3
  9. package/esm2020/src/directives/ng_no_validate_directive.mjs +3 -3
  10. package/esm2020/src/directives/number_value_accessor.mjs +3 -3
  11. package/esm2020/src/directives/radio_control_value_accessor.mjs +10 -10
  12. package/esm2020/src/directives/range_value_accessor.mjs +3 -3
  13. package/esm2020/src/directives/reactive_directives/form_control_directive.mjs +3 -3
  14. package/esm2020/src/directives/reactive_directives/form_control_name.mjs +3 -3
  15. package/esm2020/src/directives/reactive_directives/form_group_directive.mjs +3 -3
  16. package/esm2020/src/directives/reactive_directives/form_group_name.mjs +6 -6
  17. package/esm2020/src/directives/select_control_value_accessor.mjs +6 -6
  18. package/esm2020/src/directives/select_multiple_control_value_accessor.mjs +6 -6
  19. package/esm2020/src/directives/validators.mjs +27 -27
  20. package/esm2020/src/directives.mjs +4 -4
  21. package/esm2020/src/form_builder.mjs +12 -12
  22. package/esm2020/src/form_providers.mjs +8 -8
  23. package/esm2020/src/model/form_array.mjs +1 -1
  24. package/esm2020/src/model/form_control.mjs +1 -1
  25. package/esm2020/src/model/form_group.mjs +1 -1
  26. package/esm2020/src/validators.mjs +3 -3
  27. package/esm2020/src/version.mjs +1 -1
  28. package/fesm2015/forms.mjs +130 -130
  29. package/fesm2015/forms.mjs.map +1 -1
  30. package/fesm2020/forms.mjs +130 -130
  31. package/fesm2020/forms.mjs.map +1 -1
  32. package/index.d.ts +6 -6
  33. package/package.json +4 -4
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.0.0-next.1
2
+ * @license Angular v16.0.0-next.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1849,7 +1849,7 @@ export declare class FormBuilder {
1849
1849
  private useNonNullable;
1850
1850
  /**
1851
1851
  * @description
1852
- * Returns a FormBuilder in which automatically constructed @see FormControl} elements
1852
+ * Returns a FormBuilder in which automatically constructed `FormControl` elements
1853
1853
  * have `{nonNullable: true}` and are non-nullable.
1854
1854
  *
1855
1855
  * **Constructing non-nullable controls**
@@ -4676,7 +4676,7 @@ declare const SHARED_FORM_DIRECTIVES: Type<any>[];
4676
4676
  declare const TEMPLATE_DRIVEN_DIRECTIVES: Type<any>[];
4677
4677
 
4678
4678
  /**
4679
- * UntypedFormArray is a non-strongly-typed version of @see FormArray, which
4679
+ * UntypedFormArray is a non-strongly-typed version of `FormArray`, which
4680
4680
  * permits heterogenous controls.
4681
4681
  */
4682
4682
  export declare type UntypedFormArray = FormArray<any>;
@@ -4693,7 +4693,7 @@ declare interface UntypedFormArrayCtor {
4693
4693
  }
4694
4694
 
4695
4695
  /**
4696
- * UntypedFormBuilder is the same as @see FormBuilder, but it provides untyped controls.
4696
+ * UntypedFormBuilder is the same as `FormBuilder`, but it provides untyped controls.
4697
4697
  */
4698
4698
  export declare class UntypedFormBuilder extends FormBuilder {
4699
4699
  /**
@@ -4724,7 +4724,7 @@ export declare class UntypedFormBuilder extends FormBuilder {
4724
4724
  }
4725
4725
 
4726
4726
  /**
4727
- * UntypedFormControl is a non-strongly-typed version of @see FormControl.
4727
+ * UntypedFormControl is a non-strongly-typed version of `FormControl`.
4728
4728
  */
4729
4729
  export declare type UntypedFormControl = FormControl<any>;
4730
4730
 
@@ -4741,7 +4741,7 @@ declare interface UntypedFormControlCtor {
4741
4741
  }
4742
4742
 
4743
4743
  /**
4744
- * UntypedFormGroup is a non-strongly-typed version of @see FormGroup.
4744
+ * UntypedFormGroup is a non-strongly-typed version of `FormGroup`.
4745
4745
  */
4746
4746
  export declare type UntypedFormGroup = FormGroup<any>;
4747
4747
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/forms",
3
- "version": "16.0.0-next.1",
3
+ "version": "16.0.0-next.3",
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.0-next.1",
15
- "@angular/common": "16.0.0-next.1",
16
- "@angular/platform-browser": "16.0.0-next.1",
14
+ "@angular/core": "16.0.0-next.3",
15
+ "@angular/common": "16.0.0-next.3",
16
+ "@angular/platform-browser": "16.0.0-next.3",
17
17
  "rxjs": "^6.5.3 || ^7.4.0"
18
18
  },
19
19
  "repository": {