Chore: Upgraded to Angular, Angular Material and Angular Flex layout 8.0
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
import {AfterViewInit, Component, ElementRef, OnInit, OnDestroy, ViewChild} from '@angular/core';
|
||||
import {FormBuilder, FormGroup} from '@angular/forms';
|
||||
import {MatAutocompleteSelectedEvent, MatDialog} from '@angular/material';
|
||||
import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
|
||||
import { MatDialog } from '@angular/material/dialog';
|
||||
import {ActivatedRoute, Router} from '@angular/router';
|
||||
import {BehaviorSubject, Observable, of as observableOf} from 'rxjs';
|
||||
import {debounceTime, distinctUntilChanged, map, startWith, switchMap} from 'rxjs/operators';
|
||||
@ -24,8 +25,8 @@ import {Hotkey, HotkeysService} from "angular2-hotkeys";
|
||||
styleUrls: ['./issue.component.css']
|
||||
})
|
||||
export class IssueComponent implements OnInit, AfterViewInit, OnDestroy {
|
||||
@ViewChild('batchElement') batchElement: ElementRef;
|
||||
@ViewChild('dateElement') dateElement: ElementRef;
|
||||
@ViewChild('batchElement', { static: true }) batchElement: ElementRef;
|
||||
@ViewChild('dateElement', { static: true }) dateElement: ElementRef;
|
||||
public inventoryObservable = new BehaviorSubject<Inventory[]>([]);
|
||||
public gridObservable = new BehaviorSubject<any[]>([]);
|
||||
dataSource: IssueDataSource;
|
||||
|
||||
Reference in New Issue
Block a user