Upgrade Angular and other packages

This commit is contained in:
2020-06-29 09:02:10 -04:00
parent 1730f164b4
commit c1bee79a3d
14 changed files with 6383 additions and 6090 deletions

View File

@@ -2,7 +2,7 @@ import { Component, ViewChild } from '@angular/core';
import { BreakpointObserver, Breakpoints } from '@angular/cdk/layout';
import { Observable } from 'rxjs';
import { map, shareReplay } from 'rxjs/operators';
import { MatSidenav } from '@angular/material';
import { MatSidenav } from '@angular/material/sidenav';
@Component({
selector: 'app-nav',
@@ -10,7 +10,7 @@ import { MatSidenav } from '@angular/material';
styleUrls: ['./nav.component.scss']
})
export class NavComponent {
@ViewChild('sidenav', null) sidenav: MatSidenav;
@ViewChild('sidenav', {}) sidenav: MatSidenav;
isHandset$: Observable<boolean> = this.breakpointObserver.observe([
Breakpoints.HandsetLandscape,

View File

@@ -1,6 +1,6 @@
import { Component, OnInit } from '@angular/core';
import { Chart } from 'angular-highcharts';
import { SeriesLineOptions, SeriesWindbarbOptions } from 'highcharts';
import { SeriesLineOptions } from 'highcharts';
import { HttpClient } from '@angular/common/http';
import { forkJoin } from 'rxjs';
import { WeatherValueGrouped } from 'src/app/models/weather/weather-value-grouped';