Skip to content

Commit 081eee9

Browse files
committed
build(angular): update angular to 8.2.14
1 parent 7c4dd2d commit 081eee9

File tree

6 files changed

+8282
-34
lines changed

6 files changed

+8282
-34
lines changed

package.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -33,36 +33,36 @@
3333
},
3434
"homepage": "https://github.com/CreativeIT/material-angular-dashboard",
3535
"dependencies": {
36-
"@angular/animations": "7.2.1",
37-
"@angular/common": "7.2.1",
38-
"@angular/compiler": "7.2.1",
39-
"@angular/core": "7.2.1",
40-
"@angular/forms": "7.2.1",
36+
"@angular/animations": "8.2.14",
37+
"@angular/common": "8.2.14",
38+
"@angular/compiler": "8.2.14",
39+
"@angular/core": "8.2.14",
40+
"@angular/forms": "8.2.14",
4141
"@angular/http": "7.2.1",
42-
"@angular/platform-browser": "7.2.1",
43-
"@angular/platform-browser-dynamic": "7.2.1",
44-
"@angular/router": "7.2.1",
42+
"@angular/platform-browser": "8.2.14",
43+
"@angular/platform-browser-dynamic": "8.2.14",
44+
"@angular/router": "8.2.14",
4545
"@types/googlemaps": "^3.30.18",
4646
"classlist.js": "1.1.20150312",
4747
"core-js": "2.5.6",
4848
"d3": "3.5.17",
4949
"material-angular-select": "1.0.0",
5050
"material-design-lite": "1.3.0",
5151
"nvd3": "1.8.6",
52-
"rxjs": "6.3.3",
53-
"zone.js": "0.8.28"
52+
"rxjs": "6.5.5",
53+
"zone.js": "0.9.1"
5454
},
5555
"devDependencies": {
56-
"@angular-devkit/build-angular": "0.6.5",
57-
"@angular/cli": "7.2.2",
58-
"@angular/compiler-cli": "7.2.1",
59-
"@angular/language-service": "7.2.1",
56+
"@angular-devkit/build-angular": "0.803.28",
57+
"@angular/cli": "8.3.28",
58+
"@angular/compiler-cli": "8.2.14",
59+
"@angular/language-service": "8.2.14",
6060
"@types/d3": "3.5.40",
6161
"@types/material-design-lite": "1.1.15",
6262
"@types/node": "10.1.2",
6363
"@types/nvd3": "1.8.38",
64-
"codelyzer": "4.3.0",
65-
"node-sass": "4.9.0",
64+
"codelyzer": "5.0.1",
65+
"node-sass": "^4.14.1",
6666
"pre-commit": "1.2.2",
6767
"stylelint": "9.2.1",
6868
"stylelint-config-recommended-scss": "3.2.0",
@@ -72,6 +72,6 @@
7272
"tslint": "5.10.0",
7373
"tslint-angular": "1.1.2",
7474
"tslint-config-airbnb": "5.9.2",
75-
"typescript": "3.2.4"
75+
"typescript": "3.5.3"
7676
}
77-
}
77+
}

src/app/pages/dashboard/todo-list/todo-list.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class TodoListComponent implements AfterViewInit, OnDestroy {
2626
private createdItem = null;
2727
private todoItemsSubscription;
2828

29-
@ViewChild('todoInput') private set todoInput(element: ElementRef) {
29+
@ViewChild('todoInput', { static: false }) private set todoInput(element: ElementRef) {
3030
if (element) {
3131
element.nativeElement.focus();
3232
}

src/app/pages/maps/map-advanced/map-advanced.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const iconSize = 20;
2828
export class MapAdvancedComponent extends UpgradableComponent implements AfterViewInit, OnDestroy {
2929
@HostBinding('class.map-advanced') private map = true;
3030

31-
@ViewChild('gmap') gmapElement: any;
31+
@ViewChild('gmap', { static: false }) gmapElement: any;
3232
public gMap: any;
3333
public data = [];
3434
private prevZoom = 2;

src/app/pages/pages/login/login.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { Component, OnInit } from '@angular/core';
22
import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms';
33
import { Router } from '@angular/router';
44

5-
import { AuthService } from '@services/';
65
import { BlankLayoutCardComponent } from 'app/components/blank-layout-card';
6+
import { AuthService } from '../../../services/auth';
77

88
@Component({
99
selector: 'app-login',

0 commit comments

Comments
 (0)