@angular/forms 17.2.1 → 17.3.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.
- 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 +6 -6
- 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 +29 -29
- 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/version.mjs +1 -1
- package/fesm2022/forms.mjs +123 -123
- 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 v17.
|
|
2
|
+
* @license Angular v17.3.0-next.0
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -3395,7 +3395,7 @@ declare const MAX_LENGTH_VALIDATOR: any;
|
|
|
3395
3395
|
declare const MAX_VALIDATOR: Provider;
|
|
3396
3396
|
|
|
3397
3397
|
/**
|
|
3398
|
-
* A directive that adds
|
|
3398
|
+
* A directive that adds maximum length validation to controls marked with the
|
|
3399
3399
|
* `maxlength` attribute. The directive is provided with the `NG_VALIDATORS` multi-provider list.
|
|
3400
3400
|
*
|
|
3401
3401
|
* @see [Form Validation](guide/form-validation)
|
|
@@ -3418,7 +3418,7 @@ declare const MAX_VALIDATOR: Provider;
|
|
|
3418
3418
|
export declare class MaxLengthValidator extends AbstractValidatorDirective {
|
|
3419
3419
|
/**
|
|
3420
3420
|
* @description
|
|
3421
|
-
* Tracks changes to the
|
|
3421
|
+
* Tracks changes to the maximum length bound to this directive.
|
|
3422
3422
|
*/
|
|
3423
3423
|
maxlength: string | number | null;
|
|
3424
3424
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaxLengthValidator, never>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/forms",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.3.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": "17.
|
|
15
|
-
"@angular/common": "17.
|
|
16
|
-
"@angular/platform-browser": "17.
|
|
14
|
+
"@angular/core": "17.3.0-next.0",
|
|
15
|
+
"@angular/common": "17.3.0-next.0",
|
|
16
|
+
"@angular/platform-browser": "17.3.0-next.0",
|
|
17
17
|
"rxjs": "^6.5.3 || ^7.4.0"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|