mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2024-10-30 01:08:47 +00:00
Migrated to Angular to 14.rc-2
This commit is contained in:
parent
d033470851
commit
20a03c3689
50730
package-lock.json
generated
50730
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
|
@ -14,17 +14,17 @@
|
|||
"lint": "ng lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"@angular/animations": "14.0.0-rc.0",
|
||||
"@angular/animations": "14.0.0-rc.2",
|
||||
"@angular/cdk": "14.0.0-rc.0",
|
||||
"@angular/common": "14.0.0-rc.0",
|
||||
"@angular/compiler": "14.0.0-rc.0",
|
||||
"@angular/core": "14.0.0-rc.0",
|
||||
"@angular/forms": "14.0.0-rc.0",
|
||||
"@angular/common": "14.0.0-rc.2",
|
||||
"@angular/compiler": "14.0.0-rc.2",
|
||||
"@angular/core": "14.0.0-rc.2",
|
||||
"@angular/forms": "14.0.0-rc.2",
|
||||
"@angular/material": "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-dynamic": "14.0.0-rc.0",
|
||||
"@angular/router": "14.0.0-rc.0",
|
||||
"@angular/platform-browser": "14.0.0-rc.2",
|
||||
"@angular/platform-browser-dynamic": "14.0.0-rc.2",
|
||||
"@angular/router": "14.0.0-rc.2",
|
||||
"@ngneat/transloco": "4.0.0",
|
||||
"apexcharts": "3.35.2",
|
||||
"crypto-js": "3.3.0",
|
||||
|
@ -41,14 +41,14 @@
|
|||
"zone.js": "0.11.5"
|
||||
},
|
||||
"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/eslint-plugin": "13.2.1",
|
||||
"@angular-eslint/eslint-plugin-template": "13.2.1",
|
||||
"@angular-eslint/schematics": "13.2.1",
|
||||
"@angular-eslint/template-parser": "13.2.1",
|
||||
"@angular/cli": "14.0.0-rc.0",
|
||||
"@angular/compiler-cli": "14.0.0-rc.0",
|
||||
"@angular/cli": "14.0.0-rc.2",
|
||||
"@angular/compiler-cli": "14.0.0-rc.2",
|
||||
"@tailwindcss/aspect-ratio": "0.4.0",
|
||||
"@tailwindcss/line-clamp": "0.4.0",
|
||||
"@tailwindcss/typography": "0.5.2",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { MatAutocomplete } from '@angular/material/autocomplete';
|
||||
import { debounceTime, filter, map, Subject, takeUntil } from 'rxjs';
|
||||
|
@ -21,7 +21,7 @@ export class SearchComponent implements OnChanges, OnInit, OnDestroy
|
|||
|
||||
opened: boolean = false;
|
||||
resultSets: any[];
|
||||
searchControl: FormControl = new FormControl();
|
||||
searchControl: UntypedFormControl = new UntypedFormControl();
|
||||
private _matAutocomplete: MatAutocomplete;
|
||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { TemplatePortal } from '@angular/cdk/portal';
|
||||
import { MatButton } from '@angular/material/button';
|
||||
|
@ -20,7 +20,7 @@ export class ShortcutsComponent implements OnInit, OnDestroy
|
|||
@ViewChild('shortcutsPanel') private _shortcutsPanel: TemplateRef<any>;
|
||||
|
||||
mode: 'view' | 'modify' | 'add' | 'edit' = 'view';
|
||||
shortcutForm: FormGroup;
|
||||
shortcutForm: UntypedFormGroup;
|
||||
shortcuts: Shortcut[];
|
||||
private _overlayRef: OverlayRef;
|
||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||
|
@ -30,7 +30,7 @@ export class ShortcutsComponent implements OnInit, OnDestroy
|
|||
*/
|
||||
constructor(
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _shortcutsService: ShortcutsService,
|
||||
private _overlay: Overlay,
|
||||
private _viewContainerRef: ViewContainerRef
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef, ViewChild, ViewContainerRef, ViewEncapsulation } from '@angular/core';
|
||||
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 { Overlay, OverlayRef } from '@angular/cdk/overlay';
|
||||
import { MatDrawerToggleResult } from '@angular/material/sidenav';
|
||||
|
@ -27,7 +27,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
|
|||
tagsEditMode: boolean = false;
|
||||
filteredTags: Tag[];
|
||||
contact: Contact;
|
||||
contactForm: FormGroup;
|
||||
contactForm: UntypedFormGroup;
|
||||
contacts: Contact[];
|
||||
countries: Country[];
|
||||
private _tagsPanelOverlayRef: OverlayRef;
|
||||
|
@ -41,7 +41,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
|
|||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _contactsListComponent: ContactsListComponent,
|
||||
private _contactsService: ContactsService,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _fuseConfirmationService: FuseConfirmationService,
|
||||
private _renderer2: Renderer2,
|
||||
private _router: Router,
|
||||
|
@ -100,8 +100,8 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
|
|||
this.contact = contact;
|
||||
|
||||
// Clear the emails and phoneNumbers form arrays
|
||||
(this.contactForm.get('emails') as FormArray).clear();
|
||||
(this.contactForm.get('phoneNumbers') as FormArray).clear();
|
||||
(this.contactForm.get('emails') as UntypedFormArray).clear();
|
||||
(this.contactForm.get('phoneNumbers') as UntypedFormArray).clear();
|
||||
|
||||
// Patch values to the form
|
||||
this.contactForm.patchValue(contact);
|
||||
|
@ -136,7 +136,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
|
|||
|
||||
// Add the email form groups to the emails form array
|
||||
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
|
||||
|
@ -171,7 +171,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
|
|||
|
||||
// Add the phone numbers form groups to the phone numbers form array
|
||||
phoneNumbersFormGroups.forEach((phoneNumbersFormGroup) => {
|
||||
(this.contactForm.get('phoneNumbers') as FormArray).push(phoneNumbersFormGroup);
|
||||
(this.contactForm.get('phoneNumbers') as UntypedFormArray).push(phoneNumbersFormGroup);
|
||||
});
|
||||
|
||||
// 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
|
||||
(this.contactForm.get('emails') as FormArray).push(emailFormGroup);
|
||||
(this.contactForm.get('emails') as UntypedFormArray).push(emailFormGroup);
|
||||
|
||||
// Mark for check
|
||||
this._changeDetectorRef.markForCheck();
|
||||
|
@ -653,7 +653,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
|
|||
removeEmailField(index: number): void
|
||||
{
|
||||
// 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
|
||||
emailsFormArray.removeAt(index);
|
||||
|
@ -675,7 +675,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
|
|||
});
|
||||
|
||||
// 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
|
||||
this._changeDetectorRef.markForCheck();
|
||||
|
@ -689,7 +689,7 @@ export class ContactsDetailsComponent implements OnInit, OnDestroy
|
|||
removePhoneNumberField(index: number): void
|
||||
{
|
||||
// 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
|
||||
phoneNumbersFormArray.removeAt(index);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Inject, OnDestroy, OnInit, ViewChild, ViewEncapsulation } from '@angular/core';
|
||||
import { DOCUMENT } from '@angular/common';
|
||||
import { ActivatedRoute, Router } from '@angular/router';
|
||||
import { FormControl } from '@angular/forms';
|
||||
import { UntypedFormControl } from '@angular/forms';
|
||||
import { MatDrawer } from '@angular/material/sidenav';
|
||||
import { filter, fromEvent, Observable, Subject, switchMap, takeUntil } from 'rxjs';
|
||||
import { FuseMediaWatcherService } from '@fuse/services/media-watcher';
|
||||
|
@ -24,7 +24,7 @@ export class ContactsListComponent implements OnInit, OnDestroy
|
|||
contactsTableColumns: string[] = ['name', 'email', 'phoneNumber', 'job'];
|
||||
countries: Country[];
|
||||
drawerMode: 'side' | 'over';
|
||||
searchInputControl: FormControl = new FormControl();
|
||||
searchInputControl: UntypedFormControl = new UntypedFormControl();
|
||||
selectedContact: Contact;
|
||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { MatPaginator } from '@angular/material/paginator';
|
||||
import { MatSort } from '@angular/material/sort';
|
||||
|
@ -49,9 +49,9 @@ export class InventoryListComponent implements OnInit, AfterViewInit, OnDestroy
|
|||
flashMessage: 'success' | 'error' | null = null;
|
||||
isLoading: boolean = false;
|
||||
pagination: InventoryPagination;
|
||||
searchInputControl: FormControl = new FormControl();
|
||||
searchInputControl: UntypedFormControl = new UntypedFormControl();
|
||||
selectedProduct: InventoryProduct | null = null;
|
||||
selectedProductForm: FormGroup;
|
||||
selectedProductForm: UntypedFormGroup;
|
||||
tags: InventoryTag[];
|
||||
tagsEditMode: boolean = false;
|
||||
vendors: InventoryVendor[];
|
||||
|
@ -63,7 +63,7 @@ export class InventoryListComponent implements OnInit, AfterViewInit, OnDestroy
|
|||
constructor(
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _fuseConfirmationService: FuseConfirmationService,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _inventoryService: InventoryService
|
||||
)
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { HelpCenterService } from 'app/modules/admin/apps/help-center/help-center.service';
|
||||
|
||||
|
@ -14,13 +14,13 @@ export class HelpCenterSupportComponent implements OnInit
|
|||
@ViewChild('supportNgForm') supportNgForm: NgForm;
|
||||
|
||||
alert: any;
|
||||
supportForm: FormGroup;
|
||||
supportForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _helpCenterService: HelpCenterService
|
||||
)
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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';
|
||||
|
||||
@Component({
|
||||
|
@ -9,7 +9,7 @@ import { MatDialogRef } from '@angular/material/dialog';
|
|||
})
|
||||
export class MailboxComposeComponent implements OnInit
|
||||
{
|
||||
composeForm: FormGroup;
|
||||
composeForm: UntypedFormGroup;
|
||||
copyFields: { cc: boolean; bcc: boolean } = {
|
||||
cc : false,
|
||||
bcc: false
|
||||
|
@ -27,7 +27,7 @@ export class MailboxComposeComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
public matDialogRef: MatDialogRef<MailboxComposeComponent>,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { MailboxComponent } from 'app/modules/admin/apps/mailbox/mailbox.component';
|
||||
import { MailboxService } from 'app/modules/admin/apps/mailbox/mailbox.service';
|
||||
|
@ -16,14 +16,14 @@ export class MailboxSettingsComponent implements OnInit
|
|||
labelColors: any = labelColors;
|
||||
labelColorDefs: any = labelColorDefs;
|
||||
labels: MailLabel[];
|
||||
labelsForm: FormGroup;
|
||||
labelsForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
public mailboxComponent: MailboxComponent,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _mailboxService: MailboxService
|
||||
)
|
||||
{
|
||||
|
@ -67,7 +67,7 @@ export class MailboxSettingsComponent implements OnInit
|
|||
});
|
||||
|
||||
// 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) => {
|
||||
|
||||
// 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],
|
||||
title: [addedLabel.title, Validators.required],
|
||||
slug : [addedLabel.slug],
|
||||
|
@ -114,7 +114,7 @@ export class MailboxSettingsComponent implements OnInit
|
|||
deleteLabel(id: string): void
|
||||
{
|
||||
// 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
|
||||
labelsFormArray.removeAt(labelsFormArray.value.findIndex(label => label.id === id));
|
||||
|
@ -129,7 +129,7 @@ export class MailboxSettingsComponent implements OnInit
|
|||
updateLabels(): void
|
||||
{
|
||||
// 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 ( labelFormGroup.dirty )
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild, ViewEncapsulation } from '@angular/core';
|
||||
import { CdkTextareaAutosize } from '@angular/cdk/text-field';
|
||||
import { FormBuilder, FormGroup } from '@angular/forms';
|
||||
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
||||
|
||||
@Component({
|
||||
selector : 'scrumboard-board-add-card',
|
||||
|
@ -15,7 +15,7 @@ export class ScrumboardBoardAddCardComponent implements OnInit
|
|||
@Input() buttonTitle: string = 'Add a card';
|
||||
@Output() readonly saved: EventEmitter<string> = new EventEmitter<string>();
|
||||
|
||||
form: FormGroup;
|
||||
form: UntypedFormGroup;
|
||||
formVisible: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -23,7 +23,7 @@ export class ScrumboardBoardAddCardComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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({
|
||||
selector : 'scrumboard-board-add-list',
|
||||
|
@ -13,7 +13,7 @@ export class ScrumboardBoardAddListComponent implements OnInit
|
|||
@Input() buttonTitle: string = 'Add a list';
|
||||
@Output() readonly saved: EventEmitter<string> = new EventEmitter<string>();
|
||||
|
||||
form: FormGroup;
|
||||
form: UntypedFormGroup;
|
||||
formVisible: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -21,7 +21,7 @@ export class ScrumboardBoardAddListComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { Subject, takeUntil } from 'rxjs';
|
||||
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
|
||||
{
|
||||
board: Board;
|
||||
listTitleForm: FormGroup;
|
||||
listTitleForm: UntypedFormGroup;
|
||||
|
||||
// Private
|
||||
private readonly _positionStep: number = 65536;
|
||||
|
@ -30,7 +30,7 @@ export class ScrumboardBoardComponent implements OnInit, OnDestroy
|
|||
*/
|
||||
constructor(
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _fuseConfirmationService: FuseConfirmationService,
|
||||
private _scrumboardService: ScrumboardService
|
||||
)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { MatDialogRef } from '@angular/material/dialog';
|
||||
import { debounceTime, Subject, takeUntil, tap } from 'rxjs';
|
||||
|
@ -19,7 +19,7 @@ export class ScrumboardCardDetailsComponent implements OnInit, OnDestroy
|
|||
@ViewChild('labelInput') labelInput: ElementRef<HTMLInputElement>;
|
||||
board: Board;
|
||||
card: Card;
|
||||
cardForm: FormGroup;
|
||||
cardForm: UntypedFormGroup;
|
||||
labels: Label[];
|
||||
filteredLabels: Label[];
|
||||
|
||||
|
@ -32,7 +32,7 @@ export class ScrumboardCardDetailsComponent implements OnInit, OnDestroy
|
|||
constructor(
|
||||
public matDialogRef: MatDialogRef<ScrumboardCardDetailsComponent>,
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _scrumboardService: ScrumboardService
|
||||
)
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import { AfterViewInit, ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, Renderer2, TemplateRef, ViewChild, ViewContainerRef, ViewEncapsulation } from '@angular/core';
|
||||
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 { Overlay, OverlayRef } from '@angular/cdk/overlay';
|
||||
import { MatDrawerToggleResult } from '@angular/material/sidenav';
|
||||
|
@ -28,7 +28,7 @@ export class TasksDetailsComponent implements OnInit, AfterViewInit, OnDestroy
|
|||
tagsEditMode: boolean = false;
|
||||
filteredTags: Tag[];
|
||||
task: Task;
|
||||
taskForm: FormGroup;
|
||||
taskForm: UntypedFormGroup;
|
||||
tasks: Task[];
|
||||
private _tagsPanelOverlayRef: OverlayRef;
|
||||
private _unsubscribeAll: Subject<any> = new Subject<any>();
|
||||
|
@ -39,7 +39,7 @@ export class TasksDetailsComponent implements OnInit, AfterViewInit, OnDestroy
|
|||
constructor(
|
||||
private _activatedRoute: ActivatedRoute,
|
||||
private _changeDetectorRef: ChangeDetectorRef,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _fuseConfirmationService: FuseConfirmationService,
|
||||
private _renderer2: Renderer2,
|
||||
private _router: Router,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -15,14 +15,14 @@ export class ForgotPasswordClassicComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
forgotPasswordForm: FormGroup;
|
||||
forgotPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -15,14 +15,14 @@ export class ForgotPasswordFullscreenReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
forgotPasswordForm: FormGroup;
|
||||
forgotPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -15,14 +15,14 @@ export class ForgotPasswordFullscreenComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
forgotPasswordForm: FormGroup;
|
||||
forgotPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -15,14 +15,14 @@ export class ForgotPasswordModernReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
forgotPasswordForm: FormGroup;
|
||||
forgotPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -15,14 +15,14 @@ export class ForgotPasswordModernComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
forgotPasswordForm: FormGroup;
|
||||
forgotPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -15,14 +15,14 @@ export class ForgotPasswordSplitScreenReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
forgotPasswordForm: FormGroup;
|
||||
forgotPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -15,14 +15,14 @@ export class ForgotPasswordSplitScreenComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
forgotPasswordForm: FormGroup;
|
||||
forgotPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { FuseValidators } from '@fuse/validators';
|
||||
|
@ -16,14 +16,14 @@ export class ResetPasswordClassicComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
resetPasswordForm: FormGroup;
|
||||
resetPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { FuseValidators } from '@fuse/validators';
|
||||
|
@ -16,14 +16,14 @@ export class ResetPasswordFullscreenReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
resetPasswordForm: FormGroup;
|
||||
resetPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { FuseValidators } from '@fuse/validators';
|
||||
|
@ -16,14 +16,14 @@ export class ResetPasswordFullscreenComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
resetPasswordForm: FormGroup;
|
||||
resetPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { FuseValidators } from '@fuse/validators';
|
||||
|
@ -16,14 +16,14 @@ export class ResetPasswordModernReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
resetPasswordForm: FormGroup;
|
||||
resetPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { FuseValidators } from '@fuse/validators';
|
||||
|
@ -16,14 +16,14 @@ export class ResetPasswordModernComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
resetPasswordForm: FormGroup;
|
||||
resetPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { FuseValidators } from '@fuse/validators';
|
||||
|
@ -16,14 +16,14 @@ export class ResetPasswordSplitScreenReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
resetPasswordForm: FormGroup;
|
||||
resetPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { FuseValidators } from '@fuse/validators';
|
||||
|
@ -16,14 +16,14 @@ export class ResetPasswordSplitScreenComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
resetPasswordForm: FormGroup;
|
||||
resetPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -16,7 +16,7 @@ export class SignInClassicComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signInForm: FormGroup;
|
||||
signInForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -24,7 +24,7 @@ export class SignInClassicComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -16,7 +16,7 @@ export class SignInFullscreenReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signInForm: FormGroup;
|
||||
signInForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -24,7 +24,7 @@ export class SignInFullscreenReversedComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -16,7 +16,7 @@ export class SignInFullscreenComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signInForm: FormGroup;
|
||||
signInForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -24,7 +24,7 @@ export class SignInFullscreenComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -16,7 +16,7 @@ export class SignInModernReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signInForm: FormGroup;
|
||||
signInForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -24,7 +24,7 @@ export class SignInModernReversedComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -16,7 +16,7 @@ export class SignInModernComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signInForm: FormGroup;
|
||||
signInForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -24,7 +24,7 @@ export class SignInModernComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -16,7 +16,7 @@ export class SignInSplitScreenReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signInForm: FormGroup;
|
||||
signInForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -24,7 +24,7 @@ export class SignInSplitScreenReversedComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -16,7 +16,7 @@ export class SignInSplitScreenComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signInForm: FormGroup;
|
||||
signInForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -24,7 +24,7 @@ export class SignInSplitScreenComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class SignUpClassicComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signUpForm: FormGroup;
|
||||
signUpForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class SignUpClassicComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class SignUpFullscreenReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signUpForm: FormGroup;
|
||||
signUpForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class SignUpFullscreenReversedComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class SignUpFullscreenComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signUpForm: FormGroup;
|
||||
signUpForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class SignUpFullscreenComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class SignUpModernReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signUpForm: FormGroup;
|
||||
signUpForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class SignUpModernReversedComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class SignUpModernComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signUpForm: FormGroup;
|
||||
signUpForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class SignUpModernComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class SignUpSplitScreenReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signUpForm: FormGroup;
|
||||
signUpForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class SignUpSplitScreenReversedComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class SignUpSplitScreenComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signUpForm: FormGroup;
|
||||
signUpForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class SignUpSplitScreenComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -19,13 +19,13 @@ export class UnlockSessionClassicComponent implements OnInit
|
|||
};
|
||||
name: string = 'Brian Hughes';
|
||||
showAlert: boolean = false;
|
||||
unlockSessionForm: FormGroup;
|
||||
unlockSessionForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -19,13 +19,13 @@ export class UnlockSessionFullscreenReversedComponent implements OnInit
|
|||
};
|
||||
name: string = 'Brian Hughes';
|
||||
showAlert: boolean = false;
|
||||
unlockSessionForm: FormGroup;
|
||||
unlockSessionForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -19,13 +19,13 @@ export class UnlockSessionFullscreenComponent implements OnInit
|
|||
};
|
||||
name: string = 'Brian Hughes';
|
||||
showAlert: boolean = false;
|
||||
unlockSessionForm: FormGroup;
|
||||
unlockSessionForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -19,13 +19,13 @@ export class UnlockSessionModernReversedComponent implements OnInit
|
|||
};
|
||||
name: string = 'Brian Hughes';
|
||||
showAlert: boolean = false;
|
||||
unlockSessionForm: FormGroup;
|
||||
unlockSessionForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -19,13 +19,13 @@ export class UnlockSessionModernComponent implements OnInit
|
|||
};
|
||||
name: string = 'Brian Hughes';
|
||||
showAlert: boolean = false;
|
||||
unlockSessionForm: FormGroup;
|
||||
unlockSessionForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -19,13 +19,13 @@ export class UnlockSessionSplitScreenReversedComponent implements OnInit
|
|||
};
|
||||
name: string = 'Brian Hughes';
|
||||
showAlert: boolean = false;
|
||||
unlockSessionForm: FormGroup;
|
||||
unlockSessionForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
|
||||
|
@ -19,13 +19,13 @@ export class UnlockSessionSplitScreenComponent implements OnInit
|
|||
};
|
||||
name: string = 'Brian Hughes';
|
||||
showAlert: boolean = false;
|
||||
unlockSessionForm: FormGroup;
|
||||
unlockSessionForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class ComingSoonClassicComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
comingSoonForm: FormGroup;
|
||||
comingSoonForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class ComingSoonClassicComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class ComingSoonFullscreenReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
comingSoonForm: FormGroup;
|
||||
comingSoonForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class ComingSoonFullscreenReversedComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class ComingSoonFullscreenComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
comingSoonForm: FormGroup;
|
||||
comingSoonForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class ComingSoonFullscreenComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class ComingSoonModernReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
comingSoonForm: FormGroup;
|
||||
comingSoonForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class ComingSoonModernReversedComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class ComingSoonModernComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
comingSoonForm: FormGroup;
|
||||
comingSoonForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class ComingSoonModernComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class ComingSoonSplitScreenReversedComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
comingSoonForm: FormGroup;
|
||||
comingSoonForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class ComingSoonSplitScreenReversedComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { FuseAlertType } from '@fuse/components/alert';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -18,7 +18,7 @@ export class ComingSoonSplitScreenComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
comingSoonForm: FormGroup;
|
||||
comingSoonForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +26,7 @@ export class ComingSoonSplitScreenComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core';
|
||||
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
||||
import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
|
||||
|
||||
@Component({
|
||||
selector : 'settings-account',
|
||||
|
@ -9,13 +9,13 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
|||
})
|
||||
export class SettingsAccountComponent implements OnInit
|
||||
{
|
||||
accountForm: FormGroup;
|
||||
accountForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core';
|
||||
import { FormBuilder, FormGroup } from '@angular/forms';
|
||||
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
||||
|
||||
@Component({
|
||||
selector : 'settings-notifications',
|
||||
|
@ -9,13 +9,13 @@ import { FormBuilder, FormGroup } from '@angular/forms';
|
|||
})
|
||||
export class SettingsNotificationsComponent implements OnInit
|
||||
{
|
||||
notificationsForm: FormGroup;
|
||||
notificationsForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core';
|
||||
import { FormBuilder, FormGroup } from '@angular/forms';
|
||||
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
||||
|
||||
@Component({
|
||||
selector : 'settings-plan-billing',
|
||||
|
@ -9,14 +9,14 @@ import { FormBuilder, FormGroup } from '@angular/forms';
|
|||
})
|
||||
export class SettingsPlanBillingComponent implements OnInit
|
||||
{
|
||||
planBillingForm: FormGroup;
|
||||
planBillingForm: UntypedFormGroup;
|
||||
plans: any[];
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { ChangeDetectionStrategy, Component, OnInit, ViewEncapsulation } from '@angular/core';
|
||||
import { FormBuilder, FormGroup } from '@angular/forms';
|
||||
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
||||
|
||||
@Component({
|
||||
selector : 'settings-security',
|
||||
|
@ -9,13 +9,13 @@ import { FormBuilder, FormGroup } from '@angular/forms';
|
|||
})
|
||||
export class SettingsSecurityComponent implements OnInit
|
||||
{
|
||||
securityForm: FormGroup;
|
||||
securityForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { coerceBooleanProperty } from '@angular/cdk/coercion';
|
||||
import { Subject, takeUntil } from 'rxjs';
|
||||
|
@ -12,7 +12,7 @@ import { Subject, takeUntil } from 'rxjs';
|
|||
})
|
||||
export class AdvancedSearchComponent implements OnInit, OnDestroy
|
||||
{
|
||||
searchForm: FormGroup;
|
||||
searchForm: UntypedFormGroup;
|
||||
searchFormDefaults: any = {
|
||||
keywords : '',
|
||||
type : 'any',
|
||||
|
@ -28,7 +28,7 @@ export class AdvancedSearchComponent implements OnInit, OnDestroy
|
|||
*/
|
||||
constructor(
|
||||
private _activatedRoute: ActivatedRoute,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _router: Router
|
||||
)
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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';
|
||||
|
||||
@Component({
|
||||
|
@ -10,13 +10,13 @@ import { FuseConfirmationService } from '@fuse/services/confirmation';
|
|||
})
|
||||
export class ConfirmationDialogComponent implements OnInit
|
||||
{
|
||||
configForm: FormGroup;
|
||||
configForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _fuseConfirmationService: FuseConfirmationService
|
||||
)
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { Component, ViewEncapsulation } from '@angular/core';
|
||||
import { FormBuilder } from '@angular/forms';
|
||||
import { UntypedFormBuilder } from '@angular/forms';
|
||||
|
||||
@Component({
|
||||
selector : 'forms-fields',
|
||||
|
@ -13,7 +13,7 @@ export class FormsFieldsComponent
|
|||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _formBuilder: FormBuilder)
|
||||
constructor(private _formBuilder: UntypedFormBuilder)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
|
||||
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
||||
import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
|
||||
|
||||
@Component({
|
||||
selector : 'forms-wizards',
|
||||
|
@ -8,13 +8,13 @@ import { FormBuilder, FormGroup, Validators } from '@angular/forms';
|
|||
})
|
||||
export class FormsWizardsComponent implements OnInit
|
||||
{
|
||||
horizontalStepperForm: FormGroup;
|
||||
verticalStepperForm: FormGroup;
|
||||
horizontalStepperForm: UntypedFormGroup;
|
||||
verticalStepperForm: UntypedFormGroup;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
constructor(private _formBuilder: FormBuilder)
|
||||
constructor(private _formBuilder: UntypedFormBuilder)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { fuseAnimations } from '@fuse/animations';
|
||||
import { FuseAlertType } from '@fuse/components/alert';
|
||||
|
@ -19,7 +19,7 @@ export class AuthForgotPasswordComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
forgotPasswordForm: FormGroup;
|
||||
forgotPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -27,7 +27,7 @@ export class AuthForgotPasswordComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { fuseAnimations } from '@fuse/animations';
|
||||
import { FuseValidators } from '@fuse/validators';
|
||||
|
@ -20,7 +20,7 @@ export class AuthResetPasswordComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
resetPasswordForm: FormGroup;
|
||||
resetPasswordForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -28,7 +28,7 @@ export class AuthResetPasswordComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder
|
||||
private _formBuilder: UntypedFormBuilder
|
||||
)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { fuseAnimations } from '@fuse/animations';
|
||||
import { FuseAlertType } from '@fuse/components/alert';
|
||||
|
@ -19,7 +19,7 @@ export class AuthSignInComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signInForm: FormGroup;
|
||||
signInForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -28,7 +28,7 @@ export class AuthSignInComponent implements OnInit
|
|||
constructor(
|
||||
private _activatedRoute: ActivatedRoute,
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _router: Router
|
||||
)
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { fuseAnimations } from '@fuse/animations';
|
||||
import { FuseAlertType } from '@fuse/components/alert';
|
||||
|
@ -19,7 +19,7 @@ export class AuthSignUpComponent implements OnInit
|
|||
type : 'success',
|
||||
message: ''
|
||||
};
|
||||
signUpForm: FormGroup;
|
||||
signUpForm: UntypedFormGroup;
|
||||
showAlert: boolean = false;
|
||||
|
||||
/**
|
||||
|
@ -27,7 +27,7 @@ export class AuthSignUpComponent implements OnInit
|
|||
*/
|
||||
constructor(
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _router: Router
|
||||
)
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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 { fuseAnimations } from '@fuse/animations';
|
||||
import { AuthService } from 'app/core/auth/auth.service';
|
||||
|
@ -22,7 +22,7 @@ export class AuthUnlockSessionComponent implements OnInit
|
|||
};
|
||||
name: string;
|
||||
showAlert: boolean = false;
|
||||
unlockSessionForm: FormGroup;
|
||||
unlockSessionForm: UntypedFormGroup;
|
||||
private _email: string;
|
||||
|
||||
/**
|
||||
|
@ -31,7 +31,7 @@ export class AuthUnlockSessionComponent implements OnInit
|
|||
constructor(
|
||||
private _activatedRoute: ActivatedRoute,
|
||||
private _authService: AuthService,
|
||||
private _formBuilder: FormBuilder,
|
||||
private _formBuilder: UntypedFormBuilder,
|
||||
private _router: Router,
|
||||
private _userService: UserService
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user