@angular/forms 15.0.0-next.1 → 15.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 (29) 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 +7 -5
  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 +8 -7
  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/version.mjs +1 -1
  24. package/fesm2015/forms.mjs +137 -132
  25. package/fesm2015/forms.mjs.map +1 -1
  26. package/fesm2020/forms.mjs +135 -132
  27. package/fesm2020/forms.mjs.map +1 -1
  28. package/index.d.ts +4 -6
  29. package/package.json +4 -4
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v15.0.0-next.1
2
+ * @license Angular v15.0.0-next.3
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1871,7 +1871,7 @@ export declare class FormBuilder {
1871
1871
  get nonNullable(): NonNullableFormBuilder;
1872
1872
  /**
1873
1873
  * @description
1874
- * Construct a new `FormGroup` instance. Accepts a single generic argument, which is an object
1874
+ * Constructs a new `FormGroup` instance. Accepts a single generic argument, which is an object
1875
1875
  * containing all the keys and corresponding inner control types.
1876
1876
  *
1877
1877
  * @param controls A collection of child controls. The key for each child is the name
@@ -1889,7 +1889,7 @@ export declare class FormBuilder {
1889
1889
  }>;
1890
1890
  /**
1891
1891
  * @description
1892
- * Construct a new `FormGroup` instance.
1892
+ * Constructs a new `FormGroup` instance.
1893
1893
  *
1894
1894
  * @deprecated This API is not typesafe and can result in issues with Closure Compiler renaming.
1895
1895
  * Use the `FormBuilder#group` overload with `AbstractControlOptions` instead.
@@ -1917,7 +1917,7 @@ export declare class FormBuilder {
1917
1917
  }): FormGroup;
1918
1918
  /**
1919
1919
  * @description
1920
- * Construct a new `FormRecord` instance. Accepts a single generic argument, which is an object
1920
+ * Constructs a new `FormRecord` instance. Accepts a single generic argument, which is an object
1921
1921
  * containing all the keys and corresponding inner control types.
1922
1922
  *
1923
1923
  * @param controls A collection of child controls. The key for each child is the name
@@ -2811,8 +2811,6 @@ export declare class FormGroup<TControl extends {
2811
2811
  * @publicApi
2812
2812
  */
2813
2813
  export declare class FormGroupDirective extends ControlContainer implements Form, OnChanges, OnDestroy {
2814
- private validators;
2815
- private asyncValidators;
2816
2814
  /**
2817
2815
  * @description
2818
2816
  * Reports whether the form submission has been triggered.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/forms",
3
- "version": "15.0.0-next.1",
3
+ "version": "15.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": "15.0.0-next.1",
15
- "@angular/common": "15.0.0-next.1",
16
- "@angular/platform-browser": "15.0.0-next.1",
14
+ "@angular/core": "15.0.0-next.3",
15
+ "@angular/common": "15.0.0-next.3",
16
+ "@angular/platform-browser": "15.0.0-next.3",
17
17
  "rxjs": "^6.5.3 || ^7.4.0"
18
18
  },
19
19
  "repository": {