101108: Automatic ng update @angular/core@14

This commit is contained in:
Kristof De Langhe
2023-04-11 16:18:20 +02:00
parent 4e7cad9e17
commit d21ce38011
95 changed files with 3842 additions and 3701 deletions

View File

@@ -1,4 +1,4 @@
import { FormControl, FormGroup } from '@angular/forms';
import { UntypedFormControl, UntypedFormGroup } from '@angular/forms';
import { DynamicCheckboxModel, DynamicSelectModel } from '@ng-dynamic-forms/core';
export const accessConditionChangeEvent = {
@@ -16,7 +16,7 @@ export const accessConditionChangeEvent = {
type: 'change',
},
context: null,
control: new FormControl({
control: new UntypedFormControl({
errors: null,
pristine: false,
status: 'VALID',
@@ -26,7 +26,7 @@ export const accessConditionChangeEvent = {
valueChanges: { _isScalar: false, observers: [], closed: false, isStopped: false, hasError: false },
_updateOn: 'change',
}),
group: new FormGroup({}),
group: new UntypedFormGroup({}),
model: new DynamicSelectModel({
additional: null,
asyncValidators: null,
@@ -66,7 +66,7 @@ export const checkboxChangeEvent = {
type: 'change',
},
context: null,
control: new FormControl({
control: new UntypedFormControl({
errors: null,
pristine: false,
status: 'VALID',
@@ -76,7 +76,7 @@ export const checkboxChangeEvent = {
valueChanges: { _isScalar: false, observers: [], closed: false, isStopped: false, hasError: false },
_updateOn: 'change',
}),
group: new FormGroup({}),
group: new UntypedFormGroup({}),
model: new DynamicCheckboxModel({
additional: null,
asyncValidators: null,