@angular/forms 20.0.0-next.3 → 20.0.0-next.5
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/forms.mjs +150 -148
- package/fesm2022/forms.mjs.map +1 -1
- package/index.d.ts +21 -4
- package/package.json +5 -5
package/fesm2022/forms.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.0.0-next.
|
|
2
|
+
* @license Angular v20.0.0-next.5
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -64,10 +64,10 @@ class BaseControlValueAccessor {
|
|
|
64
64
|
setDisabledState(isDisabled) {
|
|
65
65
|
this.setProperty('disabled', isDisabled);
|
|
66
66
|
}
|
|
67
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
68
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
67
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: BaseControlValueAccessor, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
68
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: BaseControlValueAccessor, isStandalone: true, ngImport: i0 });
|
|
69
69
|
}
|
|
70
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
70
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: BaseControlValueAccessor, decorators: [{
|
|
71
71
|
type: Directive
|
|
72
72
|
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }] });
|
|
73
73
|
/**
|
|
@@ -80,10 +80,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3",
|
|
|
80
80
|
* applications code.
|
|
81
81
|
*/
|
|
82
82
|
class BuiltInControlValueAccessor extends BaseControlValueAccessor {
|
|
83
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
84
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
83
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: BuiltInControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
84
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: BuiltInControlValueAccessor, isStandalone: true, usesInheritance: true, ngImport: i0 });
|
|
85
85
|
}
|
|
86
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
86
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: BuiltInControlValueAccessor, decorators: [{
|
|
87
87
|
type: Directive
|
|
88
88
|
}] });
|
|
89
89
|
/**
|
|
@@ -131,14 +131,14 @@ class CheckboxControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
131
131
|
writeValue(value) {
|
|
132
132
|
this.setProperty('checked', value);
|
|
133
133
|
}
|
|
134
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
135
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
134
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: CheckboxControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
135
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: CheckboxControlValueAccessor, isStandalone: false, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]", host: { listeners: { "change": "onChange($any($event.target).checked)", "blur": "onTouched()" } }, providers: [CHECKBOX_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
136
136
|
}
|
|
137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: CheckboxControlValueAccessor, decorators: [{
|
|
138
138
|
type: Directive,
|
|
139
139
|
args: [{
|
|
140
140
|
selector: 'input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]',
|
|
141
|
-
host: { '(change)': 'onChange($event.target.checked)', '(blur)': 'onTouched()' },
|
|
141
|
+
host: { '(change)': 'onChange($any($event.target).checked)', '(blur)': 'onTouched()' },
|
|
142
142
|
providers: [CHECKBOX_VALUE_ACCESSOR],
|
|
143
143
|
standalone: false,
|
|
144
144
|
}]
|
|
@@ -232,10 +232,10 @@ class DefaultValueAccessor extends BaseControlValueAccessor {
|
|
|
232
232
|
this._composing = false;
|
|
233
233
|
this._compositionMode && this.onChange(value);
|
|
234
234
|
}
|
|
235
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
236
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
235
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: DefaultValueAccessor, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: COMPOSITION_BUFFER_MODE, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
236
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: DefaultValueAccessor, isStandalone: false, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]", host: { listeners: { "input": "_handleInput($any($event.target).value)", "blur": "onTouched()", "compositionstart": "_compositionStart()", "compositionend": "_compositionEnd($any($event.target).value)" } }, providers: [DEFAULT_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
237
237
|
}
|
|
238
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
238
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: DefaultValueAccessor, decorators: [{
|
|
239
239
|
type: Directive,
|
|
240
240
|
args: [{
|
|
241
241
|
selector: 'input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]',
|
|
@@ -243,10 +243,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3",
|
|
|
243
243
|
// https://github.com/angular/angular/issues/3011 is implemented
|
|
244
244
|
// selector: '[ngModel],[formControl],[formControlName]',
|
|
245
245
|
host: {
|
|
246
|
-
'(input)': '$any(
|
|
246
|
+
'(input)': '_handleInput($any($event.target).value)',
|
|
247
247
|
'(blur)': 'onTouched()',
|
|
248
|
-
'(compositionstart)': '
|
|
249
|
-
'(compositionend)': '$any(
|
|
248
|
+
'(compositionstart)': '_compositionStart()',
|
|
249
|
+
'(compositionend)': '_compositionEnd($any($event.target).value)',
|
|
250
250
|
},
|
|
251
251
|
providers: [DEFAULT_VALUE_ACCESSOR],
|
|
252
252
|
standalone: false,
|
|
@@ -1240,7 +1240,6 @@ class ControlContainer extends AbstractControlDirective {
|
|
|
1240
1240
|
* @description
|
|
1241
1241
|
* The name for the control
|
|
1242
1242
|
*/
|
|
1243
|
-
// TODO(issue/24571): remove '!'.
|
|
1244
1243
|
name;
|
|
1245
1244
|
/**
|
|
1246
1245
|
* @description
|
|
@@ -1372,10 +1371,10 @@ class NgControlStatus extends AbstractControlStatus {
|
|
|
1372
1371
|
constructor(cd) {
|
|
1373
1372
|
super(cd);
|
|
1374
1373
|
}
|
|
1375
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1376
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
1374
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgControlStatus, deps: [{ token: NgControl, self: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1375
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: NgControlStatus, isStandalone: false, selector: "[formControlName],[ngModel],[formControl]", host: { properties: { "class.ng-untouched": "isUntouched", "class.ng-touched": "isTouched", "class.ng-pristine": "isPristine", "class.ng-dirty": "isDirty", "class.ng-valid": "isValid", "class.ng-invalid": "isInvalid", "class.ng-pending": "isPending" } }, usesInheritance: true, ngImport: i0 });
|
|
1377
1376
|
}
|
|
1378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgControlStatus, decorators: [{
|
|
1379
1378
|
type: Directive,
|
|
1380
1379
|
args: [{
|
|
1381
1380
|
selector: '[formControlName],[ngModel],[formControl]',
|
|
@@ -1401,10 +1400,10 @@ class NgControlStatusGroup extends AbstractControlStatus {
|
|
|
1401
1400
|
constructor(cd) {
|
|
1402
1401
|
super(cd);
|
|
1403
1402
|
}
|
|
1404
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1405
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
1403
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgControlStatusGroup, deps: [{ token: ControlContainer, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1404
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: NgControlStatusGroup, isStandalone: false, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]", host: { properties: { "class.ng-untouched": "isUntouched", "class.ng-touched": "isTouched", "class.ng-pristine": "isPristine", "class.ng-dirty": "isDirty", "class.ng-valid": "isValid", "class.ng-invalid": "isInvalid", "class.ng-pending": "isPending", "class.ng-submitted": "isSubmitted" } }, usesInheritance: true, ngImport: i0 });
|
|
1406
1405
|
}
|
|
1407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1406
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgControlStatusGroup, decorators: [{
|
|
1408
1407
|
type: Directive,
|
|
1409
1408
|
args: [{
|
|
1410
1409
|
selector: '[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]',
|
|
@@ -2212,6 +2211,20 @@ class AbstractControl {
|
|
|
2212
2211
|
this._events.next(new TouchedChangeEvent(true, sourceControl));
|
|
2213
2212
|
}
|
|
2214
2213
|
}
|
|
2214
|
+
/**
|
|
2215
|
+
* Marks the control and all its descendant controls as `dirty`.
|
|
2216
|
+
* @see {@link markAsDirty()}
|
|
2217
|
+
*
|
|
2218
|
+
* @param opts Configuration options that determine how the control propagates changes
|
|
2219
|
+
* and emits events after marking is applied.
|
|
2220
|
+
* * `emitEvent`: When true or not supplied (the default), the `events`
|
|
2221
|
+
* observable emits a `PristineChangeEvent` with the `pristine` property being `false`.
|
|
2222
|
+
* When false, no events are emitted.
|
|
2223
|
+
*/
|
|
2224
|
+
markAllAsDirty(opts = {}) {
|
|
2225
|
+
this.markAsDirty({ onlySelf: true, emitEvent: opts.emitEvent, sourceControl: this });
|
|
2226
|
+
this._forEachChild((control) => control.markAllAsDirty(opts));
|
|
2227
|
+
}
|
|
2215
2228
|
/**
|
|
2216
2229
|
* Marks the control and all its descendant controls as `touched`.
|
|
2217
2230
|
* @see {@link markAsTouched()}
|
|
@@ -3569,7 +3582,6 @@ class NgForm extends ControlContainer {
|
|
|
3569
3582
|
* Possible values: `'change'` | `'blur'` | `'submit'`.
|
|
3570
3583
|
*
|
|
3571
3584
|
*/
|
|
3572
|
-
// TODO(issue/24571): remove '!'.
|
|
3573
3585
|
options;
|
|
3574
3586
|
constructor(validators, asyncValidators, callSetDisabledState) {
|
|
3575
3587
|
super();
|
|
@@ -3749,10 +3761,10 @@ class NgForm extends ControlContainer {
|
|
|
3749
3761
|
path.pop();
|
|
3750
3762
|
return path.length ? this.form.get(path) : this.form;
|
|
3751
3763
|
}
|
|
3752
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3753
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
3764
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgForm, deps: [{ token: NG_VALIDATORS, optional: true, self: true }, { token: NG_ASYNC_VALIDATORS, optional: true, self: true }, { token: CALL_SET_DISABLED_STATE, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3765
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: NgForm, isStandalone: false, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: { options: ["ngFormOptions", "options"] }, outputs: { ngSubmit: "ngSubmit" }, host: { listeners: { "submit": "onSubmit($event)", "reset": "onReset()" } }, providers: [formDirectiveProvider$1], exportAs: ["ngForm"], usesInheritance: true, ngImport: i0 });
|
|
3754
3766
|
}
|
|
3755
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3767
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgForm, decorators: [{
|
|
3756
3768
|
type: Directive,
|
|
3757
3769
|
args: [{
|
|
3758
3770
|
selector: 'form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]',
|
|
@@ -3924,7 +3936,6 @@ class AbstractFormGroupDirective extends ControlContainer {
|
|
|
3924
3936
|
*
|
|
3925
3937
|
* @internal
|
|
3926
3938
|
*/
|
|
3927
|
-
// TODO(issue/24571): remove '!'.
|
|
3928
3939
|
_parent;
|
|
3929
3940
|
/** @nodoc */
|
|
3930
3941
|
ngOnInit() {
|
|
@@ -3962,10 +3973,10 @@ class AbstractFormGroupDirective extends ControlContainer {
|
|
|
3962
3973
|
}
|
|
3963
3974
|
/** @internal */
|
|
3964
3975
|
_checkParentType() { }
|
|
3965
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3966
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
3976
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: AbstractFormGroupDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3977
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: AbstractFormGroupDirective, isStandalone: false, usesInheritance: true, ngImport: i0 });
|
|
3967
3978
|
}
|
|
3968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
3979
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: AbstractFormGroupDirective, decorators: [{
|
|
3969
3980
|
type: Directive,
|
|
3970
3981
|
args: [{
|
|
3971
3982
|
standalone: false,
|
|
@@ -4068,10 +4079,10 @@ class NgModelGroup extends AbstractFormGroupDirective {
|
|
|
4068
4079
|
throw modelGroupParentException();
|
|
4069
4080
|
}
|
|
4070
4081
|
}
|
|
4071
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4072
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
4082
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgModelGroup, deps: [{ token: ControlContainer, host: true, skipSelf: true }, { token: NG_VALIDATORS, optional: true, self: true }, { token: NG_ASYNC_VALIDATORS, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4083
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: NgModelGroup, isStandalone: false, selector: "[ngModelGroup]", inputs: { name: ["ngModelGroup", "name"] }, providers: [modelGroupProvider], exportAs: ["ngModelGroup"], usesInheritance: true, ngImport: i0 });
|
|
4073
4084
|
}
|
|
4074
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgModelGroup, decorators: [{
|
|
4075
4086
|
type: Directive,
|
|
4076
4087
|
args: [{
|
|
4077
4088
|
selector: '[ngModelGroup]',
|
|
@@ -4238,7 +4249,6 @@ class NgModel extends NgControl {
|
|
|
4238
4249
|
* @description
|
|
4239
4250
|
* Tracks whether the control is disabled.
|
|
4240
4251
|
*/
|
|
4241
|
-
// TODO(issue/24571): remove '!'.
|
|
4242
4252
|
isDisabled;
|
|
4243
4253
|
/**
|
|
4244
4254
|
* @description
|
|
@@ -4261,7 +4271,6 @@ class NgModel extends NgControl {
|
|
|
4261
4271
|
* Defaults to 'change'. Possible values: `'change'` | `'blur'` | `'submit'`.
|
|
4262
4272
|
*
|
|
4263
4273
|
*/
|
|
4264
|
-
// TODO(issue/24571): remove '!'.
|
|
4265
4274
|
options;
|
|
4266
4275
|
/**
|
|
4267
4276
|
* @description
|
|
@@ -4385,10 +4394,10 @@ class NgModel extends NgControl {
|
|
|
4385
4394
|
_getPath(controlName) {
|
|
4386
4395
|
return this._parent ? controlPath(controlName, this._parent) : [controlName];
|
|
4387
4396
|
}
|
|
4388
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4389
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
4397
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgModel, deps: [{ token: ControlContainer, host: true, optional: true }, { token: NG_VALIDATORS, optional: true, self: true }, { token: NG_ASYNC_VALIDATORS, optional: true, self: true }, { token: NG_VALUE_ACCESSOR, optional: true, self: true }, { token: ChangeDetectorRef, optional: true }, { token: CALL_SET_DISABLED_STATE, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4398
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: NgModel, isStandalone: false, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: { name: "name", isDisabled: ["disabled", "isDisabled"], model: ["ngModel", "model"], options: ["ngModelOptions", "options"] }, outputs: { update: "ngModelChange" }, providers: [formControlBinding$1], exportAs: ["ngModel"], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
4390
4399
|
}
|
|
4391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4400
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgModel, decorators: [{
|
|
4392
4401
|
type: Directive,
|
|
4393
4402
|
args: [{
|
|
4394
4403
|
selector: '[ngModel]:not([formControlName]):not([formControl])',
|
|
@@ -4473,10 +4482,10 @@ function checkParentType$1(parent) {
|
|
|
4473
4482
|
* @ngModule FormsModule
|
|
4474
4483
|
*/
|
|
4475
4484
|
class ɵNgNoValidate {
|
|
4476
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4477
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
4485
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: ɵNgNoValidate, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4486
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: ɵNgNoValidate, isStandalone: false, selector: "form:not([ngNoForm]):not([ngNativeValidate])", host: { attributes: { "novalidate": "" } }, ngImport: i0 });
|
|
4478
4487
|
}
|
|
4479
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: ɵNgNoValidate, decorators: [{
|
|
4480
4489
|
type: Directive,
|
|
4481
4490
|
args: [{
|
|
4482
4491
|
selector: 'form:not([ngNoForm]):not([ngNativeValidate])',
|
|
@@ -4533,14 +4542,14 @@ class NumberValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4533
4542
|
fn(value == '' ? null : parseFloat(value));
|
|
4534
4543
|
};
|
|
4535
4544
|
}
|
|
4536
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4537
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
4545
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NumberValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
4546
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: NumberValueAccessor, isStandalone: false, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]", host: { listeners: { "input": "onChange($any($event.target).value)", "blur": "onTouched()" } }, providers: [NUMBER_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
4538
4547
|
}
|
|
4539
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NumberValueAccessor, decorators: [{
|
|
4540
4549
|
type: Directive,
|
|
4541
4550
|
args: [{
|
|
4542
4551
|
selector: 'input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]',
|
|
4543
|
-
host: { '(input)': 'onChange($event.target.value)', '(blur)': 'onTouched()' },
|
|
4552
|
+
host: { '(input)': 'onChange($any($event.target).value)', '(blur)': 'onTouched()' },
|
|
4544
4553
|
providers: [NUMBER_VALUE_ACCESSOR],
|
|
4545
4554
|
standalone: false,
|
|
4546
4555
|
}]
|
|
@@ -4598,10 +4607,10 @@ class RadioControlRegistry {
|
|
|
4598
4607
|
return false;
|
|
4599
4608
|
return (controlPair[0]._parent === accessor._control._parent && controlPair[1].name === accessor.name);
|
|
4600
4609
|
}
|
|
4601
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4602
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4610
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: RadioControlRegistry, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4611
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: RadioControlRegistry, providedIn: 'root' });
|
|
4603
4612
|
}
|
|
4604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: RadioControlRegistry, decorators: [{
|
|
4605
4614
|
type: Injectable,
|
|
4606
4615
|
args: [{ providedIn: 'root' }]
|
|
4607
4616
|
}] });
|
|
@@ -4629,13 +4638,10 @@ class RadioControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4629
4638
|
_registry;
|
|
4630
4639
|
_injector;
|
|
4631
4640
|
/** @internal */
|
|
4632
|
-
// TODO(issue/24571): remove '!'.
|
|
4633
4641
|
_state;
|
|
4634
4642
|
/** @internal */
|
|
4635
|
-
// TODO(issue/24571): remove '!'.
|
|
4636
4643
|
_control;
|
|
4637
4644
|
/** @internal */
|
|
4638
|
-
// TODO(issue/24571): remove '!'.
|
|
4639
4645
|
_fn;
|
|
4640
4646
|
setDisabledStateFired = false;
|
|
4641
4647
|
/**
|
|
@@ -4650,14 +4656,12 @@ class RadioControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4650
4656
|
* @description
|
|
4651
4657
|
* Tracks the name of the radio input element.
|
|
4652
4658
|
*/
|
|
4653
|
-
// TODO(issue/24571): remove '!'.
|
|
4654
4659
|
name;
|
|
4655
4660
|
/**
|
|
4656
4661
|
* @description
|
|
4657
4662
|
* Tracks the name of the `FormControl` bound to the directive. The name corresponds
|
|
4658
4663
|
* to a key in the parent `FormGroup` or `FormArray`.
|
|
4659
4664
|
*/
|
|
4660
|
-
// TODO(issue/24571): remove '!'.
|
|
4661
4665
|
formControlName;
|
|
4662
4666
|
/**
|
|
4663
4667
|
* @description
|
|
@@ -4744,10 +4748,10 @@ class RadioControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4744
4748
|
if (!this.name && this.formControlName)
|
|
4745
4749
|
this.name = this.formControlName;
|
|
4746
4750
|
}
|
|
4747
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4748
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
4751
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: RadioControlValueAccessor, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: RadioControlRegistry }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4752
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: RadioControlValueAccessor, isStandalone: false, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: { name: "name", formControlName: "formControlName", value: "value" }, host: { listeners: { "change": "onChange()", "blur": "onTouched()" } }, providers: [RADIO_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
4749
4753
|
}
|
|
4750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4754
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: RadioControlValueAccessor, decorators: [{
|
|
4751
4755
|
type: Directive,
|
|
4752
4756
|
args: [{
|
|
4753
4757
|
selector: 'input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]',
|
|
@@ -4809,16 +4813,16 @@ class RangeValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4809
4813
|
fn(value == '' ? null : parseFloat(value));
|
|
4810
4814
|
};
|
|
4811
4815
|
}
|
|
4812
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4813
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
4816
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: RangeValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
4817
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: RangeValueAccessor, isStandalone: false, selector: "input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]", host: { listeners: { "change": "onChange($any($event.target).value)", "input": "onChange($any($event.target).value)", "blur": "onTouched()" } }, providers: [RANGE_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
4814
4818
|
}
|
|
4815
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4819
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
4816
4820
|
type: Directive,
|
|
4817
4821
|
args: [{
|
|
4818
4822
|
selector: 'input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]',
|
|
4819
4823
|
host: {
|
|
4820
|
-
'(change)': 'onChange($event.target.value)',
|
|
4821
|
-
'(input)': 'onChange($event.target.value)',
|
|
4824
|
+
'(change)': 'onChange($any($event.target).value)',
|
|
4825
|
+
'(input)': 'onChange($any($event.target).value)',
|
|
4822
4826
|
'(blur)': 'onTouched()',
|
|
4823
4827
|
},
|
|
4824
4828
|
providers: [RANGE_VALUE_ACCESSOR],
|
|
@@ -4867,7 +4871,6 @@ class FormControlDirective extends NgControl {
|
|
|
4867
4871
|
* @description
|
|
4868
4872
|
* Tracks the `FormControl` instance bound to the directive.
|
|
4869
4873
|
*/
|
|
4870
|
-
// TODO(issue/24571): remove '!'.
|
|
4871
4874
|
form;
|
|
4872
4875
|
/**
|
|
4873
4876
|
* @description
|
|
@@ -4959,10 +4962,10 @@ class FormControlDirective extends NgControl {
|
|
|
4959
4962
|
_isControlChanged(changes) {
|
|
4960
4963
|
return changes.hasOwnProperty('form');
|
|
4961
4964
|
}
|
|
4962
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4963
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
4965
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormControlDirective, deps: [{ token: NG_VALIDATORS, optional: true, self: true }, { token: NG_ASYNC_VALIDATORS, optional: true, self: true }, { token: NG_VALUE_ACCESSOR, optional: true, self: true }, { token: NG_MODEL_WITH_FORM_CONTROL_WARNING, optional: true }, { token: CALL_SET_DISABLED_STATE, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4966
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: FormControlDirective, isStandalone: false, selector: "[formControl]", inputs: { form: ["formControl", "form"], isDisabled: ["disabled", "isDisabled"], model: ["ngModel", "model"] }, outputs: { update: "ngModelChange" }, providers: [formControlBinding], exportAs: ["ngForm"], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
4964
4967
|
}
|
|
4965
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
4968
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormControlDirective, decorators: [{
|
|
4966
4969
|
type: Directive,
|
|
4967
4970
|
args: [{
|
|
4968
4971
|
selector: '[formControl]',
|
|
@@ -5262,12 +5265,14 @@ class FormGroupDirective extends ControlContainer {
|
|
|
5262
5265
|
* @description
|
|
5263
5266
|
* Resets the form to an initial value and resets its submitted status.
|
|
5264
5267
|
*
|
|
5265
|
-
* @param value The new value for the form
|
|
5268
|
+
* @param value The new value for the form, `undefined` by default
|
|
5266
5269
|
*/
|
|
5267
|
-
resetForm(value = undefined) {
|
|
5268
|
-
this.form.reset(value);
|
|
5270
|
+
resetForm(value = undefined, options = {}) {
|
|
5271
|
+
this.form.reset(value, options);
|
|
5269
5272
|
this._submittedReactive.set(false);
|
|
5270
|
-
|
|
5273
|
+
if (options?.emitEvent !== false) {
|
|
5274
|
+
this.form._events.next(new FormResetEvent(this.form));
|
|
5275
|
+
}
|
|
5271
5276
|
}
|
|
5272
5277
|
/** @internal */
|
|
5273
5278
|
_updateDomValue() {
|
|
@@ -5324,10 +5329,10 @@ class FormGroupDirective extends ControlContainer {
|
|
|
5324
5329
|
cleanUpValidators(this._oldForm, this);
|
|
5325
5330
|
}
|
|
5326
5331
|
}
|
|
5327
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
5328
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
5332
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormGroupDirective, deps: [{ token: NG_VALIDATORS, optional: true, self: true }, { token: NG_ASYNC_VALIDATORS, optional: true, self: true }, { token: CALL_SET_DISABLED_STATE, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5333
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: FormGroupDirective, isStandalone: false, selector: "[formGroup]", inputs: { form: ["formGroup", "form"] }, outputs: { ngSubmit: "ngSubmit" }, host: { listeners: { "submit": "onSubmit($event)", "reset": "onReset()" } }, providers: [formDirectiveProvider], exportAs: ["ngForm"], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
5329
5334
|
}
|
|
5330
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
5335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormGroupDirective, decorators: [{
|
|
5331
5336
|
type: Directive,
|
|
5332
5337
|
args: [{
|
|
5333
5338
|
selector: '[formGroup]',
|
|
@@ -5436,10 +5441,10 @@ class FormGroupName extends AbstractFormGroupDirective {
|
|
|
5436
5441
|
throw groupParentException();
|
|
5437
5442
|
}
|
|
5438
5443
|
}
|
|
5439
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
5440
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
5444
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormGroupName, deps: [{ token: ControlContainer, host: true, optional: true, skipSelf: true }, { token: NG_VALIDATORS, optional: true, self: true }, { token: NG_ASYNC_VALIDATORS, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5445
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: FormGroupName, isStandalone: false, selector: "[formGroupName]", inputs: { name: ["formGroupName", "name"] }, providers: [formGroupNameProvider], usesInheritance: true, ngImport: i0 });
|
|
5441
5446
|
}
|
|
5442
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
5447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormGroupName, decorators: [{
|
|
5443
5448
|
type: Directive,
|
|
5444
5449
|
args: [{
|
|
5445
5450
|
selector: '[formGroupName]',
|
|
@@ -5557,10 +5562,10 @@ class FormArrayName extends ControlContainer {
|
|
|
5557
5562
|
get path() {
|
|
5558
5563
|
return controlPath(this.name == null ? this.name : this.name.toString(), this._parent);
|
|
5559
5564
|
}
|
|
5560
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
5561
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
5565
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormArrayName, deps: [{ token: ControlContainer, host: true, optional: true, skipSelf: true }, { token: NG_VALIDATORS, optional: true, self: true }, { token: NG_ASYNC_VALIDATORS, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5566
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: FormArrayName, isStandalone: false, selector: "[formArrayName]", inputs: { name: ["formArrayName", "name"] }, providers: [formArrayNameProvider], usesInheritance: true, ngImport: i0 });
|
|
5562
5567
|
}
|
|
5563
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
5568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormArrayName, decorators: [{
|
|
5564
5569
|
type: Directive,
|
|
5565
5570
|
args: [{
|
|
5566
5571
|
selector: '[formArrayName]',
|
|
@@ -5645,7 +5650,6 @@ class FormControlName extends NgControl {
|
|
|
5645
5650
|
* @description
|
|
5646
5651
|
* Tracks the `FormControl` instance bound to the directive.
|
|
5647
5652
|
*/
|
|
5648
|
-
// TODO(issue/24571): remove '!'.
|
|
5649
5653
|
control;
|
|
5650
5654
|
/**
|
|
5651
5655
|
* @description
|
|
@@ -5745,10 +5749,10 @@ class FormControlName extends NgControl {
|
|
|
5745
5749
|
this.control = this.formDirective.addControl(this);
|
|
5746
5750
|
this._added = true;
|
|
5747
5751
|
}
|
|
5748
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
5749
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
5752
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormControlName, deps: [{ token: ControlContainer, host: true, optional: true, skipSelf: true }, { token: NG_VALIDATORS, optional: true, self: true }, { token: NG_ASYNC_VALIDATORS, optional: true, self: true }, { token: NG_VALUE_ACCESSOR, optional: true, self: true }, { token: NG_MODEL_WITH_FORM_CONTROL_WARNING, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5753
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: FormControlName, isStandalone: false, selector: "[formControlName]", inputs: { name: ["formControlName", "name"], isDisabled: ["disabled", "isDisabled"], model: ["ngModel", "model"] }, outputs: { update: "ngModelChange" }, providers: [controlNameBinding], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
5750
5754
|
}
|
|
5751
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
5755
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormControlName, decorators: [{
|
|
5752
5756
|
type: Directive,
|
|
5753
5757
|
args: [{
|
|
5754
5758
|
selector: '[formControlName]',
|
|
@@ -5938,14 +5942,14 @@ class SelectControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
5938
5942
|
const id = _extractId$1(valueString);
|
|
5939
5943
|
return this._optionMap.has(id) ? this._optionMap.get(id) : valueString;
|
|
5940
5944
|
}
|
|
5941
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
5942
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
5945
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: SelectControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
5946
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: SelectControlValueAccessor, isStandalone: false, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: { compareWith: "compareWith" }, host: { listeners: { "change": "onChange($any($event.target).value)", "blur": "onTouched()" } }, providers: [SELECT_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
5943
5947
|
}
|
|
5944
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
5948
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: SelectControlValueAccessor, decorators: [{
|
|
5945
5949
|
type: Directive,
|
|
5946
5950
|
args: [{
|
|
5947
5951
|
selector: 'select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]',
|
|
5948
|
-
host: { '(change)': 'onChange($event.target.value)', '(blur)': 'onTouched()' },
|
|
5952
|
+
host: { '(change)': 'onChange($any($event.target).value)', '(blur)': 'onTouched()' },
|
|
5949
5953
|
providers: [SELECT_VALUE_ACCESSOR],
|
|
5950
5954
|
standalone: false,
|
|
5951
5955
|
}]
|
|
@@ -5970,7 +5974,6 @@ class NgSelectOption {
|
|
|
5970
5974
|
* @description
|
|
5971
5975
|
* ID of the option element
|
|
5972
5976
|
*/
|
|
5973
|
-
// TODO(issue/24571): remove '!'.
|
|
5974
5977
|
id;
|
|
5975
5978
|
constructor(_element, _renderer, _select) {
|
|
5976
5979
|
this._element = _element;
|
|
@@ -6012,10 +6015,10 @@ class NgSelectOption {
|
|
|
6012
6015
|
this._select.writeValue(this._select.value);
|
|
6013
6016
|
}
|
|
6014
6017
|
}
|
|
6015
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6016
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6018
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgSelectOption, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: SelectControlValueAccessor, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6019
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: NgSelectOption, isStandalone: false, selector: "option", inputs: { ngValue: "ngValue", value: "value" }, ngImport: i0 });
|
|
6017
6020
|
}
|
|
6018
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6021
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NgSelectOption, decorators: [{
|
|
6019
6022
|
type: Directive,
|
|
6020
6023
|
args: [{
|
|
6021
6024
|
selector: 'option',
|
|
@@ -6181,10 +6184,10 @@ class SelectMultipleControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
6181
6184
|
const id = _extractId(valueString);
|
|
6182
6185
|
return this._optionMap.has(id) ? this._optionMap.get(id)._value : valueString;
|
|
6183
6186
|
}
|
|
6184
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6185
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6187
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: SelectMultipleControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6188
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: SelectMultipleControlValueAccessor, isStandalone: false, selector: "select[multiple][formControlName],select[multiple][formControl],select[multiple][ngModel]", inputs: { compareWith: "compareWith" }, host: { listeners: { "change": "onChange($event.target)", "blur": "onTouched()" } }, providers: [SELECT_MULTIPLE_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
6186
6189
|
}
|
|
6187
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6190
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: SelectMultipleControlValueAccessor, decorators: [{
|
|
6188
6191
|
type: Directive,
|
|
6189
6192
|
args: [{
|
|
6190
6193
|
selector: 'select[multiple][formControlName],select[multiple][formControl],select[multiple][ngModel]',
|
|
@@ -6209,7 +6212,6 @@ class ɵNgSelectMultipleOption {
|
|
|
6209
6212
|
_element;
|
|
6210
6213
|
_renderer;
|
|
6211
6214
|
_select;
|
|
6212
|
-
// TODO(issue/24571): remove '!'.
|
|
6213
6215
|
id;
|
|
6214
6216
|
/** @internal */
|
|
6215
6217
|
_value;
|
|
@@ -6263,10 +6265,10 @@ class ɵNgSelectMultipleOption {
|
|
|
6263
6265
|
this._select.writeValue(this._select.value);
|
|
6264
6266
|
}
|
|
6265
6267
|
}
|
|
6266
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6267
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6268
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: ɵNgSelectMultipleOption, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: SelectMultipleControlValueAccessor, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6269
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: ɵNgSelectMultipleOption, isStandalone: false, selector: "option", inputs: { ngValue: "ngValue", value: "value" }, ngImport: i0 });
|
|
6268
6270
|
}
|
|
6269
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: ɵNgSelectMultipleOption, decorators: [{
|
|
6270
6272
|
type: Directive,
|
|
6271
6273
|
args: [{
|
|
6272
6274
|
selector: 'option',
|
|
@@ -6348,10 +6350,10 @@ class AbstractValidatorDirective {
|
|
|
6348
6350
|
enabled(input) {
|
|
6349
6351
|
return input != null /* both `null` and `undefined` */;
|
|
6350
6352
|
}
|
|
6351
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6352
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6353
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: AbstractValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
6354
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: AbstractValidatorDirective, isStandalone: true, usesOnChanges: true, ngImport: i0 });
|
|
6353
6355
|
}
|
|
6354
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6356
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: AbstractValidatorDirective, decorators: [{
|
|
6355
6357
|
type: Directive
|
|
6356
6358
|
}] });
|
|
6357
6359
|
/**
|
|
@@ -6396,10 +6398,10 @@ class MaxValidator extends AbstractValidatorDirective {
|
|
|
6396
6398
|
normalizeInput = (input) => toFloat(input);
|
|
6397
6399
|
/** @internal */
|
|
6398
6400
|
createValidator = (max) => maxValidator(max);
|
|
6399
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6400
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6401
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MaxValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6402
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MaxValidator, isStandalone: false, selector: "input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]", inputs: { max: "max" }, host: { properties: { "attr.max": "_enabled ? max : null" } }, providers: [MAX_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6401
6403
|
}
|
|
6402
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MaxValidator, decorators: [{
|
|
6403
6405
|
type: Directive,
|
|
6404
6406
|
args: [{
|
|
6405
6407
|
selector: 'input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]',
|
|
@@ -6452,10 +6454,10 @@ class MinValidator extends AbstractValidatorDirective {
|
|
|
6452
6454
|
normalizeInput = (input) => toFloat(input);
|
|
6453
6455
|
/** @internal */
|
|
6454
6456
|
createValidator = (min) => minValidator(min);
|
|
6455
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6456
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6457
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MinValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6458
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MinValidator, isStandalone: false, selector: "input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]", inputs: { min: "min" }, host: { properties: { "attr.min": "_enabled ? min : null" } }, providers: [MIN_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6457
6459
|
}
|
|
6458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MinValidator, decorators: [{
|
|
6459
6461
|
type: Directive,
|
|
6460
6462
|
args: [{
|
|
6461
6463
|
selector: 'input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]',
|
|
@@ -6519,10 +6521,10 @@ class RequiredValidator extends AbstractValidatorDirective {
|
|
|
6519
6521
|
enabled(input) {
|
|
6520
6522
|
return input;
|
|
6521
6523
|
}
|
|
6522
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6523
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6524
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: RequiredValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6525
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: RequiredValidator, isStandalone: false, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: { required: "required" }, host: { properties: { "attr.required": "_enabled ? \"\" : null" } }, providers: [REQUIRED_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6524
6526
|
}
|
|
6525
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: RequiredValidator, decorators: [{
|
|
6526
6528
|
type: Directive,
|
|
6527
6529
|
args: [{
|
|
6528
6530
|
selector: ':not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]',
|
|
@@ -6557,10 +6559,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3",
|
|
|
6557
6559
|
class CheckboxRequiredValidator extends RequiredValidator {
|
|
6558
6560
|
/** @internal */
|
|
6559
6561
|
createValidator = (input) => requiredTrueValidator;
|
|
6560
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6561
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6562
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: CheckboxRequiredValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6563
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: CheckboxRequiredValidator, isStandalone: false, selector: "input[type=checkbox][required][formControlName],input[type=checkbox][required][formControl],input[type=checkbox][required][ngModel]", host: { properties: { "attr.required": "_enabled ? \"\" : null" } }, providers: [CHECKBOX_REQUIRED_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6562
6564
|
}
|
|
6563
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6565
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: CheckboxRequiredValidator, decorators: [{
|
|
6564
6566
|
type: Directive,
|
|
6565
6567
|
args: [{
|
|
6566
6568
|
selector: 'input[type=checkbox][required][formControlName],input[type=checkbox][required][formControl],input[type=checkbox][required][ngModel]',
|
|
@@ -6621,10 +6623,10 @@ class EmailValidator extends AbstractValidatorDirective {
|
|
|
6621
6623
|
enabled(input) {
|
|
6622
6624
|
return input;
|
|
6623
6625
|
}
|
|
6624
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6625
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6626
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: EmailValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6627
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: EmailValidator, isStandalone: false, selector: "[email][formControlName],[email][formControl],[email][ngModel]", inputs: { email: "email" }, providers: [EMAIL_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6626
6628
|
}
|
|
6627
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6629
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: EmailValidator, decorators: [{
|
|
6628
6630
|
type: Directive,
|
|
6629
6631
|
args: [{
|
|
6630
6632
|
selector: '[email][formControlName],[email][formControl],[email][ngModel]',
|
|
@@ -6676,10 +6678,10 @@ class MinLengthValidator extends AbstractValidatorDirective {
|
|
|
6676
6678
|
normalizeInput = (input) => toInteger(input);
|
|
6677
6679
|
/** @internal */
|
|
6678
6680
|
createValidator = (minlength) => minLengthValidator(minlength);
|
|
6679
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6680
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6681
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MinLengthValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6682
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MinLengthValidator, isStandalone: false, selector: "[minlength][formControlName],[minlength][formControl],[minlength][ngModel]", inputs: { minlength: "minlength" }, host: { properties: { "attr.minlength": "_enabled ? minlength : null" } }, providers: [MIN_LENGTH_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6681
6683
|
}
|
|
6682
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6684
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MinLengthValidator, decorators: [{
|
|
6683
6685
|
type: Directive,
|
|
6684
6686
|
args: [{
|
|
6685
6687
|
selector: '[minlength][formControlName],[minlength][formControl],[minlength][ngModel]',
|
|
@@ -6732,10 +6734,10 @@ class MaxLengthValidator extends AbstractValidatorDirective {
|
|
|
6732
6734
|
normalizeInput = (input) => toInteger(input);
|
|
6733
6735
|
/** @internal */
|
|
6734
6736
|
createValidator = (maxlength) => maxLengthValidator(maxlength);
|
|
6735
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6736
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6737
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MaxLengthValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6738
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: MaxLengthValidator, isStandalone: false, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: { maxlength: "maxlength" }, host: { properties: { "attr.maxlength": "_enabled ? maxlength : null" } }, providers: [MAX_LENGTH_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6737
6739
|
}
|
|
6738
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: MaxLengthValidator, decorators: [{
|
|
6739
6741
|
type: Directive,
|
|
6740
6742
|
args: [{
|
|
6741
6743
|
selector: '[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]',
|
|
@@ -6790,10 +6792,10 @@ class PatternValidator extends AbstractValidatorDirective {
|
|
|
6790
6792
|
normalizeInput = (input) => input;
|
|
6791
6793
|
/** @internal */
|
|
6792
6794
|
createValidator = (input) => patternValidator(input);
|
|
6793
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6794
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6795
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: PatternValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6796
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.0.0-next.5", type: PatternValidator, isStandalone: false, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: { pattern: "pattern" }, host: { properties: { "attr.pattern": "_enabled ? pattern : null" } }, providers: [PATTERN_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6795
6797
|
}
|
|
6796
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6798
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: PatternValidator, decorators: [{
|
|
6797
6799
|
type: Directive,
|
|
6798
6800
|
args: [{
|
|
6799
6801
|
selector: '[pattern][formControlName],[pattern][formControl],[pattern][ngModel]',
|
|
@@ -6839,8 +6841,8 @@ const REACTIVE_DRIVEN_DIRECTIVES = [
|
|
|
6839
6841
|
* Internal module used for sharing directives between FormsModule and ReactiveFormsModule
|
|
6840
6842
|
*/
|
|
6841
6843
|
class ɵInternalFormsSharedModule {
|
|
6842
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6843
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
6844
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: ɵInternalFormsSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6845
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.5", ngImport: i0, type: ɵInternalFormsSharedModule, declarations: [ɵNgNoValidate,
|
|
6844
6846
|
NgSelectOption,
|
|
6845
6847
|
ɵNgSelectMultipleOption,
|
|
6846
6848
|
DefaultValueAccessor,
|
|
@@ -6879,9 +6881,9 @@ class ɵInternalFormsSharedModule {
|
|
|
6879
6881
|
EmailValidator,
|
|
6880
6882
|
MinValidator,
|
|
6881
6883
|
MaxValidator] });
|
|
6882
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6884
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: ɵInternalFormsSharedModule });
|
|
6883
6885
|
}
|
|
6884
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
6886
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: ɵInternalFormsSharedModule, decorators: [{
|
|
6885
6887
|
type: NgModule,
|
|
6886
6888
|
args: [{
|
|
6887
6889
|
declarations: SHARED_FORM_DIRECTIVES,
|
|
@@ -7533,10 +7535,10 @@ class FormBuilder {
|
|
|
7533
7535
|
return this.control(controls);
|
|
7534
7536
|
}
|
|
7535
7537
|
}
|
|
7536
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7537
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7538
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7539
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormBuilder, providedIn: 'root' });
|
|
7538
7540
|
}
|
|
7539
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7541
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormBuilder, decorators: [{
|
|
7540
7542
|
type: Injectable,
|
|
7541
7543
|
args: [{ providedIn: 'root' }]
|
|
7542
7544
|
}] });
|
|
@@ -7548,10 +7550,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3",
|
|
|
7548
7550
|
* @publicApi
|
|
7549
7551
|
*/
|
|
7550
7552
|
class NonNullableFormBuilder {
|
|
7551
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7552
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7553
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NonNullableFormBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7554
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NonNullableFormBuilder, providedIn: 'root', useFactory: () => inject(FormBuilder).nonNullable });
|
|
7553
7555
|
}
|
|
7554
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: NonNullableFormBuilder, decorators: [{
|
|
7555
7557
|
type: Injectable,
|
|
7556
7558
|
args: [{
|
|
7557
7559
|
providedIn: 'root',
|
|
@@ -7577,10 +7579,10 @@ class UntypedFormBuilder extends FormBuilder {
|
|
|
7577
7579
|
array(controlsConfig, validatorOrOpts, asyncValidator) {
|
|
7578
7580
|
return super.array(controlsConfig, validatorOrOpts, asyncValidator);
|
|
7579
7581
|
}
|
|
7580
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7581
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7582
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: UntypedFormBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
7583
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: UntypedFormBuilder, providedIn: 'root' });
|
|
7582
7584
|
}
|
|
7583
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7585
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: UntypedFormBuilder, decorators: [{
|
|
7584
7586
|
type: Injectable,
|
|
7585
7587
|
args: [{ providedIn: 'root' }]
|
|
7586
7588
|
}] });
|
|
@@ -7593,7 +7595,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.3",
|
|
|
7593
7595
|
/**
|
|
7594
7596
|
* @publicApi
|
|
7595
7597
|
*/
|
|
7596
|
-
const VERSION = new Version('20.0.0-next.
|
|
7598
|
+
const VERSION = new Version('20.0.0-next.5');
|
|
7597
7599
|
|
|
7598
7600
|
/**
|
|
7599
7601
|
* Exports the required providers and directives for template-driven forms,
|
|
@@ -7624,11 +7626,11 @@ class FormsModule {
|
|
|
7624
7626
|
],
|
|
7625
7627
|
};
|
|
7626
7628
|
}
|
|
7627
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7628
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
7629
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7629
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7630
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormsModule, declarations: [NgModel, NgModelGroup, NgForm], exports: [ɵInternalFormsSharedModule, NgModel, NgModelGroup, NgForm] });
|
|
7631
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormsModule, imports: [ɵInternalFormsSharedModule] });
|
|
7630
7632
|
}
|
|
7631
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: FormsModule, decorators: [{
|
|
7632
7634
|
type: NgModule,
|
|
7633
7635
|
args: [{
|
|
7634
7636
|
declarations: TEMPLATE_DRIVEN_DIRECTIVES,
|
|
@@ -7670,11 +7672,11 @@ class ReactiveFormsModule {
|
|
|
7670
7672
|
],
|
|
7671
7673
|
};
|
|
7672
7674
|
}
|
|
7673
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7674
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
7675
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7675
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: ReactiveFormsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7676
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.5", ngImport: i0, type: ReactiveFormsModule, declarations: [FormControlDirective, FormGroupDirective, FormControlName, FormGroupName, FormArrayName], exports: [ɵInternalFormsSharedModule, FormControlDirective, FormGroupDirective, FormControlName, FormGroupName, FormArrayName] });
|
|
7677
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: ReactiveFormsModule, imports: [ɵInternalFormsSharedModule] });
|
|
7676
7678
|
}
|
|
7677
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
7679
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5", ngImport: i0, type: ReactiveFormsModule, decorators: [{
|
|
7678
7680
|
type: NgModule,
|
|
7679
7681
|
args: [{
|
|
7680
7682
|
declarations: [REACTIVE_DRIVEN_DIRECTIVES],
|