@angular/forms 21.2.1 → 22.0.0-next.1
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/fesm2022/_validation_errors-chunk.mjs +1 -1
- package/fesm2022/forms.mjs +153 -147
- package/fesm2022/forms.mjs.map +1 -1
- package/fesm2022/signals-compat.mjs +1 -1
- package/fesm2022/signals-compat.mjs.map +1 -1
- package/fesm2022/signals.mjs +31 -10
- package/fesm2022/signals.mjs.map +1 -1
- package/package.json +5 -5
- package/resources/code-examples.db +0 -0
- package/types/_structure-chunk.d.ts +1 -1
- package/types/forms.d.ts +1 -1
- package/types/signals-compat.d.ts +1 -1
- package/types/signals.d.ts +10 -6
package/fesm2022/forms.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular
|
|
2
|
+
* @license Angular v22.0.0-next.1
|
|
3
3
|
* (c) 2010-2026 Google LLC. https://angular.dev/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -33,7 +33,7 @@ class BaseControlValueAccessor {
|
|
|
33
33
|
}
|
|
34
34
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
35
35
|
minVersion: "12.0.0",
|
|
36
|
-
version: "
|
|
36
|
+
version: "22.0.0-next.1",
|
|
37
37
|
ngImport: i0,
|
|
38
38
|
type: BaseControlValueAccessor,
|
|
39
39
|
deps: [{
|
|
@@ -45,7 +45,7 @@ class BaseControlValueAccessor {
|
|
|
45
45
|
});
|
|
46
46
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
47
47
|
minVersion: "14.0.0",
|
|
48
|
-
version: "
|
|
48
|
+
version: "22.0.0-next.1",
|
|
49
49
|
type: BaseControlValueAccessor,
|
|
50
50
|
isStandalone: true,
|
|
51
51
|
ngImport: i0
|
|
@@ -53,7 +53,7 @@ class BaseControlValueAccessor {
|
|
|
53
53
|
}
|
|
54
54
|
i0.ɵɵngDeclareClassMetadata({
|
|
55
55
|
minVersion: "12.0.0",
|
|
56
|
-
version: "
|
|
56
|
+
version: "22.0.0-next.1",
|
|
57
57
|
ngImport: i0,
|
|
58
58
|
type: BaseControlValueAccessor,
|
|
59
59
|
decorators: [{
|
|
@@ -68,7 +68,7 @@ i0.ɵɵngDeclareClassMetadata({
|
|
|
68
68
|
class BuiltInControlValueAccessor extends BaseControlValueAccessor {
|
|
69
69
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
70
70
|
minVersion: "12.0.0",
|
|
71
|
-
version: "
|
|
71
|
+
version: "22.0.0-next.1",
|
|
72
72
|
ngImport: i0,
|
|
73
73
|
type: BuiltInControlValueAccessor,
|
|
74
74
|
deps: null,
|
|
@@ -76,7 +76,7 @@ class BuiltInControlValueAccessor extends BaseControlValueAccessor {
|
|
|
76
76
|
});
|
|
77
77
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
78
78
|
minVersion: "14.0.0",
|
|
79
|
-
version: "
|
|
79
|
+
version: "22.0.0-next.1",
|
|
80
80
|
type: BuiltInControlValueAccessor,
|
|
81
81
|
isStandalone: true,
|
|
82
82
|
usesInheritance: true,
|
|
@@ -85,7 +85,7 @@ class BuiltInControlValueAccessor extends BaseControlValueAccessor {
|
|
|
85
85
|
}
|
|
86
86
|
i0.ɵɵngDeclareClassMetadata({
|
|
87
87
|
minVersion: "12.0.0",
|
|
88
|
-
version: "
|
|
88
|
+
version: "22.0.0-next.1",
|
|
89
89
|
ngImport: i0,
|
|
90
90
|
type: BuiltInControlValueAccessor,
|
|
91
91
|
decorators: [{
|
|
@@ -105,7 +105,7 @@ class CheckboxControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
105
105
|
}
|
|
106
106
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
107
107
|
minVersion: "12.0.0",
|
|
108
|
-
version: "
|
|
108
|
+
version: "22.0.0-next.1",
|
|
109
109
|
ngImport: i0,
|
|
110
110
|
type: CheckboxControlValueAccessor,
|
|
111
111
|
deps: null,
|
|
@@ -113,7 +113,7 @@ class CheckboxControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
113
113
|
});
|
|
114
114
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
115
115
|
minVersion: "14.0.0",
|
|
116
|
-
version: "
|
|
116
|
+
version: "22.0.0-next.1",
|
|
117
117
|
type: CheckboxControlValueAccessor,
|
|
118
118
|
isStandalone: false,
|
|
119
119
|
selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]",
|
|
@@ -130,7 +130,7 @@ class CheckboxControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
130
130
|
}
|
|
131
131
|
i0.ɵɵngDeclareClassMetadata({
|
|
132
132
|
minVersion: "12.0.0",
|
|
133
|
-
version: "
|
|
133
|
+
version: "22.0.0-next.1",
|
|
134
134
|
ngImport: i0,
|
|
135
135
|
type: CheckboxControlValueAccessor,
|
|
136
136
|
decorators: [{
|
|
@@ -185,7 +185,7 @@ class DefaultValueAccessor extends BaseControlValueAccessor {
|
|
|
185
185
|
}
|
|
186
186
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
187
187
|
minVersion: "12.0.0",
|
|
188
|
-
version: "
|
|
188
|
+
version: "22.0.0-next.1",
|
|
189
189
|
ngImport: i0,
|
|
190
190
|
type: DefaultValueAccessor,
|
|
191
191
|
deps: [{
|
|
@@ -200,7 +200,7 @@ class DefaultValueAccessor extends BaseControlValueAccessor {
|
|
|
200
200
|
});
|
|
201
201
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
202
202
|
minVersion: "14.0.0",
|
|
203
|
-
version: "
|
|
203
|
+
version: "22.0.0-next.1",
|
|
204
204
|
type: DefaultValueAccessor,
|
|
205
205
|
isStandalone: false,
|
|
206
206
|
selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]",
|
|
@@ -219,7 +219,7 @@ class DefaultValueAccessor extends BaseControlValueAccessor {
|
|
|
219
219
|
}
|
|
220
220
|
i0.ɵɵngDeclareClassMetadata({
|
|
221
221
|
minVersion: "12.0.0",
|
|
222
|
-
version: "
|
|
222
|
+
version: "22.0.0-next.1",
|
|
223
223
|
ngImport: i0,
|
|
224
224
|
type: DefaultValueAccessor,
|
|
225
225
|
decorators: [{
|
|
@@ -643,7 +643,7 @@ class NgControlStatus extends AbstractControlStatus {
|
|
|
643
643
|
}
|
|
644
644
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
645
645
|
minVersion: "12.0.0",
|
|
646
|
-
version: "
|
|
646
|
+
version: "22.0.0-next.1",
|
|
647
647
|
ngImport: i0,
|
|
648
648
|
type: NgControlStatus,
|
|
649
649
|
deps: [{
|
|
@@ -654,7 +654,7 @@ class NgControlStatus extends AbstractControlStatus {
|
|
|
654
654
|
});
|
|
655
655
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
656
656
|
minVersion: "14.0.0",
|
|
657
|
-
version: "
|
|
657
|
+
version: "22.0.0-next.1",
|
|
658
658
|
type: NgControlStatus,
|
|
659
659
|
isStandalone: false,
|
|
660
660
|
selector: "[formControlName],[ngModel],[formControl]",
|
|
@@ -675,7 +675,7 @@ class NgControlStatus extends AbstractControlStatus {
|
|
|
675
675
|
}
|
|
676
676
|
i0.ɵɵngDeclareClassMetadata({
|
|
677
677
|
minVersion: "12.0.0",
|
|
678
|
-
version: "
|
|
678
|
+
version: "22.0.0-next.1",
|
|
679
679
|
ngImport: i0,
|
|
680
680
|
type: NgControlStatus,
|
|
681
681
|
decorators: [{
|
|
@@ -699,7 +699,7 @@ class NgControlStatusGroup extends AbstractControlStatus {
|
|
|
699
699
|
}
|
|
700
700
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
701
701
|
minVersion: "12.0.0",
|
|
702
|
-
version: "
|
|
702
|
+
version: "22.0.0-next.1",
|
|
703
703
|
ngImport: i0,
|
|
704
704
|
type: NgControlStatusGroup,
|
|
705
705
|
deps: [{
|
|
@@ -711,7 +711,7 @@ class NgControlStatusGroup extends AbstractControlStatus {
|
|
|
711
711
|
});
|
|
712
712
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
713
713
|
minVersion: "14.0.0",
|
|
714
|
-
version: "
|
|
714
|
+
version: "22.0.0-next.1",
|
|
715
715
|
type: NgControlStatusGroup,
|
|
716
716
|
isStandalone: false,
|
|
717
717
|
selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],[formArray],form:not([ngNoForm]),[ngForm]",
|
|
@@ -733,7 +733,7 @@ class NgControlStatusGroup extends AbstractControlStatus {
|
|
|
733
733
|
}
|
|
734
734
|
i0.ɵɵngDeclareClassMetadata({
|
|
735
735
|
minVersion: "12.0.0",
|
|
736
|
-
version: "
|
|
736
|
+
version: "22.0.0-next.1",
|
|
737
737
|
ngImport: i0,
|
|
738
738
|
type: NgControlStatusGroup,
|
|
739
739
|
decorators: [{
|
|
@@ -807,7 +807,7 @@ const ngModelWithFormGroupExample = `
|
|
|
807
807
|
</div>
|
|
808
808
|
`;
|
|
809
809
|
|
|
810
|
-
const VERSION = /* @__PURE__ */new Version('
|
|
810
|
+
const VERSION = /* @__PURE__ */new Version('22.0.0-next.1');
|
|
811
811
|
|
|
812
812
|
function controlParentException(nameOrIndex) {
|
|
813
813
|
return new _RuntimeError(1050, `formControlName must be used with a parent formGroup or formArray directive. You'll want to add a formGroup/formArray
|
|
@@ -1507,15 +1507,17 @@ class FormGroup extends AbstractControl {
|
|
|
1507
1507
|
return this.controls.hasOwnProperty(controlName) && this.controls[controlName].enabled;
|
|
1508
1508
|
}
|
|
1509
1509
|
setValue(value, options = {}) {
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1510
|
+
untracked(() => {
|
|
1511
|
+
assertAllValuesPresent(this, true, value);
|
|
1512
|
+
Object.keys(value).forEach(name => {
|
|
1513
|
+
assertControlPresent(this, true, name);
|
|
1514
|
+
this.controls[name].setValue(value[name], {
|
|
1515
|
+
onlySelf: true,
|
|
1516
|
+
emitEvent: options.emitEvent
|
|
1517
|
+
});
|
|
1516
1518
|
});
|
|
1519
|
+
this.updateValueAndValidity(options);
|
|
1517
1520
|
});
|
|
1518
|
-
this.updateValueAndValidity(options);
|
|
1519
1521
|
}
|
|
1520
1522
|
patchValue(value, options = {}) {
|
|
1521
1523
|
if (value == null) return;
|
|
@@ -1952,7 +1954,7 @@ class NgForm extends ControlContainer {
|
|
|
1952
1954
|
}
|
|
1953
1955
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
1954
1956
|
minVersion: "12.0.0",
|
|
1955
|
-
version: "
|
|
1957
|
+
version: "22.0.0-next.1",
|
|
1956
1958
|
ngImport: i0,
|
|
1957
1959
|
type: NgForm,
|
|
1958
1960
|
deps: [{
|
|
@@ -1971,7 +1973,7 @@ class NgForm extends ControlContainer {
|
|
|
1971
1973
|
});
|
|
1972
1974
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
1973
1975
|
minVersion: "14.0.0",
|
|
1974
|
-
version: "
|
|
1976
|
+
version: "22.0.0-next.1",
|
|
1975
1977
|
type: NgForm,
|
|
1976
1978
|
isStandalone: false,
|
|
1977
1979
|
selector: "form:not([ngNoForm]):not([formGroup]):not([formArray]),ng-form,[ngForm]",
|
|
@@ -1995,7 +1997,7 @@ class NgForm extends ControlContainer {
|
|
|
1995
1997
|
}
|
|
1996
1998
|
i0.ɵɵngDeclareClassMetadata({
|
|
1997
1999
|
minVersion: "12.0.0",
|
|
1998
|
-
version: "
|
|
2000
|
+
version: "22.0.0-next.1",
|
|
1999
2001
|
ngImport: i0,
|
|
2000
2002
|
type: NgForm,
|
|
2001
2003
|
decorators: [{
|
|
@@ -2080,11 +2082,13 @@ const FormControl = class FormControl extends AbstractControl {
|
|
|
2080
2082
|
}
|
|
2081
2083
|
}
|
|
2082
2084
|
setValue(value, options = {}) {
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
this._onChange.
|
|
2086
|
-
|
|
2087
|
-
|
|
2085
|
+
untracked(() => {
|
|
2086
|
+
this.value = this._pendingValue = value;
|
|
2087
|
+
if (this._onChange.length && options.emitModelToViewChange !== false) {
|
|
2088
|
+
this._onChange.forEach(changeFn => changeFn(this.value, options.emitViewToModelChange !== false));
|
|
2089
|
+
}
|
|
2090
|
+
this.updateValueAndValidity(options);
|
|
2091
|
+
});
|
|
2088
2092
|
}
|
|
2089
2093
|
patchValue(value, options = {}) {
|
|
2090
2094
|
this.setValue(value, options);
|
|
@@ -2175,7 +2179,7 @@ class AbstractFormGroupDirective extends ControlContainer {
|
|
|
2175
2179
|
_checkParentType() {}
|
|
2176
2180
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
2177
2181
|
minVersion: "12.0.0",
|
|
2178
|
-
version: "
|
|
2182
|
+
version: "22.0.0-next.1",
|
|
2179
2183
|
ngImport: i0,
|
|
2180
2184
|
type: AbstractFormGroupDirective,
|
|
2181
2185
|
deps: null,
|
|
@@ -2183,7 +2187,7 @@ class AbstractFormGroupDirective extends ControlContainer {
|
|
|
2183
2187
|
});
|
|
2184
2188
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
2185
2189
|
minVersion: "14.0.0",
|
|
2186
|
-
version: "
|
|
2190
|
+
version: "22.0.0-next.1",
|
|
2187
2191
|
type: AbstractFormGroupDirective,
|
|
2188
2192
|
isStandalone: false,
|
|
2189
2193
|
usesInheritance: true,
|
|
@@ -2192,7 +2196,7 @@ class AbstractFormGroupDirective extends ControlContainer {
|
|
|
2192
2196
|
}
|
|
2193
2197
|
i0.ɵɵngDeclareClassMetadata({
|
|
2194
2198
|
minVersion: "12.0.0",
|
|
2195
|
-
version: "
|
|
2199
|
+
version: "22.0.0-next.1",
|
|
2196
2200
|
ngImport: i0,
|
|
2197
2201
|
type: AbstractFormGroupDirective,
|
|
2198
2202
|
decorators: [{
|
|
@@ -2267,7 +2271,7 @@ class NgModelGroup extends AbstractFormGroupDirective {
|
|
|
2267
2271
|
}
|
|
2268
2272
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
2269
2273
|
minVersion: "12.0.0",
|
|
2270
|
-
version: "
|
|
2274
|
+
version: "22.0.0-next.1",
|
|
2271
2275
|
ngImport: i0,
|
|
2272
2276
|
type: NgModelGroup,
|
|
2273
2277
|
deps: [{
|
|
@@ -2287,7 +2291,7 @@ class NgModelGroup extends AbstractFormGroupDirective {
|
|
|
2287
2291
|
});
|
|
2288
2292
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
2289
2293
|
minVersion: "14.0.0",
|
|
2290
|
-
version: "
|
|
2294
|
+
version: "22.0.0-next.1",
|
|
2291
2295
|
type: NgModelGroup,
|
|
2292
2296
|
isStandalone: false,
|
|
2293
2297
|
selector: "[ngModelGroup]",
|
|
@@ -2302,7 +2306,7 @@ class NgModelGroup extends AbstractFormGroupDirective {
|
|
|
2302
2306
|
}
|
|
2303
2307
|
i0.ɵɵngDeclareClassMetadata({
|
|
2304
2308
|
minVersion: "12.0.0",
|
|
2305
|
-
version: "
|
|
2309
|
+
version: "22.0.0-next.1",
|
|
2306
2310
|
ngImport: i0,
|
|
2307
2311
|
type: NgModelGroup,
|
|
2308
2312
|
decorators: [{
|
|
@@ -2468,7 +2472,7 @@ class NgModel extends NgControl {
|
|
|
2468
2472
|
}
|
|
2469
2473
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
2470
2474
|
minVersion: "12.0.0",
|
|
2471
|
-
version: "
|
|
2475
|
+
version: "22.0.0-next.1",
|
|
2472
2476
|
ngImport: i0,
|
|
2473
2477
|
type: NgModel,
|
|
2474
2478
|
deps: [{
|
|
@@ -2498,7 +2502,7 @@ class NgModel extends NgControl {
|
|
|
2498
2502
|
});
|
|
2499
2503
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
2500
2504
|
minVersion: "14.0.0",
|
|
2501
|
-
version: "
|
|
2505
|
+
version: "22.0.0-next.1",
|
|
2502
2506
|
type: NgModel,
|
|
2503
2507
|
isStandalone: false,
|
|
2504
2508
|
selector: "[ngModel]:not([formControlName]):not([formControl])",
|
|
@@ -2520,7 +2524,7 @@ class NgModel extends NgControl {
|
|
|
2520
2524
|
}
|
|
2521
2525
|
i0.ɵɵngDeclareClassMetadata({
|
|
2522
2526
|
minVersion: "12.0.0",
|
|
2523
|
-
version: "
|
|
2527
|
+
version: "22.0.0-next.1",
|
|
2524
2528
|
ngImport: i0,
|
|
2525
2529
|
type: NgModel,
|
|
2526
2530
|
decorators: [{
|
|
@@ -2619,7 +2623,7 @@ function checkParentType$1(parent) {
|
|
|
2619
2623
|
class ɵNgNoValidate {
|
|
2620
2624
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
2621
2625
|
minVersion: "12.0.0",
|
|
2622
|
-
version: "
|
|
2626
|
+
version: "22.0.0-next.1",
|
|
2623
2627
|
ngImport: i0,
|
|
2624
2628
|
type: ɵNgNoValidate,
|
|
2625
2629
|
deps: [],
|
|
@@ -2627,7 +2631,7 @@ class ɵNgNoValidate {
|
|
|
2627
2631
|
});
|
|
2628
2632
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
2629
2633
|
minVersion: "14.0.0",
|
|
2630
|
-
version: "
|
|
2634
|
+
version: "22.0.0-next.1",
|
|
2631
2635
|
type: ɵNgNoValidate,
|
|
2632
2636
|
isStandalone: false,
|
|
2633
2637
|
selector: "form:not([ngNoForm]):not([ngNativeValidate])",
|
|
@@ -2641,7 +2645,7 @@ class ɵNgNoValidate {
|
|
|
2641
2645
|
}
|
|
2642
2646
|
i0.ɵɵngDeclareClassMetadata({
|
|
2643
2647
|
minVersion: "12.0.0",
|
|
2644
|
-
version: "
|
|
2648
|
+
version: "22.0.0-next.1",
|
|
2645
2649
|
ngImport: i0,
|
|
2646
2650
|
type: ɵNgNoValidate,
|
|
2647
2651
|
decorators: [{
|
|
@@ -2673,7 +2677,7 @@ class NumberValueAccessor extends BuiltInControlValueAccessor {
|
|
|
2673
2677
|
}
|
|
2674
2678
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
2675
2679
|
minVersion: "12.0.0",
|
|
2676
|
-
version: "
|
|
2680
|
+
version: "22.0.0-next.1",
|
|
2677
2681
|
ngImport: i0,
|
|
2678
2682
|
type: NumberValueAccessor,
|
|
2679
2683
|
deps: null,
|
|
@@ -2681,7 +2685,7 @@ class NumberValueAccessor extends BuiltInControlValueAccessor {
|
|
|
2681
2685
|
});
|
|
2682
2686
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
2683
2687
|
minVersion: "14.0.0",
|
|
2684
|
-
version: "
|
|
2688
|
+
version: "22.0.0-next.1",
|
|
2685
2689
|
type: NumberValueAccessor,
|
|
2686
2690
|
isStandalone: false,
|
|
2687
2691
|
selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]",
|
|
@@ -2698,7 +2702,7 @@ class NumberValueAccessor extends BuiltInControlValueAccessor {
|
|
|
2698
2702
|
}
|
|
2699
2703
|
i0.ɵɵngDeclareClassMetadata({
|
|
2700
2704
|
minVersion: "12.0.0",
|
|
2701
|
-
version: "
|
|
2705
|
+
version: "22.0.0-next.1",
|
|
2702
2706
|
ngImport: i0,
|
|
2703
2707
|
type: NumberValueAccessor,
|
|
2704
2708
|
decorators: [{
|
|
@@ -2752,7 +2756,7 @@ class RadioControlRegistry {
|
|
|
2752
2756
|
}
|
|
2753
2757
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
2754
2758
|
minVersion: "12.0.0",
|
|
2755
|
-
version: "
|
|
2759
|
+
version: "22.0.0-next.1",
|
|
2756
2760
|
ngImport: i0,
|
|
2757
2761
|
type: RadioControlRegistry,
|
|
2758
2762
|
deps: [],
|
|
@@ -2760,7 +2764,7 @@ class RadioControlRegistry {
|
|
|
2760
2764
|
});
|
|
2761
2765
|
static ɵprov = i0.ɵɵngDeclareInjectable({
|
|
2762
2766
|
minVersion: "12.0.0",
|
|
2763
|
-
version: "
|
|
2767
|
+
version: "22.0.0-next.1",
|
|
2764
2768
|
ngImport: i0,
|
|
2765
2769
|
type: RadioControlRegistry,
|
|
2766
2770
|
providedIn: 'root'
|
|
@@ -2768,7 +2772,7 @@ class RadioControlRegistry {
|
|
|
2768
2772
|
}
|
|
2769
2773
|
i0.ɵɵngDeclareClassMetadata({
|
|
2770
2774
|
minVersion: "12.0.0",
|
|
2771
|
-
version: "
|
|
2775
|
+
version: "22.0.0-next.1",
|
|
2772
2776
|
ngImport: i0,
|
|
2773
2777
|
type: RadioControlRegistry,
|
|
2774
2778
|
decorators: [{
|
|
@@ -2833,7 +2837,7 @@ class RadioControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
2833
2837
|
}
|
|
2834
2838
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
2835
2839
|
minVersion: "12.0.0",
|
|
2836
|
-
version: "
|
|
2840
|
+
version: "22.0.0-next.1",
|
|
2837
2841
|
ngImport: i0,
|
|
2838
2842
|
type: RadioControlValueAccessor,
|
|
2839
2843
|
deps: [{
|
|
@@ -2849,7 +2853,7 @@ class RadioControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
2849
2853
|
});
|
|
2850
2854
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
2851
2855
|
minVersion: "14.0.0",
|
|
2852
|
-
version: "
|
|
2856
|
+
version: "22.0.0-next.1",
|
|
2853
2857
|
type: RadioControlValueAccessor,
|
|
2854
2858
|
isStandalone: false,
|
|
2855
2859
|
selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]",
|
|
@@ -2871,7 +2875,7 @@ class RadioControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
2871
2875
|
}
|
|
2872
2876
|
i0.ɵɵngDeclareClassMetadata({
|
|
2873
2877
|
minVersion: "12.0.0",
|
|
2874
|
-
version: "
|
|
2878
|
+
version: "22.0.0-next.1",
|
|
2875
2879
|
ngImport: i0,
|
|
2876
2880
|
type: RadioControlValueAccessor,
|
|
2877
2881
|
decorators: [{
|
|
@@ -2924,7 +2928,7 @@ class RangeValueAccessor extends BuiltInControlValueAccessor {
|
|
|
2924
2928
|
}
|
|
2925
2929
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
2926
2930
|
minVersion: "12.0.0",
|
|
2927
|
-
version: "
|
|
2931
|
+
version: "22.0.0-next.1",
|
|
2928
2932
|
ngImport: i0,
|
|
2929
2933
|
type: RangeValueAccessor,
|
|
2930
2934
|
deps: null,
|
|
@@ -2932,7 +2936,7 @@ class RangeValueAccessor extends BuiltInControlValueAccessor {
|
|
|
2932
2936
|
});
|
|
2933
2937
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
2934
2938
|
minVersion: "14.0.0",
|
|
2935
|
-
version: "
|
|
2939
|
+
version: "22.0.0-next.1",
|
|
2936
2940
|
type: RangeValueAccessor,
|
|
2937
2941
|
isStandalone: false,
|
|
2938
2942
|
selector: "input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]",
|
|
@@ -2950,7 +2954,7 @@ class RangeValueAccessor extends BuiltInControlValueAccessor {
|
|
|
2950
2954
|
}
|
|
2951
2955
|
i0.ɵɵngDeclareClassMetadata({
|
|
2952
2956
|
minVersion: "12.0.0",
|
|
2953
|
-
version: "
|
|
2957
|
+
version: "22.0.0-next.1",
|
|
2954
2958
|
ngImport: i0,
|
|
2955
2959
|
type: RangeValueAccessor,
|
|
2956
2960
|
decorators: [{
|
|
@@ -3033,15 +3037,17 @@ class FormArray extends AbstractControl {
|
|
|
3033
3037
|
return this.controls.length;
|
|
3034
3038
|
}
|
|
3035
3039
|
setValue(value, options = {}) {
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3040
|
+
untracked(() => {
|
|
3041
|
+
assertAllValuesPresent(this, false, value);
|
|
3042
|
+
value.forEach((newValue, index) => {
|
|
3043
|
+
assertControlPresent(this, false, index);
|
|
3044
|
+
this.at(index).setValue(newValue, {
|
|
3045
|
+
onlySelf: true,
|
|
3046
|
+
emitEvent: options.emitEvent
|
|
3047
|
+
});
|
|
3042
3048
|
});
|
|
3049
|
+
this.updateValueAndValidity(options);
|
|
3043
3050
|
});
|
|
3044
|
-
this.updateValueAndValidity(options);
|
|
3045
3051
|
}
|
|
3046
3052
|
patchValue(value, options = {}) {
|
|
3047
3053
|
if (value == null) return;
|
|
@@ -3278,7 +3284,7 @@ class AbstractFormDirective extends ControlContainer {
|
|
|
3278
3284
|
}
|
|
3279
3285
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
3280
3286
|
minVersion: "12.0.0",
|
|
3281
|
-
version: "
|
|
3287
|
+
version: "22.0.0-next.1",
|
|
3282
3288
|
ngImport: i0,
|
|
3283
3289
|
type: AbstractFormDirective,
|
|
3284
3290
|
deps: [{
|
|
@@ -3297,7 +3303,7 @@ class AbstractFormDirective extends ControlContainer {
|
|
|
3297
3303
|
});
|
|
3298
3304
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
3299
3305
|
minVersion: "14.0.0",
|
|
3300
|
-
version: "
|
|
3306
|
+
version: "22.0.0-next.1",
|
|
3301
3307
|
type: AbstractFormDirective,
|
|
3302
3308
|
isStandalone: true,
|
|
3303
3309
|
usesInheritance: true,
|
|
@@ -3307,7 +3313,7 @@ class AbstractFormDirective extends ControlContainer {
|
|
|
3307
3313
|
}
|
|
3308
3314
|
i0.ɵɵngDeclareClassMetadata({
|
|
3309
3315
|
minVersion: "12.0.0",
|
|
3310
|
-
version: "
|
|
3316
|
+
version: "22.0.0-next.1",
|
|
3311
3317
|
ngImport: i0,
|
|
3312
3318
|
type: AbstractFormDirective,
|
|
3313
3319
|
decorators: [{
|
|
@@ -3356,7 +3362,7 @@ class FormArrayDirective extends AbstractFormDirective {
|
|
|
3356
3362
|
}
|
|
3357
3363
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
3358
3364
|
minVersion: "12.0.0",
|
|
3359
|
-
version: "
|
|
3365
|
+
version: "22.0.0-next.1",
|
|
3360
3366
|
ngImport: i0,
|
|
3361
3367
|
type: FormArrayDirective,
|
|
3362
3368
|
deps: null,
|
|
@@ -3364,7 +3370,7 @@ class FormArrayDirective extends AbstractFormDirective {
|
|
|
3364
3370
|
});
|
|
3365
3371
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
3366
3372
|
minVersion: "14.0.0",
|
|
3367
|
-
version: "
|
|
3373
|
+
version: "22.0.0-next.1",
|
|
3368
3374
|
type: FormArrayDirective,
|
|
3369
3375
|
isStandalone: false,
|
|
3370
3376
|
selector: "[formArray]",
|
|
@@ -3388,7 +3394,7 @@ class FormArrayDirective extends AbstractFormDirective {
|
|
|
3388
3394
|
}
|
|
3389
3395
|
i0.ɵɵngDeclareClassMetadata({
|
|
3390
3396
|
minVersion: "12.0.0",
|
|
3391
|
-
version: "
|
|
3397
|
+
version: "22.0.0-next.1",
|
|
3392
3398
|
ngImport: i0,
|
|
3393
3399
|
type: FormArrayDirective,
|
|
3394
3400
|
decorators: [{
|
|
@@ -3481,7 +3487,7 @@ class FormControlDirective extends NgControl {
|
|
|
3481
3487
|
}
|
|
3482
3488
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
3483
3489
|
minVersion: "12.0.0",
|
|
3484
|
-
version: "
|
|
3490
|
+
version: "22.0.0-next.1",
|
|
3485
3491
|
ngImport: i0,
|
|
3486
3492
|
type: FormControlDirective,
|
|
3487
3493
|
deps: [{
|
|
@@ -3507,7 +3513,7 @@ class FormControlDirective extends NgControl {
|
|
|
3507
3513
|
});
|
|
3508
3514
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
3509
3515
|
minVersion: "14.0.0",
|
|
3510
|
-
version: "
|
|
3516
|
+
version: "22.0.0-next.1",
|
|
3511
3517
|
type: FormControlDirective,
|
|
3512
3518
|
isStandalone: false,
|
|
3513
3519
|
selector: "[formControl]",
|
|
@@ -3528,7 +3534,7 @@ class FormControlDirective extends NgControl {
|
|
|
3528
3534
|
}
|
|
3529
3535
|
i0.ɵɵngDeclareClassMetadata({
|
|
3530
3536
|
minVersion: "12.0.0",
|
|
3531
|
-
version: "
|
|
3537
|
+
version: "22.0.0-next.1",
|
|
3532
3538
|
ngImport: i0,
|
|
3533
3539
|
type: FormControlDirective,
|
|
3534
3540
|
decorators: [{
|
|
@@ -3626,7 +3632,7 @@ class FormGroupName extends AbstractFormGroupDirective {
|
|
|
3626
3632
|
}
|
|
3627
3633
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
3628
3634
|
minVersion: "12.0.0",
|
|
3629
|
-
version: "
|
|
3635
|
+
version: "22.0.0-next.1",
|
|
3630
3636
|
ngImport: i0,
|
|
3631
3637
|
type: FormGroupName,
|
|
3632
3638
|
deps: [{
|
|
@@ -3647,7 +3653,7 @@ class FormGroupName extends AbstractFormGroupDirective {
|
|
|
3647
3653
|
});
|
|
3648
3654
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
3649
3655
|
minVersion: "14.0.0",
|
|
3650
|
-
version: "
|
|
3656
|
+
version: "22.0.0-next.1",
|
|
3651
3657
|
type: FormGroupName,
|
|
3652
3658
|
isStandalone: false,
|
|
3653
3659
|
selector: "[formGroupName]",
|
|
@@ -3661,7 +3667,7 @@ class FormGroupName extends AbstractFormGroupDirective {
|
|
|
3661
3667
|
}
|
|
3662
3668
|
i0.ɵɵngDeclareClassMetadata({
|
|
3663
3669
|
minVersion: "12.0.0",
|
|
3664
|
-
version: "
|
|
3670
|
+
version: "22.0.0-next.1",
|
|
3665
3671
|
ngImport: i0,
|
|
3666
3672
|
type: FormGroupName,
|
|
3667
3673
|
decorators: [{
|
|
@@ -3742,7 +3748,7 @@ class FormArrayName extends ControlContainer {
|
|
|
3742
3748
|
}
|
|
3743
3749
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
3744
3750
|
minVersion: "12.0.0",
|
|
3745
|
-
version: "
|
|
3751
|
+
version: "22.0.0-next.1",
|
|
3746
3752
|
ngImport: i0,
|
|
3747
3753
|
type: FormArrayName,
|
|
3748
3754
|
deps: [{
|
|
@@ -3763,7 +3769,7 @@ class FormArrayName extends ControlContainer {
|
|
|
3763
3769
|
});
|
|
3764
3770
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
3765
3771
|
minVersion: "14.0.0",
|
|
3766
|
-
version: "
|
|
3772
|
+
version: "22.0.0-next.1",
|
|
3767
3773
|
type: FormArrayName,
|
|
3768
3774
|
isStandalone: false,
|
|
3769
3775
|
selector: "[formArrayName]",
|
|
@@ -3777,7 +3783,7 @@ class FormArrayName extends ControlContainer {
|
|
|
3777
3783
|
}
|
|
3778
3784
|
i0.ɵɵngDeclareClassMetadata({
|
|
3779
3785
|
minVersion: "12.0.0",
|
|
3780
|
-
version: "
|
|
3786
|
+
version: "22.0.0-next.1",
|
|
3781
3787
|
ngImport: i0,
|
|
3782
3788
|
type: FormArrayName,
|
|
3783
3789
|
decorators: [{
|
|
@@ -3888,7 +3894,7 @@ class FormControlName extends NgControl {
|
|
|
3888
3894
|
}
|
|
3889
3895
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
3890
3896
|
minVersion: "12.0.0",
|
|
3891
|
-
version: "
|
|
3897
|
+
version: "22.0.0-next.1",
|
|
3892
3898
|
ngImport: i0,
|
|
3893
3899
|
type: FormControlName,
|
|
3894
3900
|
deps: [{
|
|
@@ -3916,7 +3922,7 @@ class FormControlName extends NgControl {
|
|
|
3916
3922
|
});
|
|
3917
3923
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
3918
3924
|
minVersion: "14.0.0",
|
|
3919
|
-
version: "
|
|
3925
|
+
version: "22.0.0-next.1",
|
|
3920
3926
|
type: FormControlName,
|
|
3921
3927
|
isStandalone: false,
|
|
3922
3928
|
selector: "[formControlName]",
|
|
@@ -3936,7 +3942,7 @@ class FormControlName extends NgControl {
|
|
|
3936
3942
|
}
|
|
3937
3943
|
i0.ɵɵngDeclareClassMetadata({
|
|
3938
3944
|
minVersion: "12.0.0",
|
|
3939
|
-
version: "
|
|
3945
|
+
version: "22.0.0-next.1",
|
|
3940
3946
|
ngImport: i0,
|
|
3941
3947
|
type: FormControlName,
|
|
3942
3948
|
decorators: [{
|
|
@@ -4034,7 +4040,7 @@ class FormGroupDirective extends AbstractFormDirective {
|
|
|
4034
4040
|
}
|
|
4035
4041
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4036
4042
|
minVersion: "12.0.0",
|
|
4037
|
-
version: "
|
|
4043
|
+
version: "22.0.0-next.1",
|
|
4038
4044
|
ngImport: i0,
|
|
4039
4045
|
type: FormGroupDirective,
|
|
4040
4046
|
deps: null,
|
|
@@ -4042,7 +4048,7 @@ class FormGroupDirective extends AbstractFormDirective {
|
|
|
4042
4048
|
});
|
|
4043
4049
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4044
4050
|
minVersion: "14.0.0",
|
|
4045
|
-
version: "
|
|
4051
|
+
version: "22.0.0-next.1",
|
|
4046
4052
|
type: FormGroupDirective,
|
|
4047
4053
|
isStandalone: false,
|
|
4048
4054
|
selector: "[formGroup]",
|
|
@@ -4066,7 +4072,7 @@ class FormGroupDirective extends AbstractFormDirective {
|
|
|
4066
4072
|
}
|
|
4067
4073
|
i0.ɵɵngDeclareClassMetadata({
|
|
4068
4074
|
minVersion: "12.0.0",
|
|
4069
|
-
version: "
|
|
4075
|
+
version: "22.0.0-next.1",
|
|
4070
4076
|
ngImport: i0,
|
|
4071
4077
|
type: FormGroupDirective,
|
|
4072
4078
|
decorators: [{
|
|
@@ -4166,7 +4172,7 @@ class SelectControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4166
4172
|
}
|
|
4167
4173
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4168
4174
|
minVersion: "12.0.0",
|
|
4169
|
-
version: "
|
|
4175
|
+
version: "22.0.0-next.1",
|
|
4170
4176
|
ngImport: i0,
|
|
4171
4177
|
type: SelectControlValueAccessor,
|
|
4172
4178
|
deps: null,
|
|
@@ -4174,7 +4180,7 @@ class SelectControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4174
4180
|
});
|
|
4175
4181
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4176
4182
|
minVersion: "14.0.0",
|
|
4177
|
-
version: "
|
|
4183
|
+
version: "22.0.0-next.1",
|
|
4178
4184
|
type: SelectControlValueAccessor,
|
|
4179
4185
|
isStandalone: false,
|
|
4180
4186
|
selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]",
|
|
@@ -4194,7 +4200,7 @@ class SelectControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4194
4200
|
}
|
|
4195
4201
|
i0.ɵɵngDeclareClassMetadata({
|
|
4196
4202
|
minVersion: "12.0.0",
|
|
4197
|
-
version: "
|
|
4203
|
+
version: "22.0.0-next.1",
|
|
4198
4204
|
ngImport: i0,
|
|
4199
4205
|
type: SelectControlValueAccessor,
|
|
4200
4206
|
decorators: [{
|
|
@@ -4245,7 +4251,7 @@ class NgSelectOption {
|
|
|
4245
4251
|
}
|
|
4246
4252
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4247
4253
|
minVersion: "12.0.0",
|
|
4248
|
-
version: "
|
|
4254
|
+
version: "22.0.0-next.1",
|
|
4249
4255
|
ngImport: i0,
|
|
4250
4256
|
type: NgSelectOption,
|
|
4251
4257
|
deps: [{
|
|
@@ -4261,7 +4267,7 @@ class NgSelectOption {
|
|
|
4261
4267
|
});
|
|
4262
4268
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4263
4269
|
minVersion: "14.0.0",
|
|
4264
|
-
version: "
|
|
4270
|
+
version: "22.0.0-next.1",
|
|
4265
4271
|
type: NgSelectOption,
|
|
4266
4272
|
isStandalone: false,
|
|
4267
4273
|
selector: "option",
|
|
@@ -4274,7 +4280,7 @@ class NgSelectOption {
|
|
|
4274
4280
|
}
|
|
4275
4281
|
i0.ɵɵngDeclareClassMetadata({
|
|
4276
4282
|
minVersion: "12.0.0",
|
|
4277
|
-
version: "
|
|
4283
|
+
version: "22.0.0-next.1",
|
|
4278
4284
|
ngImport: i0,
|
|
4279
4285
|
type: NgSelectOption,
|
|
4280
4286
|
decorators: [{
|
|
@@ -4390,7 +4396,7 @@ class SelectMultipleControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4390
4396
|
}
|
|
4391
4397
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4392
4398
|
minVersion: "12.0.0",
|
|
4393
|
-
version: "
|
|
4399
|
+
version: "22.0.0-next.1",
|
|
4394
4400
|
ngImport: i0,
|
|
4395
4401
|
type: SelectMultipleControlValueAccessor,
|
|
4396
4402
|
deps: null,
|
|
@@ -4398,7 +4404,7 @@ class SelectMultipleControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4398
4404
|
});
|
|
4399
4405
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4400
4406
|
minVersion: "14.0.0",
|
|
4401
|
-
version: "
|
|
4407
|
+
version: "22.0.0-next.1",
|
|
4402
4408
|
type: SelectMultipleControlValueAccessor,
|
|
4403
4409
|
isStandalone: false,
|
|
4404
4410
|
selector: "select[multiple][formControlName],select[multiple][formControl],select[multiple][ngModel]",
|
|
@@ -4418,7 +4424,7 @@ class SelectMultipleControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4418
4424
|
}
|
|
4419
4425
|
i0.ɵɵngDeclareClassMetadata({
|
|
4420
4426
|
minVersion: "12.0.0",
|
|
4421
|
-
version: "
|
|
4427
|
+
version: "22.0.0-next.1",
|
|
4422
4428
|
ngImport: i0,
|
|
4423
4429
|
type: SelectMultipleControlValueAccessor,
|
|
4424
4430
|
decorators: [{
|
|
@@ -4482,7 +4488,7 @@ class ɵNgSelectMultipleOption {
|
|
|
4482
4488
|
}
|
|
4483
4489
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4484
4490
|
minVersion: "12.0.0",
|
|
4485
|
-
version: "
|
|
4491
|
+
version: "22.0.0-next.1",
|
|
4486
4492
|
ngImport: i0,
|
|
4487
4493
|
type: ɵNgSelectMultipleOption,
|
|
4488
4494
|
deps: [{
|
|
@@ -4498,7 +4504,7 @@ class ɵNgSelectMultipleOption {
|
|
|
4498
4504
|
});
|
|
4499
4505
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4500
4506
|
minVersion: "14.0.0",
|
|
4501
|
-
version: "
|
|
4507
|
+
version: "22.0.0-next.1",
|
|
4502
4508
|
type: ɵNgSelectMultipleOption,
|
|
4503
4509
|
isStandalone: false,
|
|
4504
4510
|
selector: "option",
|
|
@@ -4511,7 +4517,7 @@ class ɵNgSelectMultipleOption {
|
|
|
4511
4517
|
}
|
|
4512
4518
|
i0.ɵɵngDeclareClassMetadata({
|
|
4513
4519
|
minVersion: "12.0.0",
|
|
4514
|
-
version: "
|
|
4520
|
+
version: "22.0.0-next.1",
|
|
4515
4521
|
ngImport: i0,
|
|
4516
4522
|
type: ɵNgSelectMultipleOption,
|
|
4517
4523
|
decorators: [{
|
|
@@ -4574,7 +4580,7 @@ class AbstractValidatorDirective {
|
|
|
4574
4580
|
}
|
|
4575
4581
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4576
4582
|
minVersion: "12.0.0",
|
|
4577
|
-
version: "
|
|
4583
|
+
version: "22.0.0-next.1",
|
|
4578
4584
|
ngImport: i0,
|
|
4579
4585
|
type: AbstractValidatorDirective,
|
|
4580
4586
|
deps: [],
|
|
@@ -4582,7 +4588,7 @@ class AbstractValidatorDirective {
|
|
|
4582
4588
|
});
|
|
4583
4589
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4584
4590
|
minVersion: "14.0.0",
|
|
4585
|
-
version: "
|
|
4591
|
+
version: "22.0.0-next.1",
|
|
4586
4592
|
type: AbstractValidatorDirective,
|
|
4587
4593
|
isStandalone: true,
|
|
4588
4594
|
usesOnChanges: true,
|
|
@@ -4591,7 +4597,7 @@ class AbstractValidatorDirective {
|
|
|
4591
4597
|
}
|
|
4592
4598
|
i0.ɵɵngDeclareClassMetadata({
|
|
4593
4599
|
minVersion: "12.0.0",
|
|
4594
|
-
version: "
|
|
4600
|
+
version: "22.0.0-next.1",
|
|
4595
4601
|
ngImport: i0,
|
|
4596
4602
|
type: AbstractValidatorDirective,
|
|
4597
4603
|
decorators: [{
|
|
@@ -4610,7 +4616,7 @@ class MaxValidator extends AbstractValidatorDirective {
|
|
|
4610
4616
|
createValidator = max => maxValidator(max);
|
|
4611
4617
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4612
4618
|
minVersion: "12.0.0",
|
|
4613
|
-
version: "
|
|
4619
|
+
version: "22.0.0-next.1",
|
|
4614
4620
|
ngImport: i0,
|
|
4615
4621
|
type: MaxValidator,
|
|
4616
4622
|
deps: null,
|
|
@@ -4618,7 +4624,7 @@ class MaxValidator extends AbstractValidatorDirective {
|
|
|
4618
4624
|
});
|
|
4619
4625
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4620
4626
|
minVersion: "14.0.0",
|
|
4621
|
-
version: "
|
|
4627
|
+
version: "22.0.0-next.1",
|
|
4622
4628
|
type: MaxValidator,
|
|
4623
4629
|
isStandalone: false,
|
|
4624
4630
|
selector: "input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]",
|
|
@@ -4637,7 +4643,7 @@ class MaxValidator extends AbstractValidatorDirective {
|
|
|
4637
4643
|
}
|
|
4638
4644
|
i0.ɵɵngDeclareClassMetadata({
|
|
4639
4645
|
minVersion: "12.0.0",
|
|
4640
|
-
version: "
|
|
4646
|
+
version: "22.0.0-next.1",
|
|
4641
4647
|
ngImport: i0,
|
|
4642
4648
|
type: MaxValidator,
|
|
4643
4649
|
decorators: [{
|
|
@@ -4669,7 +4675,7 @@ class MinValidator extends AbstractValidatorDirective {
|
|
|
4669
4675
|
createValidator = min => minValidator(min);
|
|
4670
4676
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4671
4677
|
minVersion: "12.0.0",
|
|
4672
|
-
version: "
|
|
4678
|
+
version: "22.0.0-next.1",
|
|
4673
4679
|
ngImport: i0,
|
|
4674
4680
|
type: MinValidator,
|
|
4675
4681
|
deps: null,
|
|
@@ -4677,7 +4683,7 @@ class MinValidator extends AbstractValidatorDirective {
|
|
|
4677
4683
|
});
|
|
4678
4684
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4679
4685
|
minVersion: "14.0.0",
|
|
4680
|
-
version: "
|
|
4686
|
+
version: "22.0.0-next.1",
|
|
4681
4687
|
type: MinValidator,
|
|
4682
4688
|
isStandalone: false,
|
|
4683
4689
|
selector: "input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]",
|
|
@@ -4696,7 +4702,7 @@ class MinValidator extends AbstractValidatorDirective {
|
|
|
4696
4702
|
}
|
|
4697
4703
|
i0.ɵɵngDeclareClassMetadata({
|
|
4698
4704
|
minVersion: "12.0.0",
|
|
4699
|
-
version: "
|
|
4705
|
+
version: "22.0.0-next.1",
|
|
4700
4706
|
ngImport: i0,
|
|
4701
4707
|
type: MinValidator,
|
|
4702
4708
|
decorators: [{
|
|
@@ -4736,7 +4742,7 @@ class RequiredValidator extends AbstractValidatorDirective {
|
|
|
4736
4742
|
}
|
|
4737
4743
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4738
4744
|
minVersion: "12.0.0",
|
|
4739
|
-
version: "
|
|
4745
|
+
version: "22.0.0-next.1",
|
|
4740
4746
|
ngImport: i0,
|
|
4741
4747
|
type: RequiredValidator,
|
|
4742
4748
|
deps: null,
|
|
@@ -4744,7 +4750,7 @@ class RequiredValidator extends AbstractValidatorDirective {
|
|
|
4744
4750
|
});
|
|
4745
4751
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4746
4752
|
minVersion: "14.0.0",
|
|
4747
|
-
version: "
|
|
4753
|
+
version: "22.0.0-next.1",
|
|
4748
4754
|
type: RequiredValidator,
|
|
4749
4755
|
isStandalone: false,
|
|
4750
4756
|
selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]",
|
|
@@ -4763,7 +4769,7 @@ class RequiredValidator extends AbstractValidatorDirective {
|
|
|
4763
4769
|
}
|
|
4764
4770
|
i0.ɵɵngDeclareClassMetadata({
|
|
4765
4771
|
minVersion: "12.0.0",
|
|
4766
|
-
version: "
|
|
4772
|
+
version: "22.0.0-next.1",
|
|
4767
4773
|
ngImport: i0,
|
|
4768
4774
|
type: RequiredValidator,
|
|
4769
4775
|
decorators: [{
|
|
@@ -4787,7 +4793,7 @@ class CheckboxRequiredValidator extends RequiredValidator {
|
|
|
4787
4793
|
createValidator = input => requiredTrueValidator;
|
|
4788
4794
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4789
4795
|
minVersion: "12.0.0",
|
|
4790
|
-
version: "
|
|
4796
|
+
version: "22.0.0-next.1",
|
|
4791
4797
|
ngImport: i0,
|
|
4792
4798
|
type: CheckboxRequiredValidator,
|
|
4793
4799
|
deps: null,
|
|
@@ -4795,7 +4801,7 @@ class CheckboxRequiredValidator extends RequiredValidator {
|
|
|
4795
4801
|
});
|
|
4796
4802
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4797
4803
|
minVersion: "14.0.0",
|
|
4798
|
-
version: "
|
|
4804
|
+
version: "22.0.0-next.1",
|
|
4799
4805
|
type: CheckboxRequiredValidator,
|
|
4800
4806
|
isStandalone: false,
|
|
4801
4807
|
selector: "input[type=checkbox][required][formControlName],input[type=checkbox][required][formControl],input[type=checkbox][required][ngModel]",
|
|
@@ -4811,7 +4817,7 @@ class CheckboxRequiredValidator extends RequiredValidator {
|
|
|
4811
4817
|
}
|
|
4812
4818
|
i0.ɵɵngDeclareClassMetadata({
|
|
4813
4819
|
minVersion: "12.0.0",
|
|
4814
|
-
version: "
|
|
4820
|
+
version: "22.0.0-next.1",
|
|
4815
4821
|
ngImport: i0,
|
|
4816
4822
|
type: CheckboxRequiredValidator,
|
|
4817
4823
|
decorators: [{
|
|
@@ -4841,7 +4847,7 @@ class EmailValidator extends AbstractValidatorDirective {
|
|
|
4841
4847
|
}
|
|
4842
4848
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4843
4849
|
minVersion: "12.0.0",
|
|
4844
|
-
version: "
|
|
4850
|
+
version: "22.0.0-next.1",
|
|
4845
4851
|
ngImport: i0,
|
|
4846
4852
|
type: EmailValidator,
|
|
4847
4853
|
deps: null,
|
|
@@ -4849,7 +4855,7 @@ class EmailValidator extends AbstractValidatorDirective {
|
|
|
4849
4855
|
});
|
|
4850
4856
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4851
4857
|
minVersion: "14.0.0",
|
|
4852
|
-
version: "
|
|
4858
|
+
version: "22.0.0-next.1",
|
|
4853
4859
|
type: EmailValidator,
|
|
4854
4860
|
isStandalone: false,
|
|
4855
4861
|
selector: "[email][formControlName],[email][formControl],[email][ngModel]",
|
|
@@ -4863,7 +4869,7 @@ class EmailValidator extends AbstractValidatorDirective {
|
|
|
4863
4869
|
}
|
|
4864
4870
|
i0.ɵɵngDeclareClassMetadata({
|
|
4865
4871
|
minVersion: "12.0.0",
|
|
4866
|
-
version: "
|
|
4872
|
+
version: "22.0.0-next.1",
|
|
4867
4873
|
ngImport: i0,
|
|
4868
4874
|
type: EmailValidator,
|
|
4869
4875
|
decorators: [{
|
|
@@ -4892,7 +4898,7 @@ class MinLengthValidator extends AbstractValidatorDirective {
|
|
|
4892
4898
|
createValidator = minlength => minLengthValidator(minlength);
|
|
4893
4899
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4894
4900
|
minVersion: "12.0.0",
|
|
4895
|
-
version: "
|
|
4901
|
+
version: "22.0.0-next.1",
|
|
4896
4902
|
ngImport: i0,
|
|
4897
4903
|
type: MinLengthValidator,
|
|
4898
4904
|
deps: null,
|
|
@@ -4900,7 +4906,7 @@ class MinLengthValidator extends AbstractValidatorDirective {
|
|
|
4900
4906
|
});
|
|
4901
4907
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4902
4908
|
minVersion: "14.0.0",
|
|
4903
|
-
version: "
|
|
4909
|
+
version: "22.0.0-next.1",
|
|
4904
4910
|
type: MinLengthValidator,
|
|
4905
4911
|
isStandalone: false,
|
|
4906
4912
|
selector: "[minlength][formControlName],[minlength][formControl],[minlength][ngModel]",
|
|
@@ -4919,7 +4925,7 @@ class MinLengthValidator extends AbstractValidatorDirective {
|
|
|
4919
4925
|
}
|
|
4920
4926
|
i0.ɵɵngDeclareClassMetadata({
|
|
4921
4927
|
minVersion: "12.0.0",
|
|
4922
|
-
version: "
|
|
4928
|
+
version: "22.0.0-next.1",
|
|
4923
4929
|
ngImport: i0,
|
|
4924
4930
|
type: MinLengthValidator,
|
|
4925
4931
|
decorators: [{
|
|
@@ -4951,7 +4957,7 @@ class MaxLengthValidator extends AbstractValidatorDirective {
|
|
|
4951
4957
|
createValidator = maxlength => maxLengthValidator(maxlength);
|
|
4952
4958
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
4953
4959
|
minVersion: "12.0.0",
|
|
4954
|
-
version: "
|
|
4960
|
+
version: "22.0.0-next.1",
|
|
4955
4961
|
ngImport: i0,
|
|
4956
4962
|
type: MaxLengthValidator,
|
|
4957
4963
|
deps: null,
|
|
@@ -4959,7 +4965,7 @@ class MaxLengthValidator extends AbstractValidatorDirective {
|
|
|
4959
4965
|
});
|
|
4960
4966
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
4961
4967
|
minVersion: "14.0.0",
|
|
4962
|
-
version: "
|
|
4968
|
+
version: "22.0.0-next.1",
|
|
4963
4969
|
type: MaxLengthValidator,
|
|
4964
4970
|
isStandalone: false,
|
|
4965
4971
|
selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]",
|
|
@@ -4978,7 +4984,7 @@ class MaxLengthValidator extends AbstractValidatorDirective {
|
|
|
4978
4984
|
}
|
|
4979
4985
|
i0.ɵɵngDeclareClassMetadata({
|
|
4980
4986
|
minVersion: "12.0.0",
|
|
4981
|
-
version: "
|
|
4987
|
+
version: "22.0.0-next.1",
|
|
4982
4988
|
ngImport: i0,
|
|
4983
4989
|
type: MaxLengthValidator,
|
|
4984
4990
|
decorators: [{
|
|
@@ -5010,7 +5016,7 @@ class PatternValidator extends AbstractValidatorDirective {
|
|
|
5010
5016
|
createValidator = input => patternValidator(input);
|
|
5011
5017
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
5012
5018
|
minVersion: "12.0.0",
|
|
5013
|
-
version: "
|
|
5019
|
+
version: "22.0.0-next.1",
|
|
5014
5020
|
ngImport: i0,
|
|
5015
5021
|
type: PatternValidator,
|
|
5016
5022
|
deps: null,
|
|
@@ -5018,7 +5024,7 @@ class PatternValidator extends AbstractValidatorDirective {
|
|
|
5018
5024
|
});
|
|
5019
5025
|
static ɵdir = i0.ɵɵngDeclareDirective({
|
|
5020
5026
|
minVersion: "14.0.0",
|
|
5021
|
-
version: "
|
|
5027
|
+
version: "22.0.0-next.1",
|
|
5022
5028
|
type: PatternValidator,
|
|
5023
5029
|
isStandalone: false,
|
|
5024
5030
|
selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]",
|
|
@@ -5037,7 +5043,7 @@ class PatternValidator extends AbstractValidatorDirective {
|
|
|
5037
5043
|
}
|
|
5038
5044
|
i0.ɵɵngDeclareClassMetadata({
|
|
5039
5045
|
minVersion: "12.0.0",
|
|
5040
|
-
version: "
|
|
5046
|
+
version: "22.0.0-next.1",
|
|
5041
5047
|
ngImport: i0,
|
|
5042
5048
|
type: PatternValidator,
|
|
5043
5049
|
decorators: [{
|
|
@@ -5064,7 +5070,7 @@ const REACTIVE_DRIVEN_DIRECTIVES = [FormControlDirective, FormGroupDirective, Fo
|
|
|
5064
5070
|
class ɵInternalFormsSharedModule {
|
|
5065
5071
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
5066
5072
|
minVersion: "12.0.0",
|
|
5067
|
-
version: "
|
|
5073
|
+
version: "22.0.0-next.1",
|
|
5068
5074
|
ngImport: i0,
|
|
5069
5075
|
type: ɵInternalFormsSharedModule,
|
|
5070
5076
|
deps: [],
|
|
@@ -5072,7 +5078,7 @@ class ɵInternalFormsSharedModule {
|
|
|
5072
5078
|
});
|
|
5073
5079
|
static ɵmod = i0.ɵɵngDeclareNgModule({
|
|
5074
5080
|
minVersion: "14.0.0",
|
|
5075
|
-
version: "
|
|
5081
|
+
version: "22.0.0-next.1",
|
|
5076
5082
|
ngImport: i0,
|
|
5077
5083
|
type: ɵInternalFormsSharedModule,
|
|
5078
5084
|
declarations: [ɵNgNoValidate, NgSelectOption, ɵNgSelectMultipleOption, DefaultValueAccessor, NumberValueAccessor, RangeValueAccessor, CheckboxControlValueAccessor, SelectControlValueAccessor, SelectMultipleControlValueAccessor, RadioControlValueAccessor, NgControlStatus, NgControlStatusGroup, RequiredValidator, MinLengthValidator, MaxLengthValidator, PatternValidator, CheckboxRequiredValidator, EmailValidator, MinValidator, MaxValidator],
|
|
@@ -5080,14 +5086,14 @@ class ɵInternalFormsSharedModule {
|
|
|
5080
5086
|
});
|
|
5081
5087
|
static ɵinj = i0.ɵɵngDeclareInjector({
|
|
5082
5088
|
minVersion: "12.0.0",
|
|
5083
|
-
version: "
|
|
5089
|
+
version: "22.0.0-next.1",
|
|
5084
5090
|
ngImport: i0,
|
|
5085
5091
|
type: ɵInternalFormsSharedModule
|
|
5086
5092
|
});
|
|
5087
5093
|
}
|
|
5088
5094
|
i0.ɵɵngDeclareClassMetadata({
|
|
5089
5095
|
minVersion: "12.0.0",
|
|
5090
|
-
version: "
|
|
5096
|
+
version: "22.0.0-next.1",
|
|
5091
5097
|
ngImport: i0,
|
|
5092
5098
|
type: ɵInternalFormsSharedModule,
|
|
5093
5099
|
decorators: [{
|
|
@@ -5167,7 +5173,7 @@ class FormBuilder {
|
|
|
5167
5173
|
}
|
|
5168
5174
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
5169
5175
|
minVersion: "12.0.0",
|
|
5170
|
-
version: "
|
|
5176
|
+
version: "22.0.0-next.1",
|
|
5171
5177
|
ngImport: i0,
|
|
5172
5178
|
type: FormBuilder,
|
|
5173
5179
|
deps: [],
|
|
@@ -5175,7 +5181,7 @@ class FormBuilder {
|
|
|
5175
5181
|
});
|
|
5176
5182
|
static ɵprov = i0.ɵɵngDeclareInjectable({
|
|
5177
5183
|
minVersion: "12.0.0",
|
|
5178
|
-
version: "
|
|
5184
|
+
version: "22.0.0-next.1",
|
|
5179
5185
|
ngImport: i0,
|
|
5180
5186
|
type: FormBuilder,
|
|
5181
5187
|
providedIn: 'root'
|
|
@@ -5183,7 +5189,7 @@ class FormBuilder {
|
|
|
5183
5189
|
}
|
|
5184
5190
|
i0.ɵɵngDeclareClassMetadata({
|
|
5185
5191
|
minVersion: "12.0.0",
|
|
5186
|
-
version: "
|
|
5192
|
+
version: "22.0.0-next.1",
|
|
5187
5193
|
ngImport: i0,
|
|
5188
5194
|
type: FormBuilder,
|
|
5189
5195
|
decorators: [{
|
|
@@ -5196,7 +5202,7 @@ i0.ɵɵngDeclareClassMetadata({
|
|
|
5196
5202
|
class NonNullableFormBuilder {
|
|
5197
5203
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
5198
5204
|
minVersion: "12.0.0",
|
|
5199
|
-
version: "
|
|
5205
|
+
version: "22.0.0-next.1",
|
|
5200
5206
|
ngImport: i0,
|
|
5201
5207
|
type: NonNullableFormBuilder,
|
|
5202
5208
|
deps: [],
|
|
@@ -5204,7 +5210,7 @@ class NonNullableFormBuilder {
|
|
|
5204
5210
|
});
|
|
5205
5211
|
static ɵprov = i0.ɵɵngDeclareInjectable({
|
|
5206
5212
|
minVersion: "12.0.0",
|
|
5207
|
-
version: "
|
|
5213
|
+
version: "22.0.0-next.1",
|
|
5208
5214
|
ngImport: i0,
|
|
5209
5215
|
type: NonNullableFormBuilder,
|
|
5210
5216
|
providedIn: 'root',
|
|
@@ -5213,7 +5219,7 @@ class NonNullableFormBuilder {
|
|
|
5213
5219
|
}
|
|
5214
5220
|
i0.ɵɵngDeclareClassMetadata({
|
|
5215
5221
|
minVersion: "12.0.0",
|
|
5216
|
-
version: "
|
|
5222
|
+
version: "22.0.0-next.1",
|
|
5217
5223
|
ngImport: i0,
|
|
5218
5224
|
type: NonNullableFormBuilder,
|
|
5219
5225
|
decorators: [{
|
|
@@ -5236,7 +5242,7 @@ class UntypedFormBuilder extends FormBuilder {
|
|
|
5236
5242
|
}
|
|
5237
5243
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
5238
5244
|
minVersion: "12.0.0",
|
|
5239
|
-
version: "
|
|
5245
|
+
version: "22.0.0-next.1",
|
|
5240
5246
|
ngImport: i0,
|
|
5241
5247
|
type: UntypedFormBuilder,
|
|
5242
5248
|
deps: null,
|
|
@@ -5244,7 +5250,7 @@ class UntypedFormBuilder extends FormBuilder {
|
|
|
5244
5250
|
});
|
|
5245
5251
|
static ɵprov = i0.ɵɵngDeclareInjectable({
|
|
5246
5252
|
minVersion: "12.0.0",
|
|
5247
|
-
version: "
|
|
5253
|
+
version: "22.0.0-next.1",
|
|
5248
5254
|
ngImport: i0,
|
|
5249
5255
|
type: UntypedFormBuilder,
|
|
5250
5256
|
providedIn: 'root'
|
|
@@ -5252,7 +5258,7 @@ class UntypedFormBuilder extends FormBuilder {
|
|
|
5252
5258
|
}
|
|
5253
5259
|
i0.ɵɵngDeclareClassMetadata({
|
|
5254
5260
|
minVersion: "12.0.0",
|
|
5255
|
-
version: "
|
|
5261
|
+
version: "22.0.0-next.1",
|
|
5256
5262
|
ngImport: i0,
|
|
5257
5263
|
type: UntypedFormBuilder,
|
|
5258
5264
|
decorators: [{
|
|
@@ -5275,7 +5281,7 @@ class FormsModule {
|
|
|
5275
5281
|
}
|
|
5276
5282
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
5277
5283
|
minVersion: "12.0.0",
|
|
5278
|
-
version: "
|
|
5284
|
+
version: "22.0.0-next.1",
|
|
5279
5285
|
ngImport: i0,
|
|
5280
5286
|
type: FormsModule,
|
|
5281
5287
|
deps: [],
|
|
@@ -5283,7 +5289,7 @@ class FormsModule {
|
|
|
5283
5289
|
});
|
|
5284
5290
|
static ɵmod = i0.ɵɵngDeclareNgModule({
|
|
5285
5291
|
minVersion: "14.0.0",
|
|
5286
|
-
version: "
|
|
5292
|
+
version: "22.0.0-next.1",
|
|
5287
5293
|
ngImport: i0,
|
|
5288
5294
|
type: FormsModule,
|
|
5289
5295
|
declarations: [NgModel, NgModelGroup, NgForm],
|
|
@@ -5291,7 +5297,7 @@ class FormsModule {
|
|
|
5291
5297
|
});
|
|
5292
5298
|
static ɵinj = i0.ɵɵngDeclareInjector({
|
|
5293
5299
|
minVersion: "12.0.0",
|
|
5294
|
-
version: "
|
|
5300
|
+
version: "22.0.0-next.1",
|
|
5295
5301
|
ngImport: i0,
|
|
5296
5302
|
type: FormsModule,
|
|
5297
5303
|
imports: [ɵInternalFormsSharedModule]
|
|
@@ -5299,7 +5305,7 @@ class FormsModule {
|
|
|
5299
5305
|
}
|
|
5300
5306
|
i0.ɵɵngDeclareClassMetadata({
|
|
5301
5307
|
minVersion: "12.0.0",
|
|
5302
|
-
version: "
|
|
5308
|
+
version: "22.0.0-next.1",
|
|
5303
5309
|
ngImport: i0,
|
|
5304
5310
|
type: FormsModule,
|
|
5305
5311
|
decorators: [{
|
|
@@ -5325,7 +5331,7 @@ class ReactiveFormsModule {
|
|
|
5325
5331
|
}
|
|
5326
5332
|
static ɵfac = i0.ɵɵngDeclareFactory({
|
|
5327
5333
|
minVersion: "12.0.0",
|
|
5328
|
-
version: "
|
|
5334
|
+
version: "22.0.0-next.1",
|
|
5329
5335
|
ngImport: i0,
|
|
5330
5336
|
type: ReactiveFormsModule,
|
|
5331
5337
|
deps: [],
|
|
@@ -5333,7 +5339,7 @@ class ReactiveFormsModule {
|
|
|
5333
5339
|
});
|
|
5334
5340
|
static ɵmod = i0.ɵɵngDeclareNgModule({
|
|
5335
5341
|
minVersion: "14.0.0",
|
|
5336
|
-
version: "
|
|
5342
|
+
version: "22.0.0-next.1",
|
|
5337
5343
|
ngImport: i0,
|
|
5338
5344
|
type: ReactiveFormsModule,
|
|
5339
5345
|
declarations: [FormControlDirective, FormGroupDirective, FormArrayDirective, FormControlName, FormGroupName, FormArrayName],
|
|
@@ -5341,7 +5347,7 @@ class ReactiveFormsModule {
|
|
|
5341
5347
|
});
|
|
5342
5348
|
static ɵinj = i0.ɵɵngDeclareInjector({
|
|
5343
5349
|
minVersion: "12.0.0",
|
|
5344
|
-
version: "
|
|
5350
|
+
version: "22.0.0-next.1",
|
|
5345
5351
|
ngImport: i0,
|
|
5346
5352
|
type: ReactiveFormsModule,
|
|
5347
5353
|
imports: [ɵInternalFormsSharedModule]
|
|
@@ -5349,7 +5355,7 @@ class ReactiveFormsModule {
|
|
|
5349
5355
|
}
|
|
5350
5356
|
i0.ɵɵngDeclareClassMetadata({
|
|
5351
5357
|
minVersion: "12.0.0",
|
|
5352
|
-
version: "
|
|
5358
|
+
version: "22.0.0-next.1",
|
|
5353
5359
|
ngImport: i0,
|
|
5354
5360
|
type: ReactiveFormsModule,
|
|
5355
5361
|
decorators: [{
|