Skip to content

Commit

Permalink
feat: bump @angular to beta.7, material to beta.11, use uuid instead …
Browse files Browse the repository at this point in the history
…of deprecated node-uuid
  • Loading branch information
tomastrajan committed Sep 25, 2017
1 parent 2a3ddee commit 69a845f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
Empty file modified CHANGELOG.md
100755 → 100644
Empty file.
28 changes: 14 additions & 14 deletions package.json
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^5.0.0-beta.6",
"@angular/cdk": "^2.0.0-beta.8",
"@angular/common": "^5.0.0-beta.6",
"@angular/compiler": "^5.0.0-beta.6",
"@angular/core": "^5.0.0-beta.6",
"@angular/forms": "^5.0.0-beta.6",
"@angular/http": "^5.0.0-beta.6",
"@angular/material": "^2.0.0-beta.10",
"@angular/platform-browser": "^5.0.0-beta.6",
"@angular/platform-browser-dynamic": "^5.0.0-beta.6",
"@angular/router": "^5.0.0-beta.6",
"@angular/animations": "^5.0.0-beta.7",
"@angular/cdk": "^2.0.0-beta.11",
"@angular/common": "^5.0.0-beta.7",
"@angular/compiler": "^5.0.0-beta.7",
"@angular/core": "^5.0.0-beta.7",
"@angular/forms": "^5.0.0-beta.7",
"@angular/http": "^5.0.0-beta.7",
"@angular/material": "^2.0.0-beta.11",
"@angular/platform-browser": "^5.0.0-beta.7",
"@angular/platform-browser-dynamic": "^5.0.0-beta.7",
"@angular/router": "^5.0.0-beta.7",
"@ngrx/effects": "^4.0.0",
"@ngrx/router-store": "^4.0.0",
"@ngrx/store": "^4.0.0",
Expand All @@ -39,14 +39,14 @@
"classlist.js": "^1.1",
"core-js": "^2.4.1",
"hammerjs": "^2.0.8",
"node-uuid": "^1.4.8",
"rxjs": "^5.4.2",
"uuid": "^3.1.0",
"web-animations-js": "^2.2.5",
"zone.js": "0.8.12"
},
"devDependencies": {
"@angular/cli": "~1.4.0-rc.2",
"@angular/compiler-cli": "^5.0.0-beta.6",
"@angular/compiler-cli": "^5.0.0-beta.7",
"@types/jasmine": "2.5.38",
"@types/node": "~6.0.60",
"codelyzer": "~2.0.0",
Expand All @@ -65,6 +65,6 @@
"standard-version": "^4.2.0",
"ts-node": "~2.0.0",
"tslint": "~4.5.0",
"typescript": "~2.3.0"
"typescript": "~2.5.0"
}
}
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class AppComponent implements OnInit, OnDestroy {
.map(({ theme }) => theme.toLowerCase())
.subscribe(theme => {
this.componentCssClass = theme;
this.overlayContainer.themeClass = theme;
this.overlayContainer.getContainerElement().classList.add(theme);
});
this.store
.select(selectorAuth)
Expand Down
2 changes: 1 addition & 1 deletion src/app/examples/todos/todos.reducer.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { v4 as uuid } from 'node-uuid';
import { v4 as uuid } from 'uuid';

import { Action } from '@app/core';

Expand Down

0 comments on commit 69a845f

Please sign in to comment.