Migrated to Angular to 14.rc-2

This commit is contained in:
Sercan Yemen 2022-05-26 13:57:37 +03:00
parent d033470851
commit 20a03c3689
70 changed files with 25591 additions and 25591 deletions

50730
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -14,17 +14,17 @@
"lint": "ng lint" "lint": "ng lint"
}, },
"dependencies": { "dependencies": {
"@angular/animations": "14.0.0-rc.0", "@angular/animations": "14.0.0-rc.2",
"@angular/cdk": "14.0.0-rc.0", "@angular/cdk": "14.0.0-rc.0",
"@angular/common": "14.0.0-rc.0", "@angular/common": "14.0.0-rc.2",
"@angular/compiler": "14.0.0-rc.0", "@angular/compiler": "14.0.0-rc.2",
"@angular/core": "14.0.0-rc.0", "@angular/core": "14.0.0-rc.2",
"@angular/forms": "14.0.0-rc.0", "@angular/forms": "14.0.0-rc.2",
"@angular/material": "14.0.0-rc.0", "@angular/material": "14.0.0-rc.0",
"@angular/material-moment-adapter": "14.0.0-rc.0", "@angular/material-moment-adapter": "14.0.0-rc.0",
"@angular/platform-browser": "14.0.0-rc.0", "@angular/platform-browser": "14.0.0-rc.2",
"@angular/platform-browser-dynamic": "14.0.0-rc.0", "@angular/platform-browser-dynamic": "14.0.0-rc.2",
"@angular/router": "14.0.0-rc.0", "@angular/router": "14.0.0-rc.2",
"@ngneat/transloco": "4.0.0", "@ngneat/transloco": "4.0.0",
"apexcharts": "3.35.2", "apexcharts": "3.35.2",
"crypto-js": "3.3.0", "crypto-js": "3.3.0",
@ -41,14 +41,14 @@
"zone.js": "0.11.5" "zone.js": "0.11.5"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "14.0.0-rc.0", "@angular-devkit/build-angular": "14.0.0-rc.2",
"@angular-eslint/builder": "13.2.1", "@angular-eslint/builder": "13.2.1",
"@angular-eslint/eslint-plugin": "13.2.1", "@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1", "@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/schematics": "13.2.1", "@angular-eslint/schematics": "13.2.1",
"@angular-eslint/template-parser": "13.2.1", "@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "14.0.0-rc.0", "@angular/cli": "14.0.0-rc.2",
"@angular/compiler-cli": "14.0.0-rc.0", "@angular/compiler-cli": "14.0.0-rc.2",
"@tailwindcss/aspect-ratio": "0.4.0", "@tailwindcss/aspect-ratio": "0.4.0",
"@tailwindcss/line-clamp": "0.4.0", "@tailwindcss/line-clamp": "0.4.0",
"@tailwindcss/typography": "0.5.2", "@tailwindcss/typography": "0.5.2",

View File

@ -1,5 +1,5 @@
import { Component, ElementRef, EventEmitter, HostBinding, Input, OnChanges, OnDestroy, OnInit, Output, Renderer2, SimpleChanges, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, ElementRef, EventEmitter, HostBinding, Input, OnChanges, OnDestroy, OnInit, Output, Renderer2, SimpleChanges, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormControl } from '@angular/forms'; import { UntypedFormControl } from '@angular/forms';
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
import { MatAutocomplete } from '@angular/material/autocomplete'; import { MatAutocomplete } from '@angular/material/autocomplete';
import { debounceTime, filter, map, Subject, takeUntil } from 'rxjs'; import { debounceTime, filter, map, Subject, takeUntil } from 'rxjs';
@ -21,7 +21,7 @@ export class SearchComponent implements OnChanges, OnInit, OnDestroy
opened: boolean = false; opened: boolean = false;
resultSets: any[]; resultSets: any[];
searchControl: FormControl = new FormControl(); searchControl: UntypedFormControl = new UntypedFormControl();
private _matAutocomplete: MatAutocomplete; private _matAutocomplete: MatAutocomplete;
private _unsubscribeAll: Subject<any> = new Subject<any>(); private _unsubscribeAll: Subject<any> = new Subject<any>();

View File

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy, OnInit, TemplateRef, ViewChild, ViewContainerRef, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy, OnInit, TemplateRef, ViewChild, ViewContainerRef, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { Overlay, OverlayRef } from '@angular/cdk/overlay'; import { Overlay, OverlayRef } from '@angular/cdk/overlay';
import { TemplatePortal } from '@angular/cdk/portal'; import { TemplatePortal } from '@angular/cdk/portal';
import { MatButton } from '@angular/material/button'; import { MatButton } from '@angular/material/button';
@ -20,7 +20,7 @@ export class ShortcutsComponent implements OnInit, OnDestroy
@ViewChild('shortcutsPanel') private _shortcutsPanel: TemplateRef<any>; @ViewChild('shortcutsPanel') private _shortcutsPanel: TemplateRef<any>;
mode: 'view' | 'modify' | 'add' | 'edit' = 'view'; mode: 'view' | 'modify' | 'add' | 'edit' = 'view';
shortcutForm: FormGroup; shortcutForm: UntypedFormGroup;
shortcuts: Shortcut[]; shortcuts: Shortcut[];
private _overlayRef: OverlayRef; private _overlayRef: OverlayRef;
private _unsubscribeAll: Subject<any> = new Subject<any>(); private _unsubscribeAll: Subject<any> = new Subject<any>();
@ -30,7 +30,7 @@ export class ShortcutsComponent implements OnInit, OnDestroy
*/ */
constructor( constructor(
private _changeDetectorRef: ChangeDetectorRef, private _changeDetectorRef: ChangeDetectorRef,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _shortcutsService: ShortcutsService, private _shortcutsService: ShortcutsService,
private _overlay: Overlay, private _overlay: Overlay,
private _viewContainerRef: ViewContainerRef private _viewContainerRef: ViewContainerRef

View File

@ -1,6 +1,6 @@
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef, ViewChild, ViewContainerRef, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef, ViewChild, ViewContainerRef, ViewEncapsulation } from '@angular/core';
import { ActivatedRoute, Router } from '@angular/router'; import { ActivatedRoute, Router } from '@angular/router';
import { FormArray, FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormArray, UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { TemplatePortal } from '@angular/cdk/portal'; import { TemplatePortal } from '@angular/cdk/portal';
import { Overlay, OverlayRef } from '@angular/cdk/overlay'; import { Overlay, OverlayRef } from '@angular/cdk/overlay';
import { MatDrawerToggleResult } from '@angular/material/sidenav'; import { MatDrawerToggleResult } from '@angular/material/sidenav';
@ -27,7 +27,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
tagsEditMode: boolean = false; tagsEditMode: boolean = false;
filteredTags: Tag[]; filteredTags: Tag[];
contact: Contact; contact: Contact;
contactForm: FormGroup; contactForm: UntypedFormGroup;
contacts: Contact[]; contacts: Contact[];
countries: Country[]; countries: Country[];
private _tagsPanelOverlayRef: OverlayRef; private _tagsPanelOverlayRef: OverlayRef;
@ -41,7 +41,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
private _changeDetectorRef: ChangeDetectorRef, private _changeDetectorRef: ChangeDetectorRef,
private _contactsListComponent: ContactsListComponent, private _contactsListComponent: ContactsListComponent,
private _contactsService: ContactsService, private _contactsService: ContactsService,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _fuseConfirmationService: FuseConfirmationService, private _fuseConfirmationService: FuseConfirmationService,
private _renderer2: Renderer2, private _renderer2: Renderer2,
private _router: Router, private _router: Router,
@ -100,8 +100,8 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
this.contact = contact; this.contact = contact;
// Clear the emails and phoneNumbers form arrays // Clear the emails and phoneNumbers form arrays
(this.contactForm.get('emails') as FormArray).clear(); (this.contactForm.get('emails') as UntypedFormArray).clear();
(this.contactForm.get('phoneNumbers') as FormArray).clear(); (this.contactForm.get('phoneNumbers') as UntypedFormArray).clear();
// Patch values to the form // Patch values to the form
this.contactForm.patchValue(contact); this.contactForm.patchValue(contact);
@ -136,7 +136,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
// Add the email form groups to the emails form array // Add the email form groups to the emails form array
emailFormGroups.forEach((emailFormGroup) => { emailFormGroups.forEach((emailFormGroup) => {
(this.contactForm.get('emails') as FormArray).push(emailFormGroup); (this.contactForm.get('emails') as UntypedFormArray).push(emailFormGroup);
}); });
// Setup the phone numbers form array // Setup the phone numbers form array
@ -171,7 +171,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
// Add the phone numbers form groups to the phone numbers form array // Add the phone numbers form groups to the phone numbers form array
phoneNumbersFormGroups.forEach((phoneNumbersFormGroup) => { phoneNumbersFormGroups.forEach((phoneNumbersFormGroup) => {
(this.contactForm.get('phoneNumbers') as FormArray).push(phoneNumbersFormGroup); (this.contactForm.get('phoneNumbers') as UntypedFormArray).push(phoneNumbersFormGroup);
}); });
// Toggle the edit mode off // Toggle the edit mode off
@ -639,7 +639,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
}); });
// Add the email form group to the emails form array // Add the email form group to the emails form array
(this.contactForm.get('emails') as FormArray).push(emailFormGroup); (this.contactForm.get('emails') as UntypedFormArray).push(emailFormGroup);
// Mark for check // Mark for check
this._changeDetectorRef.markForCheck(); this._changeDetectorRef.markForCheck();
@ -653,7 +653,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
removeEmailField(index: number): void removeEmailField(index: number): void
{ {
// Get form array for emails // Get form array for emails
const emailsFormArray = this.contactForm.get('emails') as FormArray; const emailsFormArray = this.contactForm.get('emails') as UntypedFormArray;
// Remove the email field // Remove the email field
emailsFormArray.removeAt(index); emailsFormArray.removeAt(index);
@ -675,7 +675,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
}); });
// Add the phone number form group to the phoneNumbers form array // Add the phone number form group to the phoneNumbers form array
(this.contactForm.get('phoneNumbers') as FormArray).push(phoneNumberFormGroup); (this.contactForm.get('phoneNumbers') as UntypedFormArray).push(phoneNumberFormGroup);
// Mark for check // Mark for check
this._changeDetectorRef.markForCheck(); this._changeDetectorRef.markForCheck();
@ -689,7 +689,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
removePhoneNumberField(index: number): void removePhoneNumberField(index: number): void
{ {
// Get form array for phone numbers // Get form array for phone numbers
const phoneNumbersFormArray = this.contactForm.get('phoneNumbers') as FormArray; const phoneNumbersFormArray = this.contactForm.get('phoneNumbers') as UntypedFormArray;
// Remove the phone number field // Remove the phone number field
phoneNumbersFormArray.removeAt(index); phoneNumbersFormArray.removeAt(index);

View File

@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Inject, OnDestroy, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Inject, OnDestroy, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { DOCUMENT } from '@angular/common'; import { DOCUMENT } from '@angular/common';
import { ActivatedRoute, Router } from '@angular/router'; import { ActivatedRoute, Router } from '@angular/router';
import { FormControl } from '@angular/forms'; import { UntypedFormControl } from '@angular/forms';
import { MatDrawer } from '@angular/material/sidenav'; import { MatDrawer } from '@angular/material/sidenav';
import { filter, fromEvent, Observable, Subject, switchMap, takeUntil } from 'rxjs'; import { filter, fromEvent, Observable, Subject, switchMap, takeUntil } from 'rxjs';
import { FuseMediaWatcherService } from '@fuse/services/media-watcher'; import { FuseMediaWatcherService } from '@fuse/services/media-watcher';
@ -24,7 +24,7 @@ export class ContactsListComponent implements OnInit, OnDestroy
contactsTableColumns: string[] = ['name', 'email', 'phoneNumber', 'job']; contactsTableColumns: string[] = ['name', 'email', 'phoneNumber', 'job'];
countries: Country[]; countries: Country[];
drawerMode: 'side' | 'over'; drawerMode: 'side' | 'over';
searchInputControl: FormControl = new FormControl(); searchInputControl: UntypedFormControl = new UntypedFormControl();
selectedContact: Contact; selectedContact: Contact;
private _unsubscribeAll: Subject<any> = new Subject<any>(); private _unsubscribeAll: Subject<any> = new Subject<any>();

View File

@ -1,5 +1,5 @@
import { AfterViewInit, ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { AfterViewInit, ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormControl, UntypedFormGroup, Validators } from '@angular/forms';
import { MatCheckboxChange } from '@angular/material/checkbox'; import { MatCheckboxChange } from '@angular/material/checkbox';
import { MatPaginator } from '@angular/material/paginator'; import { MatPaginator } from '@angular/material/paginator';
import { MatSort } from '@angular/material/sort'; import { MatSort } from '@angular/material/sort';
@ -49,9 +49,9 @@ export class InventoryListComponent implements OnInit, AfterViewInit, OnDestroy
flashMessage: 'success' | 'error' | null = null; flashMessage: 'success' | 'error' | null = null;
isLoading: boolean = false; isLoading: boolean = false;
pagination: InventoryPagination; pagination: InventoryPagination;
searchInputControl: FormControl = new FormControl(); searchInputControl: UntypedFormControl = new UntypedFormControl();
selectedProduct: InventoryProduct | null = null; selectedProduct: InventoryProduct | null = null;
selectedProductForm: FormGroup; selectedProductForm: UntypedFormGroup;
tags: InventoryTag[]; tags: InventoryTag[];
tagsEditMode: boolean = false; tagsEditMode: boolean = false;
vendors: InventoryVendor[]; vendors: InventoryVendor[];
@ -63,7 +63,7 @@ export class InventoryListComponent implements OnInit, AfterViewInit, OnDestroy
constructor( constructor(
private _changeDetectorRef: ChangeDetectorRef, private _changeDetectorRef: ChangeDetectorRef,
private _fuseConfirmationService: FuseConfirmationService, private _fuseConfirmationService: FuseConfirmationService,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _inventoryService: InventoryService private _inventoryService: InventoryService
) )
{ {

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { HelpCenterService } from 'app/modules/admin/apps/help-center/help-center.service'; import { HelpCenterService } from 'app/modules/admin/apps/help-center/help-center.service';
@ -14,13 +14,13 @@ export class HelpCenterSupportComponent implements OnInit
@ViewChild('supportNgForm') supportNgForm: NgForm; @ViewChild('supportNgForm') supportNgForm: NgForm;
alert: any; alert: any;
supportForm: FormGroup; supportForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _helpCenterService: HelpCenterService private _helpCenterService: HelpCenterService
) )
{ {

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { MatDialogRef } from '@angular/material/dialog'; import { MatDialogRef } from '@angular/material/dialog';
@Component({ @Component({
@ -9,7 +9,7 @@ import { MatDialogRef } from '@angular/material/dialog';
}) })
export class MailboxComposeComponent implements OnInit export class MailboxComposeComponent implements OnInit
{ {
composeForm: FormGroup; composeForm: UntypedFormGroup;
copyFields: { cc: boolean; bcc: boolean } = { copyFields: { cc: boolean; bcc: boolean } = {
cc : false, cc : false,
bcc: false bcc: false
@ -27,7 +27,7 @@ export class MailboxComposeComponent implements OnInit
*/ */
constructor( constructor(
public matDialogRef: MatDialogRef<MailboxComposeComponent>, public matDialogRef: MatDialogRef<MailboxComposeComponent>,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormArray, FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormArray, UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { debounceTime, take } from 'rxjs'; import { debounceTime, take } from 'rxjs';
import { MailboxComponent } from 'app/modules/admin/apps/mailbox/mailbox.component'; import { MailboxComponent } from 'app/modules/admin/apps/mailbox/mailbox.component';
import { MailboxService } from 'app/modules/admin/apps/mailbox/mailbox.service'; import { MailboxService } from 'app/modules/admin/apps/mailbox/mailbox.service';
@ -16,14 +16,14 @@ export class MailboxSettingsComponent implements OnInit
labelColors: any = labelColors; labelColors: any = labelColors;
labelColorDefs: any = labelColorDefs; labelColorDefs: any = labelColorDefs;
labels: MailLabel[]; labels: MailLabel[];
labelsForm: FormGroup; labelsForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
public mailboxComponent: MailboxComponent, public mailboxComponent: MailboxComponent,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _mailboxService: MailboxService private _mailboxService: MailboxService
) )
{ {
@ -67,7 +67,7 @@ export class MailboxSettingsComponent implements OnInit
}); });
// Add the label form group to the labels form array // Add the label form group to the labels form array
(this.labelsForm.get('labels') as FormArray).push(labelFormGroup); (this.labelsForm.get('labels') as UntypedFormArray).push(labelFormGroup);
}); });
}); });
@ -92,7 +92,7 @@ export class MailboxSettingsComponent implements OnInit
this._mailboxService.addLabel(this.labelsForm.get('newLabel').value).subscribe((addedLabel) => { this._mailboxService.addLabel(this.labelsForm.get('newLabel').value).subscribe((addedLabel) => {
// Push the new label to the labels form array // Push the new label to the labels form array
(this.labelsForm.get('labels') as FormArray).push(this._formBuilder.group({ (this.labelsForm.get('labels') as UntypedFormArray).push(this._formBuilder.group({
id : [addedLabel.id], id : [addedLabel.id],
title: [addedLabel.title, Validators.required], title: [addedLabel.title, Validators.required],
slug : [addedLabel.slug], slug : [addedLabel.slug],
@ -114,7 +114,7 @@ export class MailboxSettingsComponent implements OnInit
deleteLabel(id: string): void deleteLabel(id: string): void
{ {
// Get the labels form array // Get the labels form array
const labelsFormArray = this.labelsForm.get('labels') as FormArray; const labelsFormArray = this.labelsForm.get('labels') as UntypedFormArray;
// Remove the label from the labels form array // Remove the label from the labels form array
labelsFormArray.removeAt(labelsFormArray.value.findIndex(label => label.id === id)); labelsFormArray.removeAt(labelsFormArray.value.findIndex(label => label.id === id));
@ -129,7 +129,7 @@ export class MailboxSettingsComponent implements OnInit
updateLabels(): void updateLabels(): void
{ {
// Iterate through the labels form array controls // Iterate through the labels form array controls
(this.labelsForm.get('labels') as FormArray).controls.forEach((labelFormGroup) => { (this.labelsForm.get('labels') as UntypedFormArray).controls.forEach((labelFormGroup) => {
// If the label has been edited... // If the label has been edited...
if ( labelFormGroup.dirty ) if ( labelFormGroup.dirty )

View File

@ -1,6 +1,6 @@
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild, ViewEncapsulation } from '@angular/core';
import { CdkTextareaAutosize } from '@angular/cdk/text-field'; import { CdkTextareaAutosize } from '@angular/cdk/text-field';
import { FormBuilder, FormGroup } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
@Component({ @Component({
selector : 'scrumboard-board-add-card', selector : 'scrumboard-board-add-card',
@ -15,7 +15,7 @@ export class ScrumboardBoardAddCardComponent implements OnInit
@Input() buttonTitle: string = 'Add a card'; @Input() buttonTitle: string = 'Add a card';
@Output() readonly saved: EventEmitter<string> = new EventEmitter<string>(); @Output() readonly saved: EventEmitter<string> = new EventEmitter<string>();
form: FormGroup; form: UntypedFormGroup;
formVisible: boolean = false; formVisible: boolean = false;
/** /**
@ -23,7 +23,7 @@ export class ScrumboardBoardAddCardComponent implements OnInit
*/ */
constructor( constructor(
private _changeDetectorRef: ChangeDetectorRef, private _changeDetectorRef: ChangeDetectorRef,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
@Component({ @Component({
selector : 'scrumboard-board-add-list', selector : 'scrumboard-board-add-list',
@ -13,7 +13,7 @@ export class ScrumboardBoardAddListComponent implements OnInit
@Input() buttonTitle: string = 'Add a list'; @Input() buttonTitle: string = 'Add a list';
@Output() readonly saved: EventEmitter<string> = new EventEmitter<string>(); @Output() readonly saved: EventEmitter<string> = new EventEmitter<string>();
form: FormGroup; form: UntypedFormGroup;
formVisible: boolean = false; formVisible: boolean = false;
/** /**
@ -21,7 +21,7 @@ export class ScrumboardBoardAddListComponent implements OnInit
*/ */
constructor( constructor(
private _changeDetectorRef: ChangeDetectorRef, private _changeDetectorRef: ChangeDetectorRef,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy, OnInit, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
import { CdkDragDrop, moveItemInArray, transferArrayItem } from '@angular/cdk/drag-drop'; import { CdkDragDrop, moveItemInArray, transferArrayItem } from '@angular/cdk/drag-drop';
import { Subject, takeUntil } from 'rxjs'; import { Subject, takeUntil } from 'rxjs';
import * as moment from 'moment'; import * as moment from 'moment';
@ -17,7 +17,7 @@ import { Board, Card, List } from 'app/modules/admin/apps/scrumboard/scrumboard.
export class ScrumboardBoardComponent implements OnInit, OnDestroy export class ScrumboardBoardComponent implements OnInit, OnDestroy
{ {
board: Board; board: Board;
listTitleForm: FormGroup; listTitleForm: UntypedFormGroup;
// Private // Private
private readonly _positionStep: number = 65536; private readonly _positionStep: number = 65536;
@ -30,7 +30,7 @@ export class ScrumboardBoardComponent implements OnInit, OnDestroy
*/ */
constructor( constructor(
private _changeDetectorRef: ChangeDetectorRef, private _changeDetectorRef: ChangeDetectorRef,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _fuseConfirmationService: FuseConfirmationService, private _fuseConfirmationService: FuseConfirmationService,
private _scrumboardService: ScrumboardService private _scrumboardService: ScrumboardService
) )

View File

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { MatCheckboxChange } from '@angular/material/checkbox'; import { MatCheckboxChange } from '@angular/material/checkbox';
import { MatDialogRef } from '@angular/material/dialog'; import { MatDialogRef } from '@angular/material/dialog';
import { debounceTime, Subject, takeUntil, tap } from 'rxjs'; import { debounceTime, Subject, takeUntil, tap } from 'rxjs';
@ -19,7 +19,7 @@ export class ScrumboardCardDetailsComponent implements OnInit, OnDestroy
@ViewChild('labelInput') labelInput: ElementRef<HTMLInputElement>; @ViewChild('labelInput') labelInput: ElementRef<HTMLInputElement>;
board: Board; board: Board;
card: Card; card: Card;
cardForm: FormGroup; cardForm: UntypedFormGroup;
labels: Label[]; labels: Label[];
filteredLabels: Label[]; filteredLabels: Label[];
@ -32,7 +32,7 @@ export class ScrumboardCardDetailsComponent implements OnInit, OnDestroy
constructor( constructor(
public matDialogRef: MatDialogRef<ScrumboardCardDetailsComponent>, public matDialogRef: MatDialogRef<ScrumboardCardDetailsComponent>,
private _changeDetectorRef: ChangeDetectorRef, private _changeDetectorRef: ChangeDetectorRef,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _scrumboardService: ScrumboardService private _scrumboardService: ScrumboardService
) )
{ {

View File

@ -1,6 +1,6 @@
import { AfterViewInit, ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef, ViewChild, ViewContainerRef, ViewEncapsulation } from '@angular/core'; import { AfterViewInit, ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef, ViewChild, ViewContainerRef, ViewEncapsulation } from '@angular/core';
import { ActivatedRoute, NavigationEnd, Router } from '@angular/router'; import { ActivatedRoute, NavigationEnd, Router } from '@angular/router';
import { FormBuilder, FormGroup } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
import { TemplatePortal } from '@angular/cdk/portal'; import { TemplatePortal } from '@angular/cdk/portal';
import { Overlay, OverlayRef } from '@angular/cdk/overlay'; import { Overlay, OverlayRef } from '@angular/cdk/overlay';
import { MatDrawerToggleResult } from '@angular/material/sidenav'; import { MatDrawerToggleResult } from '@angular/material/sidenav';
@ -28,7 +28,7 @@ export class TasksDetailsComponent implements OnInit, AfterViewInit, OnDestroy
tagsEditMode: boolean = false; tagsEditMode: boolean = false;
filteredTags: Tag[]; filteredTags: Tag[];
task: Task; task: Task;
taskForm: FormGroup; taskForm: UntypedFormGroup;
tasks: Task[]; tasks: Task[];
private _tagsPanelOverlayRef: OverlayRef; private _tagsPanelOverlayRef: OverlayRef;
private _unsubscribeAll: Subject<any> = new Subject<any>(); private _unsubscribeAll: Subject<any> = new Subject<any>();
@ -39,7 +39,7 @@ export class TasksDetailsComponent implements OnInit, AfterViewInit, OnDestroy
constructor( constructor(
private _activatedRoute: ActivatedRoute, private _activatedRoute: ActivatedRoute,
private _changeDetectorRef: ChangeDetectorRef, private _changeDetectorRef: ChangeDetectorRef,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _fuseConfirmationService: FuseConfirmationService, private _fuseConfirmationService: FuseConfirmationService,
private _renderer2: Renderer2, private _renderer2: Renderer2,
private _router: Router, private _router: Router,

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -15,14 +15,14 @@ export class ForgotPasswordClassicComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
forgotPasswordForm: FormGroup; forgotPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -15,14 +15,14 @@ export class ForgotPasswordFullscreenReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
forgotPasswordForm: FormGroup; forgotPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -15,14 +15,14 @@ export class ForgotPasswordFullscreenComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
forgotPasswordForm: FormGroup; forgotPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -15,14 +15,14 @@ export class ForgotPasswordModernReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
forgotPasswordForm: FormGroup; forgotPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -15,14 +15,14 @@ export class ForgotPasswordModernComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
forgotPasswordForm: FormGroup; forgotPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -15,14 +15,14 @@ export class ForgotPasswordSplitScreenReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
forgotPasswordForm: FormGroup; forgotPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -15,14 +15,14 @@ export class ForgotPasswordSplitScreenComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
forgotPasswordForm: FormGroup; forgotPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { FuseValidators } from '@fuse/validators'; import { FuseValidators } from '@fuse/validators';
@ -16,14 +16,14 @@ export class ResetPasswordClassicComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
resetPasswordForm: FormGroup; resetPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { FuseValidators } from '@fuse/validators'; import { FuseValidators } from '@fuse/validators';
@ -16,14 +16,14 @@ export class ResetPasswordFullscreenReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
resetPasswordForm: FormGroup; resetPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { FuseValidators } from '@fuse/validators'; import { FuseValidators } from '@fuse/validators';
@ -16,14 +16,14 @@ export class ResetPasswordFullscreenComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
resetPasswordForm: FormGroup; resetPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { FuseValidators } from '@fuse/validators'; import { FuseValidators } from '@fuse/validators';
@ -16,14 +16,14 @@ export class ResetPasswordModernReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
resetPasswordForm: FormGroup; resetPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { FuseValidators } from '@fuse/validators'; import { FuseValidators } from '@fuse/validators';
@ -16,14 +16,14 @@ export class ResetPasswordModernComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
resetPasswordForm: FormGroup; resetPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { FuseValidators } from '@fuse/validators'; import { FuseValidators } from '@fuse/validators';
@ -16,14 +16,14 @@ export class ResetPasswordSplitScreenReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
resetPasswordForm: FormGroup; resetPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { FuseValidators } from '@fuse/validators'; import { FuseValidators } from '@fuse/validators';
@ -16,14 +16,14 @@ export class ResetPasswordSplitScreenComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
resetPasswordForm: FormGroup; resetPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -16,7 +16,7 @@ export class SignInClassicComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signInForm: FormGroup; signInForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -24,7 +24,7 @@ export class SignInClassicComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -16,7 +16,7 @@ export class SignInFullscreenReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signInForm: FormGroup; signInForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -24,7 +24,7 @@ export class SignInFullscreenReversedComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -16,7 +16,7 @@ export class SignInFullscreenComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signInForm: FormGroup; signInForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -24,7 +24,7 @@ export class SignInFullscreenComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -16,7 +16,7 @@ export class SignInModernReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signInForm: FormGroup; signInForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -24,7 +24,7 @@ export class SignInModernReversedComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -16,7 +16,7 @@ export class SignInModernComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signInForm: FormGroup; signInForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -24,7 +24,7 @@ export class SignInModernComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -16,7 +16,7 @@ export class SignInSplitScreenReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signInForm: FormGroup; signInForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -24,7 +24,7 @@ export class SignInSplitScreenReversedComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -16,7 +16,7 @@ export class SignInSplitScreenComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signInForm: FormGroup; signInForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -24,7 +24,7 @@ export class SignInSplitScreenComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class SignUpClassicComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signUpForm: FormGroup; signUpForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class SignUpClassicComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class SignUpFullscreenReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signUpForm: FormGroup; signUpForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class SignUpFullscreenReversedComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class SignUpFullscreenComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signUpForm: FormGroup; signUpForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class SignUpFullscreenComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class SignUpModernReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signUpForm: FormGroup; signUpForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class SignUpModernReversedComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class SignUpModernComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signUpForm: FormGroup; signUpForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class SignUpModernComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class SignUpSplitScreenReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signUpForm: FormGroup; signUpForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class SignUpSplitScreenReversedComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class SignUpSplitScreenComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signUpForm: FormGroup; signUpForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class SignUpSplitScreenComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -19,13 +19,13 @@ export class UnlockSessionClassicComponent implements OnInit
}; };
name: string = 'Brian Hughes'; name: string = 'Brian Hughes';
showAlert: boolean = false; showAlert: boolean = false;
unlockSessionForm: FormGroup; unlockSessionForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -19,13 +19,13 @@ export class UnlockSessionFullscreenReversedComponent implements OnInit
}; };
name: string = 'Brian Hughes'; name: string = 'Brian Hughes';
showAlert: boolean = false; showAlert: boolean = false;
unlockSessionForm: FormGroup; unlockSessionForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -19,13 +19,13 @@ export class UnlockSessionFullscreenComponent implements OnInit
}; };
name: string = 'Brian Hughes'; name: string = 'Brian Hughes';
showAlert: boolean = false; showAlert: boolean = false;
unlockSessionForm: FormGroup; unlockSessionForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -19,13 +19,13 @@ export class UnlockSessionModernReversedComponent implements OnInit
}; };
name: string = 'Brian Hughes'; name: string = 'Brian Hughes';
showAlert: boolean = false; showAlert: boolean = false;
unlockSessionForm: FormGroup; unlockSessionForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -19,13 +19,13 @@ export class UnlockSessionModernComponent implements OnInit
}; };
name: string = 'Brian Hughes'; name: string = 'Brian Hughes';
showAlert: boolean = false; showAlert: boolean = false;
unlockSessionForm: FormGroup; unlockSessionForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -19,13 +19,13 @@ export class UnlockSessionSplitScreenReversedComponent implements OnInit
}; };
name: string = 'Brian Hughes'; name: string = 'Brian Hughes';
showAlert: boolean = false; showAlert: boolean = false;
unlockSessionForm: FormGroup; unlockSessionForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -19,13 +19,13 @@ export class UnlockSessionSplitScreenComponent implements OnInit
}; };
name: string = 'Brian Hughes'; name: string = 'Brian Hughes';
showAlert: boolean = false; showAlert: boolean = false;
unlockSessionForm: FormGroup; unlockSessionForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class ComingSoonClassicComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
comingSoonForm: FormGroup; comingSoonForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class ComingSoonClassicComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class ComingSoonFullscreenReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
comingSoonForm: FormGroup; comingSoonForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class ComingSoonFullscreenReversedComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class ComingSoonFullscreenComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
comingSoonForm: FormGroup; comingSoonForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class ComingSoonFullscreenComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class ComingSoonModernReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
comingSoonForm: FormGroup; comingSoonForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class ComingSoonModernReversedComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class ComingSoonModernComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
comingSoonForm: FormGroup; comingSoonForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class ComingSoonModernComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class ComingSoonSplitScreenReversedComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
comingSoonForm: FormGroup; comingSoonForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class ComingSoonSplitScreenReversedComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -18,7 +18,7 @@ export class ComingSoonSplitScreenComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
comingSoonForm: FormGroup; comingSoonForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -26,7 +26,7 @@ export class ComingSoonSplitScreenComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
@Component({ @Component({
selector : 'settings-account', selector : 'settings-account',
@ -9,13 +9,13 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms';
}) })
export class SettingsAccountComponent implements OnInit export class SettingsAccountComponent implements OnInit
{ {
accountForm: FormGroup; accountForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
@Component({ @Component({
selector : 'settings-notifications', selector : 'settings-notifications',
@ -9,13 +9,13 @@ import { FormBuilder, FormGroup } from '@angular/forms';
}) })
export class SettingsNotificationsComponent implements OnInit export class SettingsNotificationsComponent implements OnInit
{ {
notificationsForm: FormGroup; notificationsForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
@Component({ @Component({
selector : 'settings-plan-billing', selector : 'settings-plan-billing',
@ -9,14 +9,14 @@ import { FormBuilder, FormGroup } from '@angular/forms';
}) })
export class SettingsPlanBillingComponent implements OnInit export class SettingsPlanBillingComponent implements OnInit
{ {
planBillingForm: FormGroup; planBillingForm: UntypedFormGroup;
plans: any[]; plans: any[];
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
@Component({ @Component({
selector : 'settings-security', selector : 'settings-security',
@ -9,13 +9,13 @@ import { FormBuilder, FormGroup } from '@angular/forms';
}) })
export class SettingsSecurityComponent implements OnInit export class SettingsSecurityComponent implements OnInit
{ {
securityForm: FormGroup; securityForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, Component, OnDestroy, OnInit, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, Component, OnDestroy, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
import { ActivatedRoute, Params, Router } from '@angular/router'; import { ActivatedRoute, Params, Router } from '@angular/router';
import { coerceBooleanProperty } from '@angular/cdk/coercion'; import { coerceBooleanProperty } from '@angular/cdk/coercion';
import { Subject, takeUntil } from 'rxjs'; import { Subject, takeUntil } from 'rxjs';
@ -12,7 +12,7 @@ import { Subject, takeUntil } from 'rxjs';
}) })
export class AdvancedSearchComponent implements OnInit, OnDestroy export class AdvancedSearchComponent implements OnInit, OnDestroy
{ {
searchForm: FormGroup; searchForm: UntypedFormGroup;
searchFormDefaults: any = { searchFormDefaults: any = {
keywords : '', keywords : '',
type : 'any', type : 'any',
@ -28,7 +28,7 @@ export class AdvancedSearchComponent implements OnInit, OnDestroy
*/ */
constructor( constructor(
private _activatedRoute: ActivatedRoute, private _activatedRoute: ActivatedRoute,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _router: Router private _router: Router
) )
{ {

View File

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core'; import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
import { FuseConfirmationService } from '@fuse/services/confirmation'; import { FuseConfirmationService } from '@fuse/services/confirmation';
@Component({ @Component({
@ -10,13 +10,13 @@ import { FuseConfirmationService } from '@fuse/services/confirmation';
}) })
export class ConfirmationDialogComponent implements OnInit export class ConfirmationDialogComponent implements OnInit
{ {
configForm: FormGroup; configForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor( constructor(
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _fuseConfirmationService: FuseConfirmationService private _fuseConfirmationService: FuseConfirmationService
) )
{ {

View File

@ -1,5 +1,5 @@
import { Component, ViewEncapsulation } from '@angular/core'; import { Component, ViewEncapsulation } from '@angular/core';
import { FormBuilder } from '@angular/forms'; import { UntypedFormBuilder } from '@angular/forms';
@Component({ @Component({
selector : 'forms-fields', selector : 'forms-fields',
@ -13,7 +13,7 @@ export class FormsFieldsComponent
/** /**
* Constructor * Constructor
*/ */
constructor(private _formBuilder: FormBuilder) constructor(private _formBuilder: UntypedFormBuilder)
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
@Component({ @Component({
selector : 'forms-wizards', selector : 'forms-wizards',
@ -8,13 +8,13 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms';
}) })
export class FormsWizardsComponent implements OnInit export class FormsWizardsComponent implements OnInit
{ {
horizontalStepperForm: FormGroup; horizontalStepperForm: UntypedFormGroup;
verticalStepperForm: FormGroup; verticalStepperForm: UntypedFormGroup;
/** /**
* Constructor * Constructor
*/ */
constructor(private _formBuilder: FormBuilder) constructor(private _formBuilder: UntypedFormBuilder)
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { finalize } from 'rxjs'; import { finalize } from 'rxjs';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -19,7 +19,7 @@ export class AuthForgotPasswordComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
forgotPasswordForm: FormGroup; forgotPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -27,7 +27,7 @@ export class AuthForgotPasswordComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { finalize } from 'rxjs'; import { finalize } from 'rxjs';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseValidators } from '@fuse/validators'; import { FuseValidators } from '@fuse/validators';
@ -20,7 +20,7 @@ export class AuthResetPasswordComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
resetPasswordForm: FormGroup; resetPasswordForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -28,7 +28,7 @@ export class AuthResetPasswordComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder private _formBuilder: UntypedFormBuilder
) )
{ {
} }

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { ActivatedRoute, Router } from '@angular/router'; import { ActivatedRoute, Router } from '@angular/router';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -19,7 +19,7 @@ export class AuthSignInComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signInForm: FormGroup; signInForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -28,7 +28,7 @@ export class AuthSignInComponent implements OnInit
constructor( constructor(
private _activatedRoute: ActivatedRoute, private _activatedRoute: ActivatedRoute,
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _router: Router private _router: Router
) )
{ {

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { Router } from '@angular/router'; import { Router } from '@angular/router';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { FuseAlertType } from '@fuse/components/alert'; import { FuseAlertType } from '@fuse/components/alert';
@ -19,7 +19,7 @@ export class AuthSignUpComponent implements OnInit
type : 'success', type : 'success',
message: '' message: ''
}; };
signUpForm: FormGroup; signUpForm: UntypedFormGroup;
showAlert: boolean = false; showAlert: boolean = false;
/** /**
@ -27,7 +27,7 @@ export class AuthSignUpComponent implements OnInit
*/ */
constructor( constructor(
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _router: Router private _router: Router
) )
{ {

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core'; import { Component, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
import { FormBuilder, FormGroup, NgForm, Validators } from '@angular/forms'; import { UntypedFormBuilder, UntypedFormGroup, NgForm, Validators } from '@angular/forms';
import { ActivatedRoute, Router } from '@angular/router'; import { ActivatedRoute, Router } from '@angular/router';
import { fuseAnimations } from '@fuse/animations'; import { fuseAnimations } from '@fuse/animations';
import { AuthService } from 'app/core/auth/auth.service'; import { AuthService } from 'app/core/auth/auth.service';
@ -22,7 +22,7 @@ export class AuthUnlockSessionComponent implements OnInit
}; };
name: string; name: string;
showAlert: boolean = false; showAlert: boolean = false;
unlockSessionForm: FormGroup; unlockSessionForm: UntypedFormGroup;
private _email: string; private _email: string;
/** /**
@ -31,7 +31,7 @@ export class AuthUnlockSessionComponent implements OnInit
constructor( constructor(
private _activatedRoute: ActivatedRoute, private _activatedRoute: ActivatedRoute,
private _authService: AuthService, private _authService: AuthService,
private _formBuilder: FormBuilder, private _formBuilder: UntypedFormBuilder,
private _router: Router, private _router: Router,
private _userService: UserService private _userService: UserService
) )