@angular/forms 16.2.0-next.3 → 16.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/esm2022/src/directives/abstract_control_directive.mjs +2 -2
- package/esm2022/src/directives/abstract_form_group_directive.mjs +3 -3
- package/esm2022/src/directives/checkbox_value_accessor.mjs +3 -3
- package/esm2022/src/directives/control_value_accessor.mjs +6 -6
- package/esm2022/src/directives/default_value_accessor.mjs +3 -3
- package/esm2022/src/directives/ng_control_status.mjs +6 -6
- package/esm2022/src/directives/ng_form.mjs +3 -3
- package/esm2022/src/directives/ng_model.mjs +3 -3
- package/esm2022/src/directives/ng_model_group.mjs +3 -3
- package/esm2022/src/directives/ng_no_validate_directive.mjs +3 -3
- package/esm2022/src/directives/number_value_accessor.mjs +3 -3
- package/esm2022/src/directives/radio_control_value_accessor.mjs +12 -12
- package/esm2022/src/directives/range_value_accessor.mjs +3 -3
- package/esm2022/src/directives/reactive_directives/form_control_directive.mjs +3 -3
- package/esm2022/src/directives/reactive_directives/form_control_name.mjs +3 -3
- package/esm2022/src/directives/reactive_directives/form_group_directive.mjs +3 -3
- package/esm2022/src/directives/reactive_directives/form_group_name.mjs +6 -6
- package/esm2022/src/directives/select_control_value_accessor.mjs +6 -6
- package/esm2022/src/directives/select_multiple_control_value_accessor.mjs +6 -6
- package/esm2022/src/directives/validators.mjs +27 -27
- package/esm2022/src/directives.mjs +4 -4
- package/esm2022/src/form_builder.mjs +9 -9
- package/esm2022/src/form_providers.mjs +8 -8
- package/esm2022/src/model/abstract_model.mjs +2 -2
- package/esm2022/src/version.mjs +1 -1
- package/fesm2022/forms.mjs +129 -129
- package/fesm2022/forms.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.2.0-
|
|
2
|
+
* @license Angular v16.2.0-rc.0
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -682,7 +682,7 @@ export declare abstract class AbstractControlDirective {
|
|
|
682
682
|
get invalid(): boolean | null;
|
|
683
683
|
/**
|
|
684
684
|
* @description
|
|
685
|
-
* Reports whether a control is pending, meaning that
|
|
685
|
+
* Reports whether a control is pending, meaning that async validation is occurring and
|
|
686
686
|
* errors are not yet available for the input value. If the control is not present, null is
|
|
687
687
|
* returned.
|
|
688
688
|
*/
|
|
@@ -2439,7 +2439,7 @@ export declare interface FormControlState<T> {
|
|
|
2439
2439
|
* value.
|
|
2440
2440
|
* * **INVALID**: Reports that a control is invalid, meaning that an error exists in the input
|
|
2441
2441
|
* value.
|
|
2442
|
-
* * **PENDING**: Reports that a control is pending, meaning that
|
|
2442
|
+
* * **PENDING**: Reports that a control is pending, meaning that async validation is
|
|
2443
2443
|
* occurring and errors are not yet available for the input value.
|
|
2444
2444
|
* * **DISABLED**: Reports that a control is
|
|
2445
2445
|
* disabled, meaning that the control is exempt from ancestor calculations of validity or value.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/forms",
|
|
3
|
-
"version": "16.2.0-
|
|
3
|
+
"version": "16.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": "16.2.0-
|
|
15
|
-
"@angular/common": "16.2.0-
|
|
16
|
-
"@angular/platform-browser": "16.2.0-
|
|
14
|
+
"@angular/core": "16.2.0-rc.0",
|
|
15
|
+
"@angular/common": "16.2.0-rc.0",
|
|
16
|
+
"@angular/platform-browser": "16.2.0-rc.0",
|
|
17
17
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|