feat: update to Angular 14 (#5973)

* fix: fix issues after updates to Angular 13 in rooms component and country orders component

* feat: update to Angular 14 (#1)

* fix(angular 13): fix issues after updates to Angular 13 in rooms component and country orders component (#5965)

* feat: update to Angular 14

* feat: update angular eslint packages eslint

* feat: update nebular to 10 version

* feat: update style import, remove ~
This commit is contained in:
Denis Strigo 2023-03-07 19:26:27 +01:00 committed by GitHub
parent 384b841cc0
commit b1a9a682b8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
38 changed files with 2609 additions and 2723 deletions

View file

@ -1,5 +1,5 @@
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
@Component({
selector: 'ngx-stepper',
@ -8,11 +8,11 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms';
})
export class StepperComponent implements OnInit {
firstForm: FormGroup;
secondForm: FormGroup;
thirdForm: FormGroup;
firstForm: UntypedFormGroup;
secondForm: UntypedFormGroup;
thirdForm: UntypedFormGroup;
constructor(private fb: FormBuilder) {
constructor(private fb: UntypedFormBuilder) {
}
ngOnInit() {