@angular/forms 19.2.0-next.0 → 19.2.0-next.2
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 +178 -153
- package/fesm2022/forms.mjs.map +1 -1
- package/index.d.ts +12 -10
- package/package.json +4 -4
package/fesm2022/forms.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.2.0-next.
|
|
2
|
+
* @license Angular v19.2.0-next.2
|
|
3
3
|
* (c) 2010-2024 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: "19.2.0-next.
|
|
68
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
67
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", 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: "19.2.0-next.2", type: BaseControlValueAccessor, isStandalone: true, ngImport: i0 });
|
|
69
69
|
}
|
|
70
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
70
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", 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: "19.2.0-next.0",
|
|
|
80
80
|
* applications code.
|
|
81
81
|
*/
|
|
82
82
|
class BuiltInControlValueAccessor extends BaseControlValueAccessor {
|
|
83
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
84
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
83
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: BuiltInControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
84
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: BuiltInControlValueAccessor, isStandalone: true, usesInheritance: true, ngImport: i0 });
|
|
85
85
|
}
|
|
86
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
86
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: BuiltInControlValueAccessor, decorators: [{
|
|
87
87
|
type: Directive
|
|
88
88
|
}] });
|
|
89
89
|
/**
|
|
@@ -131,10 +131,10 @@ 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: "19.2.0-next.
|
|
135
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
134
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: CheckboxControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
135
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: CheckboxControlValueAccessor, isStandalone: false, 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 });
|
|
136
136
|
}
|
|
137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", 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]',
|
|
@@ -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: "19.2.0-next.
|
|
236
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
235
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", 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: "19.2.0-next.2", 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": "$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 });
|
|
237
237
|
}
|
|
238
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
238
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", 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]',
|
|
@@ -259,16 +259,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.0",
|
|
|
259
259
|
}] }] });
|
|
260
260
|
|
|
261
261
|
function isEmptyInputValue(value) {
|
|
262
|
-
|
|
263
|
-
* Check if the object is a string or array before evaluating the length attribute.
|
|
264
|
-
* This avoids falsely rejecting objects that contain a custom length attribute.
|
|
265
|
-
* For example, the object {id: 1, length: 0, width: 0} should not be returned as empty.
|
|
266
|
-
*/
|
|
267
|
-
return (value == null || ((typeof value === 'string' || Array.isArray(value)) && value.length === 0));
|
|
262
|
+
return value == null || lengthOrSize(value) === 0;
|
|
268
263
|
}
|
|
269
|
-
|
|
264
|
+
/**
|
|
265
|
+
* Extract the length property in case it's an array or a string.
|
|
266
|
+
* Extract the size property in case it's a set.
|
|
267
|
+
* Return null else.
|
|
268
|
+
* @param value Either an array, set or undefined.
|
|
269
|
+
*/
|
|
270
|
+
function lengthOrSize(value) {
|
|
270
271
|
// non-strict comparison is intentional, to check for both `null` and `undefined` values
|
|
271
|
-
|
|
272
|
+
if (value == null) {
|
|
273
|
+
return null;
|
|
274
|
+
}
|
|
275
|
+
else if (Array.isArray(value) || typeof value === 'string') {
|
|
276
|
+
return value.length;
|
|
277
|
+
}
|
|
278
|
+
else if (value instanceof Set) {
|
|
279
|
+
return value.size;
|
|
280
|
+
}
|
|
281
|
+
return null;
|
|
272
282
|
}
|
|
273
283
|
/**
|
|
274
284
|
* @description
|
|
@@ -506,13 +516,14 @@ class Validators {
|
|
|
506
516
|
}
|
|
507
517
|
/**
|
|
508
518
|
* @description
|
|
509
|
-
* Validator that requires the
|
|
510
|
-
* to the provided minimum length. This validator is also provided by default if you use
|
|
519
|
+
* Validator that requires the number of items in the control's value to be greater than or equal
|
|
520
|
+
* to the provided minimum length. This validator is also provided by default if you use
|
|
511
521
|
* the HTML5 `minlength` attribute. Note that the `minLength` validator is intended to be used
|
|
512
|
-
* only for types that have a numeric `length` property, such as strings
|
|
513
|
-
* `minLength` validator logic is also not invoked for values when their `length`
|
|
514
|
-
* (for example in case of an empty string or an empty array), to support
|
|
515
|
-
* can use the standard `required` validator if empty values should not be
|
|
522
|
+
* only for types that have a numeric `length` or `size` property, such as strings, arrays or
|
|
523
|
+
* sets. The `minLength` validator logic is also not invoked for values when their `length` or
|
|
524
|
+
* `size` property is 0 (for example in case of an empty string or an empty array), to support
|
|
525
|
+
* optional controls. You can use the standard `required` validator if empty values should not be
|
|
526
|
+
* considered valid.
|
|
516
527
|
*
|
|
517
528
|
* @usageNotes
|
|
518
529
|
*
|
|
@@ -539,10 +550,11 @@ class Validators {
|
|
|
539
550
|
}
|
|
540
551
|
/**
|
|
541
552
|
* @description
|
|
542
|
-
* Validator that requires the
|
|
543
|
-
* to the provided maximum length. This validator is also provided by default if you use
|
|
553
|
+
* Validator that requires the number of items in the control's value to be less than or equal
|
|
554
|
+
* to the provided maximum length. This validator is also provided by default if you use
|
|
544
555
|
* the HTML5 `maxlength` attribute. Note that the `maxLength` validator is intended to be used
|
|
545
|
-
* only for types that have a numeric `length` property, such as strings or
|
|
556
|
+
* only for types that have a numeric `length` or `size` property, such as strings, arrays or
|
|
557
|
+
* sets.
|
|
546
558
|
*
|
|
547
559
|
* @usageNotes
|
|
548
560
|
*
|
|
@@ -653,7 +665,7 @@ class Validators {
|
|
|
653
665
|
*/
|
|
654
666
|
function minValidator(min) {
|
|
655
667
|
return (control) => {
|
|
656
|
-
if (
|
|
668
|
+
if (control.value == null || min == null) {
|
|
657
669
|
return null; // don't validate empty values to allow optional controls
|
|
658
670
|
}
|
|
659
671
|
const value = parseFloat(control.value);
|
|
@@ -668,7 +680,7 @@ function minValidator(min) {
|
|
|
668
680
|
*/
|
|
669
681
|
function maxValidator(max) {
|
|
670
682
|
return (control) => {
|
|
671
|
-
if (
|
|
683
|
+
if (control.value == null || max == null) {
|
|
672
684
|
return null; // don't validate empty values to allow optional controls
|
|
673
685
|
}
|
|
674
686
|
const value = parseFloat(control.value);
|
|
@@ -703,30 +715,39 @@ function emailValidator(control) {
|
|
|
703
715
|
return EMAIL_REGEXP.test(control.value) ? null : { 'email': true };
|
|
704
716
|
}
|
|
705
717
|
/**
|
|
706
|
-
* Validator that requires the
|
|
718
|
+
* Validator that requires the number of items in the control's value to be greater than or equal
|
|
707
719
|
* to the provided minimum length. See `Validators.minLength` for additional information.
|
|
720
|
+
*
|
|
721
|
+
* The minLengthValidator respects every length property in an object, regardless of whether it's an array.
|
|
722
|
+
* For example, the object {id: 1, length: 0, width: 0} should be validated.
|
|
708
723
|
*/
|
|
709
724
|
function minLengthValidator(minLength) {
|
|
710
725
|
return (control) => {
|
|
711
|
-
|
|
726
|
+
const length = control.value?.length ?? lengthOrSize(control.value);
|
|
727
|
+
if (length === null || length === 0) {
|
|
712
728
|
// don't validate empty values to allow optional controls
|
|
713
|
-
// don't validate values without `length` property
|
|
729
|
+
// don't validate values without `length` or `size` property
|
|
714
730
|
return null;
|
|
715
731
|
}
|
|
716
|
-
return
|
|
717
|
-
? { 'minlength': { 'requiredLength': minLength, 'actualLength':
|
|
732
|
+
return length < minLength
|
|
733
|
+
? { 'minlength': { 'requiredLength': minLength, 'actualLength': length } }
|
|
718
734
|
: null;
|
|
719
735
|
};
|
|
720
736
|
}
|
|
721
737
|
/**
|
|
722
|
-
* Validator that requires the
|
|
738
|
+
* Validator that requires the number of items in the control's value to be less than or equal
|
|
723
739
|
* to the provided maximum length. See `Validators.maxLength` for additional information.
|
|
740
|
+
*
|
|
741
|
+
* The maxLengthValidator respects every length property in an object, regardless of whether it's an array.
|
|
742
|
+
* For example, the object {id: 1, length: 0, width: 0} should be validated.
|
|
724
743
|
*/
|
|
725
744
|
function maxLengthValidator(maxLength) {
|
|
726
745
|
return (control) => {
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
:
|
|
746
|
+
const length = control.value?.length ?? lengthOrSize(control.value);
|
|
747
|
+
if (length !== null && length > maxLength) {
|
|
748
|
+
return { 'maxlength': { 'requiredLength': maxLength, 'actualLength': length } };
|
|
749
|
+
}
|
|
750
|
+
return null;
|
|
730
751
|
};
|
|
731
752
|
}
|
|
732
753
|
/**
|
|
@@ -1351,10 +1372,10 @@ class NgControlStatus extends AbstractControlStatus {
|
|
|
1351
1372
|
constructor(cd) {
|
|
1352
1373
|
super(cd);
|
|
1353
1374
|
}
|
|
1354
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
1355
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
1375
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NgControlStatus, deps: [{ token: NgControl, self: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1376
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
1356
1377
|
}
|
|
1357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
1378
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NgControlStatus, decorators: [{
|
|
1358
1379
|
type: Directive,
|
|
1359
1380
|
args: [{
|
|
1360
1381
|
selector: '[formControlName],[ngModel],[formControl]',
|
|
@@ -1380,10 +1401,10 @@ class NgControlStatusGroup extends AbstractControlStatus {
|
|
|
1380
1401
|
constructor(cd) {
|
|
1381
1402
|
super(cd);
|
|
1382
1403
|
}
|
|
1383
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
1384
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
1404
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NgControlStatusGroup, deps: [{ token: ControlContainer, optional: true, self: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1405
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
1385
1406
|
}
|
|
1386
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
1407
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NgControlStatusGroup, decorators: [{
|
|
1387
1408
|
type: Directive,
|
|
1388
1409
|
args: [{
|
|
1389
1410
|
selector: '[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]',
|
|
@@ -3726,10 +3747,10 @@ class NgForm extends ControlContainer {
|
|
|
3726
3747
|
path.pop();
|
|
3727
3748
|
return path.length ? this.form.get(path) : this.form;
|
|
3728
3749
|
}
|
|
3729
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
3730
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
3750
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", 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 });
|
|
3751
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
3731
3752
|
}
|
|
3732
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
3753
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NgForm, decorators: [{
|
|
3733
3754
|
type: Directive,
|
|
3734
3755
|
args: [{
|
|
3735
3756
|
selector: 'form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]',
|
|
@@ -3939,10 +3960,10 @@ class AbstractFormGroupDirective extends ControlContainer {
|
|
|
3939
3960
|
}
|
|
3940
3961
|
/** @internal */
|
|
3941
3962
|
_checkParentType() { }
|
|
3942
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
3943
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
3963
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: AbstractFormGroupDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
3964
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: AbstractFormGroupDirective, isStandalone: false, usesInheritance: true, ngImport: i0 });
|
|
3944
3965
|
}
|
|
3945
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
3966
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: AbstractFormGroupDirective, decorators: [{
|
|
3946
3967
|
type: Directive,
|
|
3947
3968
|
args: [{
|
|
3948
3969
|
standalone: false,
|
|
@@ -4045,10 +4066,10 @@ class NgModelGroup extends AbstractFormGroupDirective {
|
|
|
4045
4066
|
throw modelGroupParentException();
|
|
4046
4067
|
}
|
|
4047
4068
|
}
|
|
4048
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4049
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
4069
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", 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 });
|
|
4070
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: NgModelGroup, isStandalone: false, selector: "[ngModelGroup]", inputs: { name: ["ngModelGroup", "name"] }, providers: [modelGroupProvider], exportAs: ["ngModelGroup"], usesInheritance: true, ngImport: i0 });
|
|
4050
4071
|
}
|
|
4051
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4072
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NgModelGroup, decorators: [{
|
|
4052
4073
|
type: Directive,
|
|
4053
4074
|
args: [{
|
|
4054
4075
|
selector: '[ngModelGroup]',
|
|
@@ -4327,7 +4348,7 @@ class NgModel extends NgControl {
|
|
|
4327
4348
|
this.control.updateValueAndValidity({ emitEvent: false });
|
|
4328
4349
|
}
|
|
4329
4350
|
_checkForErrors() {
|
|
4330
|
-
if (!this._isStandalone()) {
|
|
4351
|
+
if ((typeof ngDevMode === 'undefined' || ngDevMode) && !this._isStandalone()) {
|
|
4331
4352
|
this._checkParentType();
|
|
4332
4353
|
}
|
|
4333
4354
|
this._checkName();
|
|
@@ -4373,10 +4394,10 @@ class NgModel extends NgControl {
|
|
|
4373
4394
|
_getPath(controlName) {
|
|
4374
4395
|
return this._parent ? controlPath(controlName, this._parent) : [controlName];
|
|
4375
4396
|
}
|
|
4376
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4377
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
4397
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", 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: "19.2.0-next.2", 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 });
|
|
4378
4399
|
}
|
|
4379
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4400
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NgModel, decorators: [{
|
|
4380
4401
|
type: Directive,
|
|
4381
4402
|
args: [{
|
|
4382
4403
|
selector: '[ngModel]:not([formControlName]):not([formControl])',
|
|
@@ -4453,10 +4474,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.0",
|
|
|
4453
4474
|
* @ngModule FormsModule
|
|
4454
4475
|
*/
|
|
4455
4476
|
class ɵNgNoValidate {
|
|
4456
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4457
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
4477
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: ɵNgNoValidate, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4478
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: ɵNgNoValidate, isStandalone: false, selector: "form:not([ngNoForm]):not([ngNativeValidate])", host: { attributes: { "novalidate": "" } }, ngImport: i0 });
|
|
4458
4479
|
}
|
|
4459
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: ɵNgNoValidate, decorators: [{
|
|
4460
4481
|
type: Directive,
|
|
4461
4482
|
args: [{
|
|
4462
4483
|
selector: 'form:not([ngNoForm]):not([ngNativeValidate])',
|
|
@@ -4513,10 +4534,10 @@ class NumberValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4513
4534
|
fn(value == '' ? null : parseFloat(value));
|
|
4514
4535
|
};
|
|
4515
4536
|
}
|
|
4516
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4517
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
4537
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NumberValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
4538
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: NumberValueAccessor, isStandalone: false, 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 });
|
|
4518
4539
|
}
|
|
4519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4540
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NumberValueAccessor, decorators: [{
|
|
4520
4541
|
type: Directive,
|
|
4521
4542
|
args: [{
|
|
4522
4543
|
selector: 'input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]',
|
|
@@ -4578,10 +4599,10 @@ class RadioControlRegistry {
|
|
|
4578
4599
|
return false;
|
|
4579
4600
|
return (controlPair[0]._parent === accessor._control._parent && controlPair[1].name === accessor.name);
|
|
4580
4601
|
}
|
|
4581
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4582
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4602
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: RadioControlRegistry, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4603
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: RadioControlRegistry, providedIn: 'root' });
|
|
4583
4604
|
}
|
|
4584
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4605
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: RadioControlRegistry, decorators: [{
|
|
4585
4606
|
type: Injectable,
|
|
4586
4607
|
args: [{ providedIn: 'root' }]
|
|
4587
4608
|
}] });
|
|
@@ -4724,10 +4745,10 @@ class RadioControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4724
4745
|
if (!this.name && this.formControlName)
|
|
4725
4746
|
this.name = this.formControlName;
|
|
4726
4747
|
}
|
|
4727
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4728
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
4748
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: RadioControlValueAccessor, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: RadioControlRegistry }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4749
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
4729
4750
|
}
|
|
4730
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4751
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: RadioControlValueAccessor, decorators: [{
|
|
4731
4752
|
type: Directive,
|
|
4732
4753
|
args: [{
|
|
4733
4754
|
selector: 'input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]',
|
|
@@ -4789,10 +4810,10 @@ class RangeValueAccessor extends BuiltInControlValueAccessor {
|
|
|
4789
4810
|
fn(value == '' ? null : parseFloat(value));
|
|
4790
4811
|
};
|
|
4791
4812
|
}
|
|
4792
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4793
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
4813
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: RangeValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
4814
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: RangeValueAccessor, isStandalone: false, 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 });
|
|
4794
4815
|
}
|
|
4795
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: RangeValueAccessor, decorators: [{
|
|
4796
4817
|
type: Directive,
|
|
4797
4818
|
args: [{
|
|
4798
4819
|
selector: 'input[type=range][formControlName],input[type=range][formControl],input[type=range][ngModel]',
|
|
@@ -4939,10 +4960,10 @@ class FormControlDirective extends NgControl {
|
|
|
4939
4960
|
_isControlChanged(changes) {
|
|
4940
4961
|
return changes.hasOwnProperty('form');
|
|
4941
4962
|
}
|
|
4942
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4943
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
4963
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", 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 });
|
|
4964
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
4944
4965
|
}
|
|
4945
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
4966
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormControlDirective, decorators: [{
|
|
4946
4967
|
type: Directive,
|
|
4947
4968
|
args: [{
|
|
4948
4969
|
selector: '[formControl]',
|
|
@@ -5307,10 +5328,10 @@ class FormGroupDirective extends ControlContainer {
|
|
|
5307
5328
|
throw missingFormException();
|
|
5308
5329
|
}
|
|
5309
5330
|
}
|
|
5310
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
5311
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
5331
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", 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 });
|
|
5332
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
5312
5333
|
}
|
|
5313
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
5334
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormGroupDirective, decorators: [{
|
|
5314
5335
|
type: Directive,
|
|
5315
5336
|
args: [{
|
|
5316
5337
|
selector: '[formGroup]',
|
|
@@ -5419,10 +5440,10 @@ class FormGroupName extends AbstractFormGroupDirective {
|
|
|
5419
5440
|
throw groupParentException();
|
|
5420
5441
|
}
|
|
5421
5442
|
}
|
|
5422
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
5423
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
5443
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", 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 });
|
|
5444
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: FormGroupName, isStandalone: false, selector: "[formGroupName]", inputs: { name: ["formGroupName", "name"] }, providers: [formGroupNameProvider], usesInheritance: true, ngImport: i0 });
|
|
5424
5445
|
}
|
|
5425
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
5446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormGroupName, decorators: [{
|
|
5426
5447
|
type: Directive,
|
|
5427
5448
|
args: [{
|
|
5428
5449
|
selector: '[formGroupName]',
|
|
@@ -5506,7 +5527,9 @@ class FormArrayName extends ControlContainer {
|
|
|
5506
5527
|
* @nodoc
|
|
5507
5528
|
*/
|
|
5508
5529
|
ngOnInit() {
|
|
5509
|
-
|
|
5530
|
+
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
|
5531
|
+
this._checkParentType();
|
|
5532
|
+
}
|
|
5510
5533
|
this.formDirective.addFormArray(this);
|
|
5511
5534
|
}
|
|
5512
5535
|
/**
|
|
@@ -5545,10 +5568,10 @@ class FormArrayName extends ControlContainer {
|
|
|
5545
5568
|
throw arrayParentException();
|
|
5546
5569
|
}
|
|
5547
5570
|
}
|
|
5548
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
5549
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
5571
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", 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 });
|
|
5572
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: FormArrayName, isStandalone: false, selector: "[formArrayName]", inputs: { name: ["formArrayName", "name"] }, providers: [formArrayNameProvider], usesInheritance: true, ngImport: i0 });
|
|
5550
5573
|
}
|
|
5551
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
5574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormArrayName, decorators: [{
|
|
5552
5575
|
type: Directive,
|
|
5553
5576
|
args: [{
|
|
5554
5577
|
selector: '[formArrayName]',
|
|
@@ -5740,14 +5763,16 @@ class FormControlName extends NgControl {
|
|
|
5740
5763
|
}
|
|
5741
5764
|
}
|
|
5742
5765
|
_setUpControl() {
|
|
5743
|
-
|
|
5766
|
+
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
|
5767
|
+
this._checkParentType();
|
|
5768
|
+
}
|
|
5744
5769
|
this.control = this.formDirective.addControl(this);
|
|
5745
5770
|
this._added = true;
|
|
5746
5771
|
}
|
|
5747
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
5748
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
5772
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", 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 });
|
|
5773
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
5749
5774
|
}
|
|
5750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
5775
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormControlName, decorators: [{
|
|
5751
5776
|
type: Directive,
|
|
5752
5777
|
args: [{
|
|
5753
5778
|
selector: '[formControlName]',
|
|
@@ -5927,10 +5952,10 @@ class SelectControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
5927
5952
|
const id = _extractId$1(valueString);
|
|
5928
5953
|
return this._optionMap.has(id) ? this._optionMap.get(id) : valueString;
|
|
5929
5954
|
}
|
|
5930
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
5931
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
5955
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: SelectControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
5956
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: SelectControlValueAccessor, isStandalone: false, 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 });
|
|
5932
5957
|
}
|
|
5933
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
5958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: SelectControlValueAccessor, decorators: [{
|
|
5934
5959
|
type: Directive,
|
|
5935
5960
|
args: [{
|
|
5936
5961
|
selector: 'select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]',
|
|
@@ -6001,10 +6026,10 @@ class NgSelectOption {
|
|
|
6001
6026
|
this._select.writeValue(this._select.value);
|
|
6002
6027
|
}
|
|
6003
6028
|
}
|
|
6004
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6005
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6029
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NgSelectOption, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: SelectControlValueAccessor, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6030
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: NgSelectOption, isStandalone: false, selector: "option", inputs: { ngValue: "ngValue", value: "value" }, ngImport: i0 });
|
|
6006
6031
|
}
|
|
6007
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6032
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NgSelectOption, decorators: [{
|
|
6008
6033
|
type: Directive,
|
|
6009
6034
|
args: [{
|
|
6010
6035
|
selector: 'option',
|
|
@@ -6175,10 +6200,10 @@ class SelectMultipleControlValueAccessor extends BuiltInControlValueAccessor {
|
|
|
6175
6200
|
const id = _extractId(valueString);
|
|
6176
6201
|
return this._optionMap.has(id) ? this._optionMap.get(id)._value : valueString;
|
|
6177
6202
|
}
|
|
6178
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6179
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6203
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: SelectMultipleControlValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6204
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
6180
6205
|
}
|
|
6181
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: SelectMultipleControlValueAccessor, decorators: [{
|
|
6182
6207
|
type: Directive,
|
|
6183
6208
|
args: [{
|
|
6184
6209
|
selector: 'select[multiple][formControlName],select[multiple][formControl],select[multiple][ngModel]',
|
|
@@ -6257,10 +6282,10 @@ class ɵNgSelectMultipleOption {
|
|
|
6257
6282
|
this._select.writeValue(this._select.value);
|
|
6258
6283
|
}
|
|
6259
6284
|
}
|
|
6260
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6261
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6285
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: ɵNgSelectMultipleOption, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: SelectMultipleControlValueAccessor, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
6286
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: ɵNgSelectMultipleOption, isStandalone: false, selector: "option", inputs: { ngValue: "ngValue", value: "value" }, ngImport: i0 });
|
|
6262
6287
|
}
|
|
6263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: ɵNgSelectMultipleOption, decorators: [{
|
|
6264
6289
|
type: Directive,
|
|
6265
6290
|
args: [{
|
|
6266
6291
|
selector: 'option',
|
|
@@ -6342,10 +6367,10 @@ class AbstractValidatorDirective {
|
|
|
6342
6367
|
enabled(input) {
|
|
6343
6368
|
return input != null /* both `null` and `undefined` */;
|
|
6344
6369
|
}
|
|
6345
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6346
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6370
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: AbstractValidatorDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
6371
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: AbstractValidatorDirective, isStandalone: true, usesOnChanges: true, ngImport: i0 });
|
|
6347
6372
|
}
|
|
6348
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: AbstractValidatorDirective, decorators: [{
|
|
6349
6374
|
type: Directive
|
|
6350
6375
|
}] });
|
|
6351
6376
|
/**
|
|
@@ -6390,10 +6415,10 @@ class MaxValidator extends AbstractValidatorDirective {
|
|
|
6390
6415
|
normalizeInput = (input) => toFloat(input);
|
|
6391
6416
|
/** @internal */
|
|
6392
6417
|
createValidator = (max) => maxValidator(max);
|
|
6393
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6394
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6418
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: MaxValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6419
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
6395
6420
|
}
|
|
6396
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: MaxValidator, decorators: [{
|
|
6397
6422
|
type: Directive,
|
|
6398
6423
|
args: [{
|
|
6399
6424
|
selector: 'input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]',
|
|
@@ -6446,10 +6471,10 @@ class MinValidator extends AbstractValidatorDirective {
|
|
|
6446
6471
|
normalizeInput = (input) => toFloat(input);
|
|
6447
6472
|
/** @internal */
|
|
6448
6473
|
createValidator = (min) => minValidator(min);
|
|
6449
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6450
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6474
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: MinValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6475
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
6451
6476
|
}
|
|
6452
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: MinValidator, decorators: [{
|
|
6453
6478
|
type: Directive,
|
|
6454
6479
|
args: [{
|
|
6455
6480
|
selector: 'input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]',
|
|
@@ -6513,10 +6538,10 @@ class RequiredValidator extends AbstractValidatorDirective {
|
|
|
6513
6538
|
enabled(input) {
|
|
6514
6539
|
return input;
|
|
6515
6540
|
}
|
|
6516
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6517
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6541
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: RequiredValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6542
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
6518
6543
|
}
|
|
6519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6544
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: RequiredValidator, decorators: [{
|
|
6520
6545
|
type: Directive,
|
|
6521
6546
|
args: [{
|
|
6522
6547
|
selector: ':not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]',
|
|
@@ -6551,10 +6576,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.0",
|
|
|
6551
6576
|
class CheckboxRequiredValidator extends RequiredValidator {
|
|
6552
6577
|
/** @internal */
|
|
6553
6578
|
createValidator = (input) => requiredTrueValidator;
|
|
6554
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6555
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6579
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: CheckboxRequiredValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6580
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
6556
6581
|
}
|
|
6557
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: CheckboxRequiredValidator, decorators: [{
|
|
6558
6583
|
type: Directive,
|
|
6559
6584
|
args: [{
|
|
6560
6585
|
selector: 'input[type=checkbox][required][formControlName],input[type=checkbox][required][formControl],input[type=checkbox][required][ngModel]',
|
|
@@ -6615,10 +6640,10 @@ class EmailValidator extends AbstractValidatorDirective {
|
|
|
6615
6640
|
enabled(input) {
|
|
6616
6641
|
return input;
|
|
6617
6642
|
}
|
|
6618
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6619
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6643
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: EmailValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6644
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", type: EmailValidator, isStandalone: false, selector: "[email][formControlName],[email][formControl],[email][ngModel]", inputs: { email: "email" }, providers: [EMAIL_VALIDATOR], usesInheritance: true, ngImport: i0 });
|
|
6620
6645
|
}
|
|
6621
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: EmailValidator, decorators: [{
|
|
6622
6647
|
type: Directive,
|
|
6623
6648
|
args: [{
|
|
6624
6649
|
selector: '[email][formControlName],[email][formControl],[email][ngModel]',
|
|
@@ -6670,10 +6695,10 @@ class MinLengthValidator extends AbstractValidatorDirective {
|
|
|
6670
6695
|
normalizeInput = (input) => toInteger(input);
|
|
6671
6696
|
/** @internal */
|
|
6672
6697
|
createValidator = (minlength) => minLengthValidator(minlength);
|
|
6673
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6674
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6698
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: MinLengthValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6699
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
6675
6700
|
}
|
|
6676
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6701
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: MinLengthValidator, decorators: [{
|
|
6677
6702
|
type: Directive,
|
|
6678
6703
|
args: [{
|
|
6679
6704
|
selector: '[minlength][formControlName],[minlength][formControl],[minlength][ngModel]',
|
|
@@ -6726,10 +6751,10 @@ class MaxLengthValidator extends AbstractValidatorDirective {
|
|
|
6726
6751
|
normalizeInput = (input) => toInteger(input);
|
|
6727
6752
|
/** @internal */
|
|
6728
6753
|
createValidator = (maxlength) => maxLengthValidator(maxlength);
|
|
6729
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6730
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6754
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: MaxLengthValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6755
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
6731
6756
|
}
|
|
6732
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6757
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: MaxLengthValidator, decorators: [{
|
|
6733
6758
|
type: Directive,
|
|
6734
6759
|
args: [{
|
|
6735
6760
|
selector: '[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]',
|
|
@@ -6784,10 +6809,10 @@ class PatternValidator extends AbstractValidatorDirective {
|
|
|
6784
6809
|
normalizeInput = (input) => input;
|
|
6785
6810
|
/** @internal */
|
|
6786
6811
|
createValidator = (input) => patternValidator(input);
|
|
6787
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6788
|
-
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6812
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: PatternValidator, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
6813
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.0-next.2", 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 });
|
|
6789
6814
|
}
|
|
6790
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6815
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: PatternValidator, decorators: [{
|
|
6791
6816
|
type: Directive,
|
|
6792
6817
|
args: [{
|
|
6793
6818
|
selector: '[pattern][formControlName],[pattern][formControl],[pattern][ngModel]',
|
|
@@ -6833,8 +6858,8 @@ const REACTIVE_DRIVEN_DIRECTIVES = [
|
|
|
6833
6858
|
* Internal module used for sharing directives between FormsModule and ReactiveFormsModule
|
|
6834
6859
|
*/
|
|
6835
6860
|
class ɵInternalFormsSharedModule {
|
|
6836
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6837
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
6861
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: ɵInternalFormsSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6862
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.0-next.2", ngImport: i0, type: ɵInternalFormsSharedModule, declarations: [ɵNgNoValidate,
|
|
6838
6863
|
NgSelectOption,
|
|
6839
6864
|
ɵNgSelectMultipleOption,
|
|
6840
6865
|
DefaultValueAccessor,
|
|
@@ -6873,9 +6898,9 @@ class ɵInternalFormsSharedModule {
|
|
|
6873
6898
|
EmailValidator,
|
|
6874
6899
|
MinValidator,
|
|
6875
6900
|
MaxValidator] });
|
|
6876
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6901
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: ɵInternalFormsSharedModule });
|
|
6877
6902
|
}
|
|
6878
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
6903
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: ɵInternalFormsSharedModule, decorators: [{
|
|
6879
6904
|
type: NgModule,
|
|
6880
6905
|
args: [{
|
|
6881
6906
|
declarations: SHARED_FORM_DIRECTIVES,
|
|
@@ -7527,10 +7552,10 @@ class FormBuilder {
|
|
|
7527
7552
|
return this.control(controls);
|
|
7528
7553
|
}
|
|
7529
7554
|
}
|
|
7530
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7531
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7555
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7556
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormBuilder, providedIn: 'root' });
|
|
7532
7557
|
}
|
|
7533
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7558
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormBuilder, decorators: [{
|
|
7534
7559
|
type: Injectable,
|
|
7535
7560
|
args: [{ providedIn: 'root' }]
|
|
7536
7561
|
}] });
|
|
@@ -7542,10 +7567,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.0",
|
|
|
7542
7567
|
* @publicApi
|
|
7543
7568
|
*/
|
|
7544
7569
|
class NonNullableFormBuilder {
|
|
7545
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7546
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7570
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NonNullableFormBuilder, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7571
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NonNullableFormBuilder, providedIn: 'root', useFactory: () => inject(FormBuilder).nonNullable });
|
|
7547
7572
|
}
|
|
7548
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7573
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: NonNullableFormBuilder, decorators: [{
|
|
7549
7574
|
type: Injectable,
|
|
7550
7575
|
args: [{
|
|
7551
7576
|
providedIn: 'root',
|
|
@@ -7571,10 +7596,10 @@ class UntypedFormBuilder extends FormBuilder {
|
|
|
7571
7596
|
array(controlsConfig, validatorOrOpts, asyncValidator) {
|
|
7572
7597
|
return super.array(controlsConfig, validatorOrOpts, asyncValidator);
|
|
7573
7598
|
}
|
|
7574
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7575
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7599
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: UntypedFormBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
7600
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: UntypedFormBuilder, providedIn: 'root' });
|
|
7576
7601
|
}
|
|
7577
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: UntypedFormBuilder, decorators: [{
|
|
7578
7603
|
type: Injectable,
|
|
7579
7604
|
args: [{ providedIn: 'root' }]
|
|
7580
7605
|
}] });
|
|
@@ -7587,7 +7612,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.0",
|
|
|
7587
7612
|
/**
|
|
7588
7613
|
* @publicApi
|
|
7589
7614
|
*/
|
|
7590
|
-
const VERSION = new Version('19.2.0-next.
|
|
7615
|
+
const VERSION = new Version('19.2.0-next.2');
|
|
7591
7616
|
|
|
7592
7617
|
/**
|
|
7593
7618
|
* Exports the required providers and directives for template-driven forms,
|
|
@@ -7618,11 +7643,11 @@ class FormsModule {
|
|
|
7618
7643
|
],
|
|
7619
7644
|
};
|
|
7620
7645
|
}
|
|
7621
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7622
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
7623
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7646
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7647
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormsModule, declarations: [NgModel, NgModelGroup, NgForm], exports: [ɵInternalFormsSharedModule, NgModel, NgModelGroup, NgForm] });
|
|
7648
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormsModule, imports: [ɵInternalFormsSharedModule] });
|
|
7624
7649
|
}
|
|
7625
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7650
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: FormsModule, decorators: [{
|
|
7626
7651
|
type: NgModule,
|
|
7627
7652
|
args: [{
|
|
7628
7653
|
declarations: TEMPLATE_DRIVEN_DIRECTIVES,
|
|
@@ -7664,11 +7689,11 @@ class ReactiveFormsModule {
|
|
|
7664
7689
|
],
|
|
7665
7690
|
};
|
|
7666
7691
|
}
|
|
7667
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7668
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.0-next.
|
|
7669
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7692
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: ReactiveFormsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7693
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.0-next.2", ngImport: i0, type: ReactiveFormsModule, declarations: [FormControlDirective, FormGroupDirective, FormControlName, FormGroupName, FormArrayName], exports: [ɵInternalFormsSharedModule, FormControlDirective, FormGroupDirective, FormControlName, FormGroupName, FormArrayName] });
|
|
7694
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: ReactiveFormsModule, imports: [ɵInternalFormsSharedModule] });
|
|
7670
7695
|
}
|
|
7671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.
|
|
7696
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.0-next.2", ngImport: i0, type: ReactiveFormsModule, decorators: [{
|
|
7672
7697
|
type: NgModule,
|
|
7673
7698
|
args: [{
|
|
7674
7699
|
declarations: [REACTIVE_DRIVEN_DIRECTIVES],
|