@angular/forms 16.0.0-next.4 → 16.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/{esm2020 → esm2022}/src/directives/abstract_form_group_directive.mjs +4 -4
- package/{esm2020 → esm2022}/src/directives/checkbox_value_accessor.mjs +4 -4
- package/{esm2020 → esm2022}/src/directives/control_value_accessor.mjs +7 -7
- package/{esm2020 → esm2022}/src/directives/default_value_accessor.mjs +4 -4
- package/{esm2020 → esm2022}/src/directives/ng_control_status.mjs +7 -7
- package/{esm2020 → esm2022}/src/directives/ng_form.mjs +4 -4
- package/esm2022/src/directives/ng_model.mjs +332 -0
- package/esm2022/src/directives/ng_model_group.mjs +95 -0
- package/{esm2020 → esm2022}/src/directives/ng_no_validate_directive.mjs +4 -4
- package/{esm2020 → esm2022}/src/directives/number_value_accessor.mjs +4 -4
- package/{esm2020 → esm2022}/src/directives/radio_control_value_accessor.mjs +11 -11
- package/{esm2020 → esm2022}/src/directives/range_value_accessor.mjs +4 -4
- package/esm2022/src/directives/reactive_directives/form_control_directive.mjs +185 -0
- package/esm2022/src/directives/reactive_directives/form_control_name.mjs +219 -0
- package/{esm2020 → esm2022}/src/directives/reactive_directives/form_group_directive.mjs +4 -4
- package/esm2022/src/directives/reactive_directives/form_group_name.mjs +247 -0
- package/{esm2020 → esm2022}/src/directives/select_control_value_accessor.mjs +7 -7
- package/{esm2020 → esm2022}/src/directives/select_multiple_control_value_accessor.mjs +7 -7
- package/{esm2020 → esm2022}/src/directives/validators.mjs +28 -28
- package/{esm2020 → esm2022}/src/directives.mjs +43 -43
- package/{esm2020 → esm2022}/src/form_builder.mjs +10 -10
- package/{esm2020 → esm2022}/src/form_providers.mjs +9 -9
- package/esm2022/src/model/abstract_model.mjs +939 -0
- package/esm2022/src/validators.mjs +678 -0
- package/{esm2020 → esm2022}/src/version.mjs +1 -1
- package/{fesm2020 → fesm2022}/forms.mjs +228 -187
- package/fesm2022/forms.mjs.map +1 -0
- package/index.d.ts +1 -1
- package/package.json +8 -14
- package/esm2020/src/directives/ng_model.mjs +0 -326
- package/esm2020/src/directives/ng_model_group.mjs +0 -89
- package/esm2020/src/directives/reactive_directives/form_control_directive.mjs +0 -185
- package/esm2020/src/directives/reactive_directives/form_control_name.mjs +0 -209
- package/esm2020/src/directives/reactive_directives/form_group_name.mjs +0 -227
- package/esm2020/src/model/abstract_model.mjs +0 -939
- package/esm2020/src/validators.mjs +0 -679
- package/fesm2015/forms.mjs +0 -7272
- package/fesm2015/forms.mjs.map +0 -1
- package/fesm2020/forms.mjs.map +0 -1
- /package/{esm2020 → esm2022}/forms.mjs +0 -0
- /package/{esm2020 → esm2022}/index.mjs +0 -0
- /package/{esm2020 → esm2022}/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/src/directives/abstract_control_directive.mjs +0 -0
- /package/{esm2020 → esm2022}/src/directives/control_container.mjs +0 -0
- /package/{esm2020 → esm2022}/src/directives/error_examples.mjs +0 -0
- /package/{esm2020 → esm2022}/src/directives/form_interface.mjs +0 -0
- /package/{esm2020 → esm2022}/src/directives/ng_control.mjs +0 -0
- /package/{esm2020 → esm2022}/src/directives/reactive_errors.mjs +0 -0
- /package/{esm2020 → esm2022}/src/directives/shared.mjs +0 -0
- /package/{esm2020 → esm2022}/src/directives/template_driven_errors.mjs +0 -0
- /package/{esm2020 → esm2022}/src/errors.mjs +0 -0
- /package/{esm2020 → esm2022}/src/forms.mjs +0 -0
- /package/{esm2020 → esm2022}/src/model/form_array.mjs +0 -0
- /package/{esm2020 → esm2022}/src/model/form_control.mjs +0 -0
- /package/{esm2020 → esm2022}/src/model/form_group.mjs +0 -0
- /package/{esm2020 → esm2022}/src/util.mjs +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.0.0-next.
|
|
2
|
+
* @license Angular v16.0.0-next.5
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -62,10 +62,10 @@ class BaseControlValueAccessor {
|
|
|
62
62
|
setDisabledState(isDisabled) {
|
|
63
63
|
this.setProperty('disabled', isDisabled);
|
|
64
64
|
}
|
|
65
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: BaseControlValueAccessor, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
66
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: BaseControlValueAccessor, ngImport: i0 }); }
|
|
65
67
|
}
|
|
66
|
-
|
|
67
|
-
BaseControlValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: BaseControlValueAccessor, ngImport: i0 });
|
|
68
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BaseControlValueAccessor, decorators: [{
|
|
68
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: BaseControlValueAccessor, decorators: [{
|
|
69
69
|
type: Directive
|
|
70
70
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; } });
|
|
71
71
|
/**
|
|
@@ -78,10 +78,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4",
|
|
|
78
78
|
* applications code.
|
|
79
79
|
*/
|
|
80
80
|
class BuiltInControlValueAccessor extends BaseControlValueAccessor {
|
|
81
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: BuiltInControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
82
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: BuiltInControlValueAccessor, usesInheritance: true, ngImport: i0 }); }
|
|
81
83
|
}
|
|
82
|
-
|
|
83
|
-
BuiltInControlValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: BuiltInControlValueAccessor, usesInheritance: true, ngImport: i0 });
|
|
84
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: BuiltInControlValueAccessor, decorators: [{
|
|
84
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: BuiltInControlValueAccessor, decorators: [{
|
|
85
85
|
type: Directive
|
|
86
86
|
}] });
|
|
87
87
|
/**
|
|
@@ -129,10 +129,10 @@ class CheckboxControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
129
129
|
writeValue(value) {
|
|
130
130
|
this.setProperty('checked', value);
|
|
131
131
|
}
|
|
132
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: CheckboxControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
133
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]", host: { listeners: { "change": "onChange($event.target.checked)", "blur": "onTouched()" } }, providers: [CHECKBOX_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 }); }
|
|
132
134
|
}
|
|
133
|
-
|
|
134
|
-
CheckboxControlValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]", host: { listeners: { "change": "onChange($event.target.checked)", "blur": "onTouched()" } }, providers: [CHECKBOX_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
135
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: CheckboxControlValueAccessor, decorators: [{
|
|
135
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: CheckboxControlValueAccessor, decorators: [{
|
|
136
136
|
type: Directive,
|
|
137
137
|
args: [{
|
|
138
138
|
selector: 'input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]',
|
|
@@ -229,10 +229,10 @@ class DefaultValueAccessor extends BaseControlValueAccessor {
|
|
|
229
229
|
this._composing = false;
|
|
230
230
|
this._compositionMode && this.onChange(value);
|
|
231
231
|
}
|
|
232
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
233
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: DefaultValueAccessor, 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": "$any(this)._handleInput($event.target.value)", "blur": "onTouched()", "compositionstart": "$any(this)._compositionStart()", "compositionend": "$any(this)._compositionEnd($event.target.value)" } }, providers: [DEFAULT_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 }); }
|
|
232
234
|
}
|
|
233
|
-
|
|
234
|
-
DefaultValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: DefaultValueAccessor, 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": "$any(this)._handleInput($event.target.value)", "blur": "onTouched()", "compositionstart": "$any(this)._compositionStart()", "compositionend": "$any(this)._compositionEnd($event.target.value)" } }, providers: [DEFAULT_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
235
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: DefaultValueAccessor, decorators: [{
|
|
235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: DefaultValueAccessor, decorators: [{
|
|
236
236
|
type: Directive,
|
|
237
237
|
args: [{
|
|
238
238
|
selector: 'input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]',
|
|
@@ -254,7 +254,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4",
|
|
|
254
254
|
args: [COMPOSITION_BUFFER_MODE]
|
|
255
255
|
}] }]; } });
|
|
256
256
|
|
|
257
|
-
const NG_DEV_MODE$1 = typeof ngDevMode === 'undefined' || !!ngDevMode;
|
|
258
257
|
function isEmptyInputValue(value) {
|
|
259
258
|
/**
|
|
260
259
|
* Check if the object is a string or array before evaluating the length attribute.
|
|
@@ -769,7 +768,7 @@ function isPresent(o) {
|
|
|
769
768
|
}
|
|
770
769
|
function toObservable(value) {
|
|
771
770
|
const obs = ɵisPromise(value) ? from(value) : value;
|
|
772
|
-
if (
|
|
771
|
+
if ((typeof ngDevMode === 'undefined' || ngDevMode) && !(ɵisSubscribable(obs))) {
|
|
773
772
|
let errorMessage = `Expected async validator to return Promise or Observable.`;
|
|
774
773
|
// A synchronous validator will return object or null.
|
|
775
774
|
if (typeof value === 'object') {
|
|
@@ -1323,10 +1322,10 @@ class NgControlStatus extends AbstractControlStatus {
|
|
|
1323
1322
|
constructor(cd) {
|
|
1324
1323
|
super(cd);
|
|
1325
1324
|
}
|
|
1325
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NgControlStatus, deps: [{ token: NgControl, self: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1326
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: NgControlStatus, 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 }); }
|
|
1326
1327
|
}
|
|
1327
|
-
|
|
1328
|
-
NgControlStatus.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: NgControlStatus, 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 });
|
|
1329
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: NgControlStatus, decorators: [{
|
|
1328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NgControlStatus, decorators: [{
|
|
1330
1329
|
type: Directive,
|
|
1331
1330
|
args: [{ selector: '[formControlName],[ngModel],[formControl]', host: ngControlStatusHost }]
|
|
1332
1331
|
}], ctorParameters: function () { return [{ type: NgControl, decorators: [{
|
|
@@ -1348,10 +1347,10 @@ class NgControlStatusGroup extends AbstractControlStatus {
|
|
|
1348
1347
|
constructor(cd) {
|
|
1349
1348
|
super(cd);
|
|
1350
1349
|
}
|
|
1350
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NgControlStatusGroup, deps: [{ token: ControlContainer, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1351
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: NgControlStatusGroup, 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 }); }
|
|
1351
1352
|
}
|
|
1352
|
-
|
|
1353
|
-
NgControlStatusGroup.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: NgControlStatusGroup, 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 });
|
|
1354
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: NgControlStatusGroup, decorators: [{
|
|
1353
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NgControlStatusGroup, decorators: [{
|
|
1355
1354
|
type: Directive,
|
|
1356
1355
|
args: [{
|
|
1357
1356
|
selector: '[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]',
|
|
@@ -1514,7 +1513,6 @@ function missingControlValueError(isFormGroup, key) {
|
|
|
1514
1513
|
return `Must supply a value for form control ${describeKey(isFormGroup, key)}`;
|
|
1515
1514
|
}
|
|
1516
1515
|
|
|
1517
|
-
const NG_DEV_MODE = typeof ngDevMode === 'undefined' || !!ngDevMode;
|
|
1518
1516
|
/**
|
|
1519
1517
|
* Reports that a control is valid, meaning that no errors exist in the input value.
|
|
1520
1518
|
*
|
|
@@ -1581,16 +1579,17 @@ function assertControlPresent(parent, isGroup, key) {
|
|
|
1581
1579
|
const controls = parent.controls;
|
|
1582
1580
|
const collection = isGroup ? Object.keys(controls) : controls;
|
|
1583
1581
|
if (!collection.length) {
|
|
1584
|
-
throw new ɵRuntimeError(1000 /* RuntimeErrorCode.NO_CONTROLS */,
|
|
1582
|
+
throw new ɵRuntimeError(1000 /* RuntimeErrorCode.NO_CONTROLS */, (typeof ngDevMode === 'undefined' || ngDevMode) ? noControlsError(isGroup) : '');
|
|
1585
1583
|
}
|
|
1586
1584
|
if (!controls[key]) {
|
|
1587
|
-
throw new ɵRuntimeError(1001 /* RuntimeErrorCode.MISSING_CONTROL */,
|
|
1585
|
+
throw new ɵRuntimeError(1001 /* RuntimeErrorCode.MISSING_CONTROL */, (typeof ngDevMode === 'undefined' || ngDevMode) ? missingControlError(isGroup, key) : '');
|
|
1588
1586
|
}
|
|
1589
1587
|
}
|
|
1590
1588
|
function assertAllValuesPresent(control, isGroup, value) {
|
|
1591
1589
|
control._forEachChild((_, key) => {
|
|
1592
1590
|
if (value[key] === undefined) {
|
|
1593
|
-
throw new ɵRuntimeError(1002 /* RuntimeErrorCode.MISSING_CONTROL_VALUE */,
|
|
1591
|
+
throw new ɵRuntimeError(1002 /* RuntimeErrorCode.MISSING_CONTROL_VALUE */, (typeof ngDevMode === 'undefined' || ngDevMode) ? missingControlValueError(isGroup, key) :
|
|
1592
|
+
'');
|
|
1594
1593
|
}
|
|
1595
1594
|
});
|
|
1596
1595
|
}
|
|
@@ -3503,10 +3502,10 @@ class NgForm extends ControlContainer {
|
|
|
3503
3502
|
path.pop();
|
|
3504
3503
|
return path.length ? this.form.get(path) : this.form;
|
|
3505
3504
|
}
|
|
3505
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
3506
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: NgForm, 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 }); }
|
|
3506
3507
|
}
|
|
3507
|
-
|
|
3508
|
-
NgForm.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: NgForm, 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 });
|
|
3509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: NgForm, decorators: [{
|
|
3508
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NgForm, decorators: [{
|
|
3510
3509
|
type: Directive,
|
|
3511
3510
|
args: [{
|
|
3512
3511
|
selector: 'form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]',
|
|
@@ -3701,10 +3700,10 @@ class AbstractFormGroupDirective extends ControlContainer {
|
|
|
3701
3700
|
}
|
|
3702
3701
|
/** @internal */
|
|
3703
3702
|
_checkParentType() { }
|
|
3703
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: AbstractFormGroupDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3704
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: AbstractFormGroupDirective, usesInheritance: true, ngImport: i0 }); }
|
|
3704
3705
|
}
|
|
3705
|
-
|
|
3706
|
-
AbstractFormGroupDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: AbstractFormGroupDirective, usesInheritance: true, ngImport: i0 });
|
|
3707
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: AbstractFormGroupDirective, decorators: [{
|
|
3706
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: AbstractFormGroupDirective, decorators: [{
|
|
3708
3707
|
type: Directive
|
|
3709
3708
|
}] });
|
|
3710
3709
|
|
|
@@ -3786,6 +3785,12 @@ const modelGroupProvider = {
|
|
|
3786
3785
|
class NgModelGroup extends AbstractFormGroupDirective {
|
|
3787
3786
|
constructor(parent, validators, asyncValidators) {
|
|
3788
3787
|
super();
|
|
3788
|
+
/**
|
|
3789
|
+
* @description
|
|
3790
|
+
* Tracks the name of the `NgModelGroup` bound to the directive. The name corresponds
|
|
3791
|
+
* to a key in the parent `NgForm`.
|
|
3792
|
+
*/
|
|
3793
|
+
this.name = '';
|
|
3789
3794
|
this._parent = parent;
|
|
3790
3795
|
this._setValidators(validators);
|
|
3791
3796
|
this._setAsyncValidators(asyncValidators);
|
|
@@ -3797,10 +3802,10 @@ class NgModelGroup extends AbstractFormGroupDirective {
|
|
|
3797
3802
|
throw modelGroupParentException();
|
|
3798
3803
|
}
|
|
3799
3804
|
}
|
|
3805
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
3806
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: NgModelGroup, selector: "[ngModelGroup]", inputs: { name: ["ngModelGroup", "name"] }, providers: [modelGroupProvider], exportAs: ["ngModelGroup"], usesInheritance: true, ngImport: i0 }); }
|
|
3800
3807
|
}
|
|
3801
|
-
|
|
3802
|
-
NgModelGroup.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: NgModelGroup, selector: "[ngModelGroup]", inputs: { name: ["ngModelGroup", "name"] }, providers: [modelGroupProvider], exportAs: ["ngModelGroup"], usesInheritance: true, ngImport: i0 });
|
|
3803
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: NgModelGroup, decorators: [{
|
|
3808
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NgModelGroup, decorators: [{
|
|
3804
3809
|
type: Directive,
|
|
3805
3810
|
args: [{ selector: '[ngModelGroup]', providers: [modelGroupProvider], exportAs: 'ngModelGroup' }]
|
|
3806
3811
|
}], ctorParameters: function () { return [{ type: ControlContainer, decorators: [{
|
|
@@ -3941,6 +3946,12 @@ class NgModel extends NgControl {
|
|
|
3941
3946
|
this.control = new FormControl();
|
|
3942
3947
|
/** @internal */
|
|
3943
3948
|
this._registered = false;
|
|
3949
|
+
/**
|
|
3950
|
+
* @description
|
|
3951
|
+
* Tracks the name bound to the directive. If a parent form exists, it
|
|
3952
|
+
* uses this name as a key to retrieve this control's value.
|
|
3953
|
+
*/
|
|
3954
|
+
this.name = '';
|
|
3944
3955
|
/**
|
|
3945
3956
|
* @description
|
|
3946
3957
|
* Event emitter for producing the `ngModelChange` event after
|
|
@@ -4070,10 +4081,10 @@ class NgModel extends NgControl {
|
|
|
4070
4081
|
_getPath(controlName) {
|
|
4071
4082
|
return this._parent ? controlPath(controlName, this._parent) : [controlName];
|
|
4072
4083
|
}
|
|
4084
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
4085
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: NgModel, 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 }); }
|
|
4073
4086
|
}
|
|
4074
|
-
|
|
4075
|
-
NgModel.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: NgModel, 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 });
|
|
4076
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: NgModel, decorators: [{
|
|
4087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NgModel, decorators: [{
|
|
4077
4088
|
type: Directive,
|
|
4078
4089
|
args: [{
|
|
4079
4090
|
selector: '[ngModel]:not([formControlName]):not([formControl])',
|
|
@@ -4149,10 +4160,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4",
|
|
|
4149
4160
|
* @ngModule FormsModule
|
|
4150
4161
|
*/
|
|
4151
4162
|
class ɵNgNoValidate {
|
|
4163
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: ɵNgNoValidate, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4164
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])", host: { attributes: { "novalidate": "" } }, ngImport: i0 }); }
|
|
4152
4165
|
}
|
|
4153
|
-
|
|
4154
|
-
ɵNgNoValidate.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])", host: { attributes: { "novalidate": "" } }, ngImport: i0 });
|
|
4155
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: ɵNgNoValidate, decorators: [{
|
|
4166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: ɵNgNoValidate, decorators: [{
|
|
4156
4167
|
type: Directive,
|
|
4157
4168
|
args: [{
|
|
4158
4169
|
selector: 'form:not([ngNoForm]):not([ngNativeValidate])',
|
|
@@ -4208,10 +4219,10 @@ class NumberValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4208
4219
|
fn(value == '' ? null : parseFloat(value));
|
|
4209
4220
|
};
|
|
4210
4221
|
}
|
|
4222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NumberValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4223
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]", host: { listeners: { "input": "onChange($event.target.value)", "blur": "onTouched()" } }, providers: [NUMBER_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 }); }
|
|
4211
4224
|
}
|
|
4212
|
-
|
|
4213
|
-
NumberValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]", host: { listeners: { "input": "onChange($event.target.value)", "blur": "onTouched()" } }, providers: [NUMBER_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
4214
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: NumberValueAccessor, decorators: [{
|
|
4225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NumberValueAccessor, decorators: [{
|
|
4215
4226
|
type: Directive,
|
|
4216
4227
|
args: [{
|
|
4217
4228
|
selector: 'input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]',
|
|
@@ -4238,11 +4249,11 @@ function throwNameError() {
|
|
|
4238
4249
|
* `forwardRef` logic.
|
|
4239
4250
|
*/
|
|
4240
4251
|
class RadioControlRegistryModule {
|
|
4252
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RadioControlRegistryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
4253
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.5", ngImport: i0, type: RadioControlRegistryModule }); }
|
|
4254
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RadioControlRegistryModule }); }
|
|
4241
4255
|
}
|
|
4242
|
-
|
|
4243
|
-
RadioControlRegistryModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.4", ngImport: i0, type: RadioControlRegistryModule });
|
|
4244
|
-
RadioControlRegistryModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: RadioControlRegistryModule });
|
|
4245
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: RadioControlRegistryModule, decorators: [{
|
|
4256
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RadioControlRegistryModule, decorators: [{
|
|
4246
4257
|
type: NgModule
|
|
4247
4258
|
}] });
|
|
4248
4259
|
/**
|
|
@@ -4289,10 +4300,10 @@ class RadioControlRegistry {
|
|
|
4289
4300
|
return controlPair[0]._parent === accessor._control._parent &&
|
|
4290
4301
|
controlPair[1].name === accessor.name;
|
|
4291
4302
|
}
|
|
4303
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RadioControlRegistry, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4304
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RadioControlRegistry, providedIn: RadioControlRegistryModule }); }
|
|
4292
4305
|
}
|
|
4293
|
-
|
|
4294
|
-
RadioControlRegistry.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: RadioControlRegistry, providedIn: RadioControlRegistryModule });
|
|
4295
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: RadioControlRegistry, decorators: [{
|
|
4306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RadioControlRegistry, decorators: [{
|
|
4296
4307
|
type: Injectable,
|
|
4297
4308
|
args: [{ providedIn: RadioControlRegistryModule }]
|
|
4298
4309
|
}] });
|
|
@@ -4403,10 +4414,10 @@ class RadioControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4403
4414
|
if (!this.name && this.formControlName)
|
|
4404
4415
|
this.name = this.formControlName;
|
|
4405
4416
|
}
|
|
4417
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RadioControlValueAccessor, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: RadioControlRegistry }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4418
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: RadioControlValueAccessor, 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 }); }
|
|
4406
4419
|
}
|
|
4407
|
-
|
|
4408
|
-
RadioControlValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: RadioControlValueAccessor, 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 });
|
|
4409
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: RadioControlValueAccessor, decorators: [{
|
|
4420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RadioControlValueAccessor, decorators: [{
|
|
4410
4421
|
type: Directive,
|
|
4411
4422
|
args: [{
|
|
4412
4423
|
selector: 'input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]',
|
|
@@ -4467,10 +4478,10 @@ class RangeValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4467
4478
|
fn(value == '' ? null : parseFloat(value));
|
|
4468
4479
|
};
|
|
4469
4480
|
}
|
|
4481
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RangeValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4482
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: RangeValueAccessor, selector: "input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]", host: { listeners: { "change": "onChange($event.target.value)", "input": "onChange($event.target.value)", "blur": "onTouched()" } }, providers: [RANGE_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 }); }
|
|
4470
4483
|
}
|
|
4471
|
-
|
|
4472
|
-
RangeValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: RangeValueAccessor, selector: "input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]", host: { listeners: { "change": "onChange($event.target.value)", "input": "onChange($event.target.value)", "blur": "onTouched()" } }, providers: [RANGE_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
4473
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
4484
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
4474
4485
|
type: Directive,
|
|
4475
4486
|
args: [{
|
|
4476
4487
|
selector: 'input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]',
|
|
@@ -4523,6 +4534,14 @@ class FormControlDirective extends NgControl {
|
|
|
4523
4534
|
console.warn(disabledAttrWarning);
|
|
4524
4535
|
}
|
|
4525
4536
|
}
|
|
4537
|
+
/**
|
|
4538
|
+
* @description
|
|
4539
|
+
* Static property used to track whether any ngModel warnings have been sent across
|
|
4540
|
+
* all instances of FormControlDirective. Used to support warning config of "once".
|
|
4541
|
+
*
|
|
4542
|
+
* @internal
|
|
4543
|
+
*/
|
|
4544
|
+
static { this._ngModelWarningSentOnce = false; }
|
|
4526
4545
|
constructor(validators, asyncValidators, valueAccessors, _ngModelWarningConfig, callSetDisabledState) {
|
|
4527
4546
|
super();
|
|
4528
4547
|
this._ngModelWarningConfig = _ngModelWarningConfig;
|
|
@@ -4593,18 +4612,10 @@ class FormControlDirective extends NgControl {
|
|
|
4593
4612
|
_isControlChanged(changes) {
|
|
4594
4613
|
return changes.hasOwnProperty('form');
|
|
4595
4614
|
}
|
|
4615
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
4616
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: FormControlDirective, 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 }); }
|
|
4596
4617
|
}
|
|
4597
|
-
|
|
4598
|
-
* @description
|
|
4599
|
-
* Static property used to track whether any ngModel warnings have been sent across
|
|
4600
|
-
* all instances of FormControlDirective. Used to support warning config of "once".
|
|
4601
|
-
*
|
|
4602
|
-
* @internal
|
|
4603
|
-
*/
|
|
4604
|
-
FormControlDirective._ngModelWarningSentOnce = false;
|
|
4605
|
-
FormControlDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", 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 });
|
|
4606
|
-
FormControlDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: FormControlDirective, 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 });
|
|
4607
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: FormControlDirective, decorators: [{
|
|
4618
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormControlDirective, decorators: [{
|
|
4608
4619
|
type: Directive,
|
|
4609
4620
|
args: [{ selector: '[formControl]', providers: [formControlBinding], exportAs: 'ngForm' }]
|
|
4610
4621
|
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
@@ -4947,10 +4958,10 @@ class FormGroupDirective extends ControlContainer {
|
|
|
4947
4958
|
throw missingFormException();
|
|
4948
4959
|
}
|
|
4949
4960
|
}
|
|
4961
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
4962
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: FormGroupDirective, 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 }); }
|
|
4950
4963
|
}
|
|
4951
|
-
|
|
4952
|
-
FormGroupDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: FormGroupDirective, 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 });
|
|
4953
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: FormGroupDirective, decorators: [{
|
|
4964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormGroupDirective, decorators: [{
|
|
4954
4965
|
type: Directive,
|
|
4955
4966
|
args: [{
|
|
4956
4967
|
selector: '[formGroup]',
|
|
@@ -5038,6 +5049,16 @@ const formGroupNameProvider = {
|
|
|
5038
5049
|
class FormGroupName extends AbstractFormGroupDirective {
|
|
5039
5050
|
constructor(parent, validators, asyncValidators) {
|
|
5040
5051
|
super();
|
|
5052
|
+
/**
|
|
5053
|
+
* @description
|
|
5054
|
+
* Tracks the name of the `FormGroup` bound to the directive. The name corresponds
|
|
5055
|
+
* to a key in the parent `FormGroup` or `FormArray`.
|
|
5056
|
+
* Accepts a name as a string or a number.
|
|
5057
|
+
* The name in the form of a string is useful for individual forms,
|
|
5058
|
+
* while the numerical form allows for form groups to be bound
|
|
5059
|
+
* to indices when iterating over groups in a `FormArray`.
|
|
5060
|
+
*/
|
|
5061
|
+
this.name = null;
|
|
5041
5062
|
this._parent = parent;
|
|
5042
5063
|
this._setValidators(validators);
|
|
5043
5064
|
this._setAsyncValidators(asyncValidators);
|
|
@@ -5048,10 +5069,10 @@ class FormGroupName extends AbstractFormGroupDirective {
|
|
|
5048
5069
|
throw groupParentException();
|
|
5049
5070
|
}
|
|
5050
5071
|
}
|
|
5072
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
5073
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: FormGroupName, selector: "[formGroupName]", inputs: { name: ["formGroupName", "name"] }, providers: [formGroupNameProvider], usesInheritance: true, ngImport: i0 }); }
|
|
5051
5074
|
}
|
|
5052
|
-
|
|
5053
|
-
FormGroupName.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: FormGroupName, selector: "[formGroupName]", inputs: { name: ["formGroupName", "name"] }, providers: [formGroupNameProvider], usesInheritance: true, ngImport: i0 });
|
|
5054
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: FormGroupName, decorators: [{
|
|
5075
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormGroupName, decorators: [{
|
|
5055
5076
|
type: Directive,
|
|
5056
5077
|
args: [{ selector: '[formGroupName]', providers: [formGroupNameProvider] }]
|
|
5057
5078
|
}], ctorParameters: function () { return [{ type: ControlContainer, decorators: [{
|
|
@@ -5109,6 +5130,16 @@ const formArrayNameProvider = {
|
|
|
5109
5130
|
class FormArrayName extends ControlContainer {
|
|
5110
5131
|
constructor(parent, validators, asyncValidators) {
|
|
5111
5132
|
super();
|
|
5133
|
+
/**
|
|
5134
|
+
* @description
|
|
5135
|
+
* Tracks the name of the `FormArray` bound to the directive. The name corresponds
|
|
5136
|
+
* to a key in the parent `FormGroup` or `FormArray`.
|
|
5137
|
+
* Accepts a name as a string or a number.
|
|
5138
|
+
* The name in the form of a string is useful for individual forms,
|
|
5139
|
+
* while the numerical form allows for form arrays to be bound
|
|
5140
|
+
* to indices when iterating over arrays in a `FormArray`.
|
|
5141
|
+
*/
|
|
5142
|
+
this.name = null;
|
|
5112
5143
|
this._parent = parent;
|
|
5113
5144
|
this._setValidators(validators);
|
|
5114
5145
|
this._setAsyncValidators(asyncValidators);
|
|
@@ -5158,10 +5189,10 @@ class FormArrayName extends ControlContainer {
|
|
|
5158
5189
|
throw arrayParentException();
|
|
5159
5190
|
}
|
|
5160
5191
|
}
|
|
5192
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
5193
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: FormArrayName, selector: "[formArrayName]", inputs: { name: ["formArrayName", "name"] }, providers: [formArrayNameProvider], usesInheritance: true, ngImport: i0 }); }
|
|
5161
5194
|
}
|
|
5162
|
-
|
|
5163
|
-
FormArrayName.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: FormArrayName, selector: "[formArrayName]", inputs: { name: ["formArrayName", "name"] }, providers: [formArrayNameProvider], usesInheritance: true, ngImport: i0 });
|
|
5164
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: FormArrayName, decorators: [{
|
|
5195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormArrayName, decorators: [{
|
|
5165
5196
|
type: Directive,
|
|
5166
5197
|
args: [{ selector: '[formArrayName]', providers: [formArrayNameProvider] }]
|
|
5167
5198
|
}], ctorParameters: function () { return [{ type: ControlContainer, decorators: [{
|
|
@@ -5241,10 +5272,28 @@ class FormControlName extends NgControl {
|
|
|
5241
5272
|
console.warn(disabledAttrWarning);
|
|
5242
5273
|
}
|
|
5243
5274
|
}
|
|
5275
|
+
/**
|
|
5276
|
+
* @description
|
|
5277
|
+
* Static property used to track whether any ngModel warnings have been sent across
|
|
5278
|
+
* all instances of FormControlName. Used to support warning config of "once".
|
|
5279
|
+
*
|
|
5280
|
+
* @internal
|
|
5281
|
+
*/
|
|
5282
|
+
static { this._ngModelWarningSentOnce = false; }
|
|
5244
5283
|
constructor(parent, validators, asyncValidators, valueAccessors, _ngModelWarningConfig) {
|
|
5245
5284
|
super();
|
|
5246
5285
|
this._ngModelWarningConfig = _ngModelWarningConfig;
|
|
5247
5286
|
this._added = false;
|
|
5287
|
+
/**
|
|
5288
|
+
* @description
|
|
5289
|
+
* Tracks the name of the `FormControl` bound to the directive. The name corresponds
|
|
5290
|
+
* to a key in the parent `FormGroup` or `FormArray`.
|
|
5291
|
+
* Accepts a name as a string or a number.
|
|
5292
|
+
* The name in the form of a string is useful for individual forms,
|
|
5293
|
+
* while the numerical form allows for form controls to be bound
|
|
5294
|
+
* to indices when iterating over controls in a `FormArray`.
|
|
5295
|
+
*/
|
|
5296
|
+
this.name = null;
|
|
5248
5297
|
/** @deprecated as of v6 */
|
|
5249
5298
|
this.update = new EventEmitter();
|
|
5250
5299
|
/**
|
|
@@ -5321,18 +5370,10 @@ class FormControlName extends NgControl {
|
|
|
5321
5370
|
this.control = this.formDirective.addControl(this);
|
|
5322
5371
|
this._added = true;
|
|
5323
5372
|
}
|
|
5373
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
5374
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: FormControlName, selector: "[formControlName]", inputs: { name: ["formControlName", "name"], isDisabled: ["disabled", "isDisabled"], model: ["ngModel", "model"] }, outputs: { update: "ngModelChange" }, providers: [controlNameBinding], usesInheritance: true, usesOnChanges: true, ngImport: i0 }); }
|
|
5324
5375
|
}
|
|
5325
|
-
|
|
5326
|
-
* @description
|
|
5327
|
-
* Static property used to track whether any ngModel warnings have been sent across
|
|
5328
|
-
* all instances of FormControlName. Used to support warning config of "once".
|
|
5329
|
-
*
|
|
5330
|
-
* @internal
|
|
5331
|
-
*/
|
|
5332
|
-
FormControlName._ngModelWarningSentOnce = false;
|
|
5333
|
-
FormControlName.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.4", 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 });
|
|
5334
|
-
FormControlName.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: FormControlName, selector: "[formControlName]", inputs: { name: ["formControlName", "name"], isDisabled: ["disabled", "isDisabled"], model: ["ngModel", "model"] }, outputs: { update: "ngModelChange" }, providers: [controlNameBinding], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
5335
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: FormControlName, decorators: [{
|
|
5376
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormControlName, decorators: [{
|
|
5336
5377
|
type: Directive,
|
|
5337
5378
|
args: [{ selector: '[formControlName]', providers: [controlNameBinding] }]
|
|
5338
5379
|
}], ctorParameters: function () { return [{ type: ControlContainer, decorators: [{
|
|
@@ -5509,10 +5550,10 @@ class SelectControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
5509
5550
|
const id = _extractId$1(valueString);
|
|
5510
5551
|
return this._optionMap.has(id) ? this._optionMap.get(id) : valueString;
|
|
5511
5552
|
}
|
|
5553
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: SelectControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5554
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: { compareWith: "compareWith" }, host: { listeners: { "change": "onChange($event.target.value)", "blur": "onTouched()" } }, providers: [SELECT_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 }); }
|
|
5512
5555
|
}
|
|
5513
|
-
|
|
5514
|
-
SelectControlValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: { compareWith: "compareWith" }, host: { listeners: { "change": "onChange($event.target.value)", "blur": "onTouched()" } }, providers: [SELECT_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0 });
|
|
5515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: SelectControlValueAccessor, decorators: [{
|
|
5556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: SelectControlValueAccessor, decorators: [{
|
|
5516
5557
|
type: Directive,
|
|
5517
5558
|
args: [{
|
|
5518
5559
|
selector: 'select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]',
|
|
@@ -5573,10 +5614,10 @@ class NgSelectOption {
|
|
|
5573
5614
|
this._select.writeValue(this._select.value);
|
|
5574
5615
|
}
|
|
5575
5616
|
}
|
|
5617
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
5618
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: NgSelectOption, selector: "option", inputs: { ngValue: "ngValue", value: "value" }, ngImport: i0 }); }
|
|
5576
5619
|
}
|
|
5577
|
-
|
|
5578
|
-
NgSelectOption.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: NgSelectOption, selector: "option", inputs: { ngValue: "ngValue", value: "value" }, ngImport: i0 });
|
|
5579
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: NgSelectOption, decorators: [{
|
|
5620
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NgSelectOption, decorators: [{
|
|
5580
5621
|
type: Directive,
|
|
5581
5622
|
args: [{ selector: 'option' }]
|
|
5582
5623
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: SelectControlValueAccessor, decorators: [{
|
|
@@ -5740,10 +5781,10 @@ class SelectMultipleControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
5740
5781
|
const id = _extractId(valueString);
|
|
5741
5782
|
return this._optionMap.has(id) ? this._optionMap.get(id)._value : valueString;
|
|
5742
5783
|
}
|
|
5784
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: SelectMultipleControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5785
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: SelectMultipleControlValueAccessor, 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 }); }
|
|
5743
5786
|
}
|
|
5744
|
-
|
|
5745
|
-
SelectMultipleControlValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: SelectMultipleControlValueAccessor, 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 });
|
|
5746
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: SelectMultipleControlValueAccessor, decorators: [{
|
|
5787
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: SelectMultipleControlValueAccessor, decorators: [{
|
|
5747
5788
|
type: Directive,
|
|
5748
5789
|
args: [{
|
|
5749
5790
|
selector: 'select[multiple][formControlName],select[multiple][formControl],select[multiple][ngModel]',
|
|
@@ -5814,10 +5855,10 @@ class ɵNgSelectMultipleOption {
|
|
|
5814
5855
|
this._select.writeValue(this._select.value);
|
|
5815
5856
|
}
|
|
5816
5857
|
}
|
|
5858
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.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 }); }
|
|
5859
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: ɵNgSelectMultipleOption, selector: "option", inputs: { ngValue: "ngValue", value: "value" }, ngImport: i0 }); }
|
|
5817
5860
|
}
|
|
5818
|
-
|
|
5819
|
-
ɵNgSelectMultipleOption.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: ɵNgSelectMultipleOption, selector: "option", inputs: { ngValue: "ngValue", value: "value" }, ngImport: i0 });
|
|
5820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: ɵNgSelectMultipleOption, decorators: [{
|
|
5861
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: ɵNgSelectMultipleOption, decorators: [{
|
|
5821
5862
|
type: Directive,
|
|
5822
5863
|
args: [{ selector: 'option' }]
|
|
5823
5864
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: SelectMultipleControlValueAccessor, decorators: [{
|
|
@@ -5889,10 +5930,10 @@ class AbstractValidatorDirective {
|
|
|
5889
5930
|
enabled(input) {
|
|
5890
5931
|
return input != null /* both `null` and `undefined` */;
|
|
5891
5932
|
}
|
|
5933
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: AbstractValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5934
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: AbstractValidatorDirective, usesOnChanges: true, ngImport: i0 }); }
|
|
5892
5935
|
}
|
|
5893
|
-
|
|
5894
|
-
AbstractValidatorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: AbstractValidatorDirective, usesOnChanges: true, ngImport: i0 });
|
|
5895
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: AbstractValidatorDirective, decorators: [{
|
|
5936
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: AbstractValidatorDirective, decorators: [{
|
|
5896
5937
|
type: Directive
|
|
5897
5938
|
}] });
|
|
5898
5939
|
/**
|
|
@@ -5935,10 +5976,10 @@ class MaxValidator extends AbstractValidatorDirective {
|
|
|
5935
5976
|
/** @internal */
|
|
5936
5977
|
this.createValidator = (max) => maxValidator(max);
|
|
5937
5978
|
}
|
|
5979
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: MaxValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5980
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: MaxValidator, 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 }); }
|
|
5938
5981
|
}
|
|
5939
|
-
|
|
5940
|
-
MaxValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: MaxValidator, 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 });
|
|
5941
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: MaxValidator, decorators: [{
|
|
5982
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: MaxValidator, decorators: [{
|
|
5942
5983
|
type: Directive,
|
|
5943
5984
|
args: [{
|
|
5944
5985
|
selector: 'input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]',
|
|
@@ -5988,10 +6029,10 @@ class MinValidator extends AbstractValidatorDirective {
|
|
|
5988
6029
|
/** @internal */
|
|
5989
6030
|
this.createValidator = (min) => minValidator(min);
|
|
5990
6031
|
}
|
|
6032
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: MinValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6033
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: MinValidator, 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 }); }
|
|
5991
6034
|
}
|
|
5992
|
-
|
|
5993
|
-
MinValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: MinValidator, 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 });
|
|
5994
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: MinValidator, decorators: [{
|
|
6035
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: MinValidator, decorators: [{
|
|
5995
6036
|
type: Directive,
|
|
5996
6037
|
args: [{
|
|
5997
6038
|
selector: 'input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]',
|
|
@@ -6052,10 +6093,10 @@ class RequiredValidator extends AbstractValidatorDirective {
|
|
|
6052
6093
|
enabled(input) {
|
|
6053
6094
|
return input;
|
|
6054
6095
|
}
|
|
6096
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RequiredValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6097
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: RequiredValidator, 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 }); }
|
|
6055
6098
|
}
|
|
6056
|
-
|
|
6057
|
-
RequiredValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: RequiredValidator, 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 });
|
|
6058
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: RequiredValidator, decorators: [{
|
|
6099
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: RequiredValidator, decorators: [{
|
|
6059
6100
|
type: Directive,
|
|
6060
6101
|
args: [{
|
|
6061
6102
|
selector: ':not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]',
|
|
@@ -6092,10 +6133,10 @@ class CheckboxRequiredValidator extends RequiredValidator {
|
|
|
6092
6133
|
/** @internal */
|
|
6093
6134
|
this.createValidator = (input) => requiredTrueValidator;
|
|
6094
6135
|
}
|
|
6136
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: CheckboxRequiredValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6137
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: CheckboxRequiredValidator, 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 }); }
|
|
6095
6138
|
}
|
|
6096
|
-
|
|
6097
|
-
CheckboxRequiredValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: CheckboxRequiredValidator, 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 });
|
|
6098
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: CheckboxRequiredValidator, decorators: [{
|
|
6139
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: CheckboxRequiredValidator, decorators: [{
|
|
6099
6140
|
type: Directive,
|
|
6100
6141
|
args: [{
|
|
6101
6142
|
selector: 'input[type=checkbox][required][formControlName],input[type=checkbox][required][formControl],input[type=checkbox][required][ngModel]',
|
|
@@ -6153,10 +6194,10 @@ class EmailValidator extends AbstractValidatorDirective {
|
|
|
6153
6194
|
enabled(input) {
|
|
6154
6195
|
return input;
|
|
6155
6196
|
}
|
|
6197
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: EmailValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6198
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: EmailValidator, selector: "[email][formControlName],[email][formControl],[email][ngModel]", inputs: { email: "email" }, providers: [EMAIL_VALIDATOR], usesInheritance: true, ngImport: i0 }); }
|
|
6156
6199
|
}
|
|
6157
|
-
|
|
6158
|
-
EmailValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: EmailValidator, selector: "[email][formControlName],[email][formControl],[email][ngModel]", inputs: { email: "email" }, providers: [EMAIL_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6159
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: EmailValidator, decorators: [{
|
|
6200
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: EmailValidator, decorators: [{
|
|
6160
6201
|
type: Directive,
|
|
6161
6202
|
args: [{
|
|
6162
6203
|
selector: '[email][formControlName],[email][formControl],[email][ngModel]',
|
|
@@ -6205,10 +6246,10 @@ class MinLengthValidator extends AbstractValidatorDirective {
|
|
|
6205
6246
|
/** @internal */
|
|
6206
6247
|
this.createValidator = (minlength) => minLengthValidator(minlength);
|
|
6207
6248
|
}
|
|
6249
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: MinLengthValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6250
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: MinLengthValidator, 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 }); }
|
|
6208
6251
|
}
|
|
6209
|
-
|
|
6210
|
-
MinLengthValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: MinLengthValidator, 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 });
|
|
6211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: MinLengthValidator, decorators: [{
|
|
6252
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: MinLengthValidator, decorators: [{
|
|
6212
6253
|
type: Directive,
|
|
6213
6254
|
args: [{
|
|
6214
6255
|
selector: '[minlength][formControlName],[minlength][formControl],[minlength][ngModel]',
|
|
@@ -6258,10 +6299,10 @@ class MaxLengthValidator extends AbstractValidatorDirective {
|
|
|
6258
6299
|
/** @internal */
|
|
6259
6300
|
this.createValidator = (maxlength) => maxLengthValidator(maxlength);
|
|
6260
6301
|
}
|
|
6302
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: MaxLengthValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6303
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: MaxLengthValidator, 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 }); }
|
|
6261
6304
|
}
|
|
6262
|
-
|
|
6263
|
-
MaxLengthValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: MaxLengthValidator, 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 });
|
|
6264
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: MaxLengthValidator, decorators: [{
|
|
6305
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: MaxLengthValidator, decorators: [{
|
|
6265
6306
|
type: Directive,
|
|
6266
6307
|
args: [{
|
|
6267
6308
|
selector: '[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]',
|
|
@@ -6313,10 +6354,10 @@ class PatternValidator extends AbstractValidatorDirective {
|
|
|
6313
6354
|
/** @internal */
|
|
6314
6355
|
this.createValidator = (input) => patternValidator(input);
|
|
6315
6356
|
}
|
|
6357
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: PatternValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6358
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.5", type: PatternValidator, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: { pattern: "pattern" }, host: { properties: { "attr.pattern": "_enabled ? pattern : null" } }, providers: [PATTERN_VALIDATOR], usesInheritance: true, ngImport: i0 }); }
|
|
6316
6359
|
}
|
|
6317
|
-
|
|
6318
|
-
PatternValidator.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.4", type: PatternValidator, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: { pattern: "pattern" }, host: { properties: { "attr.pattern": "_enabled ? pattern : null" } }, providers: [PATTERN_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: PatternValidator, decorators: [{
|
|
6360
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: PatternValidator, decorators: [{
|
|
6320
6361
|
type: Directive,
|
|
6321
6362
|
args: [{
|
|
6322
6363
|
selector: '[pattern][formControlName],[pattern][formControl],[pattern][ngModel]',
|
|
@@ -6355,49 +6396,49 @@ const REACTIVE_DRIVEN_DIRECTIVES = [FormControlDirective, FormGroupDirective, Fo
|
|
|
6355
6396
|
* Internal module used for sharing directives between FormsModule and ReactiveFormsModule
|
|
6356
6397
|
*/
|
|
6357
6398
|
class ɵInternalFormsSharedModule {
|
|
6358
|
-
}
|
|
6359
|
-
|
|
6360
|
-
|
|
6361
|
-
|
|
6362
|
-
|
|
6363
|
-
|
|
6364
|
-
|
|
6365
|
-
|
|
6366
|
-
|
|
6367
|
-
|
|
6368
|
-
|
|
6369
|
-
|
|
6370
|
-
|
|
6371
|
-
|
|
6372
|
-
|
|
6373
|
-
|
|
6374
|
-
|
|
6375
|
-
|
|
6376
|
-
|
|
6377
|
-
|
|
6378
|
-
|
|
6379
|
-
|
|
6380
|
-
|
|
6381
|
-
|
|
6382
|
-
|
|
6383
|
-
|
|
6384
|
-
|
|
6385
|
-
|
|
6386
|
-
|
|
6387
|
-
|
|
6388
|
-
|
|
6389
|
-
|
|
6390
|
-
|
|
6391
|
-
|
|
6392
|
-
|
|
6393
|
-
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
|
|
6397
|
-
|
|
6398
|
-
|
|
6399
|
-
|
|
6400
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
6399
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: ɵInternalFormsSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6400
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.5", ngImport: i0, type: ɵInternalFormsSharedModule, declarations: [ɵNgNoValidate,
|
|
6401
|
+
NgSelectOption,
|
|
6402
|
+
ɵNgSelectMultipleOption,
|
|
6403
|
+
DefaultValueAccessor,
|
|
6404
|
+
NumberValueAccessor,
|
|
6405
|
+
RangeValueAccessor,
|
|
6406
|
+
CheckboxControlValueAccessor,
|
|
6407
|
+
SelectControlValueAccessor,
|
|
6408
|
+
SelectMultipleControlValueAccessor,
|
|
6409
|
+
RadioControlValueAccessor,
|
|
6410
|
+
NgControlStatus,
|
|
6411
|
+
NgControlStatusGroup,
|
|
6412
|
+
RequiredValidator,
|
|
6413
|
+
MinLengthValidator,
|
|
6414
|
+
MaxLengthValidator,
|
|
6415
|
+
PatternValidator,
|
|
6416
|
+
CheckboxRequiredValidator,
|
|
6417
|
+
EmailValidator,
|
|
6418
|
+
MinValidator,
|
|
6419
|
+
MaxValidator], imports: [RadioControlRegistryModule], exports: [ɵNgNoValidate,
|
|
6420
|
+
NgSelectOption,
|
|
6421
|
+
ɵNgSelectMultipleOption,
|
|
6422
|
+
DefaultValueAccessor,
|
|
6423
|
+
NumberValueAccessor,
|
|
6424
|
+
RangeValueAccessor,
|
|
6425
|
+
CheckboxControlValueAccessor,
|
|
6426
|
+
SelectControlValueAccessor,
|
|
6427
|
+
SelectMultipleControlValueAccessor,
|
|
6428
|
+
RadioControlValueAccessor,
|
|
6429
|
+
NgControlStatus,
|
|
6430
|
+
NgControlStatusGroup,
|
|
6431
|
+
RequiredValidator,
|
|
6432
|
+
MinLengthValidator,
|
|
6433
|
+
MaxLengthValidator,
|
|
6434
|
+
PatternValidator,
|
|
6435
|
+
CheckboxRequiredValidator,
|
|
6436
|
+
EmailValidator,
|
|
6437
|
+
MinValidator,
|
|
6438
|
+
MaxValidator] }); }
|
|
6439
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: ɵInternalFormsSharedModule, imports: [RadioControlRegistryModule] }); }
|
|
6440
|
+
}
|
|
6441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: ɵInternalFormsSharedModule, decorators: [{
|
|
6401
6442
|
type: NgModule,
|
|
6402
6443
|
args: [{
|
|
6403
6444
|
declarations: SHARED_FORM_DIRECTIVES,
|
|
@@ -7050,10 +7091,10 @@ class FormBuilder {
|
|
|
7050
7091
|
return this.control(controls);
|
|
7051
7092
|
}
|
|
7052
7093
|
}
|
|
7094
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
7095
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormBuilder, providedIn: 'root' }); }
|
|
7053
7096
|
}
|
|
7054
|
-
|
|
7055
|
-
FormBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: FormBuilder, providedIn: 'root' });
|
|
7056
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: FormBuilder, decorators: [{
|
|
7097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormBuilder, decorators: [{
|
|
7057
7098
|
type: Injectable,
|
|
7058
7099
|
args: [{ providedIn: 'root' }]
|
|
7059
7100
|
}] });
|
|
@@ -7065,10 +7106,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4",
|
|
|
7065
7106
|
* @publicApi
|
|
7066
7107
|
*/
|
|
7067
7108
|
class NonNullableFormBuilder {
|
|
7109
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NonNullableFormBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
7110
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NonNullableFormBuilder, providedIn: 'root', useFactory: () => inject(FormBuilder).nonNullable }); }
|
|
7068
7111
|
}
|
|
7069
|
-
|
|
7070
|
-
NonNullableFormBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: NonNullableFormBuilder, providedIn: 'root', useFactory: () => inject(FormBuilder).nonNullable });
|
|
7071
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: NonNullableFormBuilder, decorators: [{
|
|
7112
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: NonNullableFormBuilder, decorators: [{
|
|
7072
7113
|
type: Injectable,
|
|
7073
7114
|
args: [{
|
|
7074
7115
|
providedIn: 'root',
|
|
@@ -7094,10 +7135,10 @@ class UntypedFormBuilder extends FormBuilder {
|
|
|
7094
7135
|
array(controlsConfig, validatorOrOpts, asyncValidator) {
|
|
7095
7136
|
return super.array(controlsConfig, validatorOrOpts, asyncValidator);
|
|
7096
7137
|
}
|
|
7138
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: UntypedFormBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
7139
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: UntypedFormBuilder, providedIn: 'root' }); }
|
|
7097
7140
|
}
|
|
7098
|
-
|
|
7099
|
-
UntypedFormBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: UntypedFormBuilder, providedIn: 'root' });
|
|
7100
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: UntypedFormBuilder, decorators: [{
|
|
7141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: UntypedFormBuilder, decorators: [{
|
|
7101
7142
|
type: Injectable,
|
|
7102
7143
|
args: [{ providedIn: 'root' }]
|
|
7103
7144
|
}] });
|
|
@@ -7110,7 +7151,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4",
|
|
|
7110
7151
|
/**
|
|
7111
7152
|
* @publicApi
|
|
7112
7153
|
*/
|
|
7113
|
-
const VERSION = new Version('16.0.0-next.
|
|
7154
|
+
const VERSION = new Version('16.0.0-next.5');
|
|
7114
7155
|
|
|
7115
7156
|
/**
|
|
7116
7157
|
* Exports the required providers and directives for template-driven forms,
|
|
@@ -7142,11 +7183,11 @@ class FormsModule {
|
|
|
7142
7183
|
}]
|
|
7143
7184
|
};
|
|
7144
7185
|
}
|
|
7186
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7187
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormsModule, declarations: [NgModel, NgModelGroup, NgForm], exports: [ɵInternalFormsSharedModule, NgModel, NgModelGroup, NgForm] }); }
|
|
7188
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormsModule, imports: [ɵInternalFormsSharedModule] }); }
|
|
7145
7189
|
}
|
|
7146
|
-
|
|
7147
|
-
FormsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.4", ngImport: i0, type: FormsModule, declarations: [NgModel, NgModelGroup, NgForm], exports: [ɵInternalFormsSharedModule, NgModel, NgModelGroup, NgForm] });
|
|
7148
|
-
FormsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: FormsModule, imports: [ɵInternalFormsSharedModule] });
|
|
7149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: FormsModule, decorators: [{
|
|
7190
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: FormsModule, decorators: [{
|
|
7150
7191
|
type: NgModule,
|
|
7151
7192
|
args: [{
|
|
7152
7193
|
declarations: TEMPLATE_DRIVEN_DIRECTIVES,
|
|
@@ -7192,11 +7233,11 @@ class ReactiveFormsModule {
|
|
|
7192
7233
|
]
|
|
7193
7234
|
};
|
|
7194
7235
|
}
|
|
7236
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: ReactiveFormsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7237
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.5", ngImport: i0, type: ReactiveFormsModule, declarations: [FormControlDirective, FormGroupDirective, FormControlName, FormGroupName, FormArrayName], exports: [ɵInternalFormsSharedModule, FormControlDirective, FormGroupDirective, FormControlName, FormGroupName, FormArrayName] }); }
|
|
7238
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: ReactiveFormsModule, imports: [ɵInternalFormsSharedModule] }); }
|
|
7195
7239
|
}
|
|
7196
|
-
|
|
7197
|
-
ReactiveFormsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.4", ngImport: i0, type: ReactiveFormsModule, declarations: [FormControlDirective, FormGroupDirective, FormControlName, FormGroupName, FormArrayName], exports: [ɵInternalFormsSharedModule, FormControlDirective, FormGroupDirective, FormControlName, FormGroupName, FormArrayName] });
|
|
7198
|
-
ReactiveFormsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: ReactiveFormsModule, imports: [ɵInternalFormsSharedModule] });
|
|
7199
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.4", ngImport: i0, type: ReactiveFormsModule, decorators: [{
|
|
7240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.5", ngImport: i0, type: ReactiveFormsModule, decorators: [{
|
|
7200
7241
|
type: NgModule,
|
|
7201
7242
|
args: [{
|
|
7202
7243
|
declarations: [REACTIVE_DRIVEN_DIRECTIVES],
|