Merge pull request #6513 from opf/update-angular-612

Update to Angular 6.1.2

[ci skip]
pull/6518/head
Oliver Günther 6 years ago committed by GitHub
commit 2a7b7311f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      frontend/legacy/app/components/hide-section/add-section-dropdown/add-section-dropdown.component.ts
  2. 2266
      frontend/npm-shrinkwrap.json
  3. 30
      frontend/package.json

@ -54,9 +54,9 @@ export class AddSectionDropdownComponent {
subscribe() {
this.allSubscription = combineLatest(this.HideSectionService.all$, this.HideSectionService.displayed$)
.subscribe(([all, displayed]) => {
this.selectable = _.filter(all, all_candidate =>
!_.some(displayed, displayed_candidate => all_candidate.key === displayed_candidate.key)
).sort((a, b) => a.label.toLowerCase().localeCompare(b.label.toLowerCase()))
this.selectable = _.filter(all, (all_candidate:any) =>
!_.some(displayed, (displayed_candidate:any) => all_candidate.key === displayed_candidate.key)
).sort((a:any, b:any) => a.label.toLowerCase().localeCompare(b.label.toLowerCase()))
this.selectable.unshift(this.placeholder());

File diff suppressed because it is too large Load Diff

@ -2,7 +2,7 @@
"name": "openproject-frontend",
"version": "0.1.0",
"devDependencies": {
"@angular/language-service": "6.0.0",
"@angular/language-service": "6.1.2",
"@types/jasmine": "~2.8.3",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
@ -29,18 +29,18 @@
},
"dependencies": {
"@angular-devkit/build-angular": "~0.6.0",
"@angular/animations": "6.0.0",
"@angular/cdk": "6.0.0",
"@angular/cli": "^6.0.8",
"@angular/common": "6.0.0",
"@angular/compiler": "6.0.0",
"@angular/compiler-cli": "6.0.0",
"@angular/core": "6.0.0",
"@angular/forms": "6.0.0",
"@angular/http": "6.0.0",
"@angular/platform-browser": "6.0.0",
"@angular/platform-browser-dynamic": "6.0.0",
"@angular/router": "6.0.0",
"@angular/animations": "6.1.2",
"@angular/cdk": "6.4.3",
"@angular/cli": "6.1.3",
"@angular/common": "6.1.2",
"@angular/compiler": "6.1.2",
"@angular/compiler-cli": "6.1.2",
"@angular/core": "6.1.2",
"@angular/forms": "6.1.2",
"@angular/http": "6.1.2",
"@angular/platform-browser": "6.1.2",
"@angular/platform-browser-dynamic": "6.1.2",
"@angular/router": "6.1.2",
"@types/angular": "^1.6.45",
"@types/assertion-error": "^1.0.30",
"@types/codemirror": "0.0.58",
@ -103,7 +103,7 @@
"raw-loader": "^0.5.1",
"reactivestates": "2.0.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^6.2.1",
"rxjs": "^6.2.2",
"rxjs-compat": "^6.2.1",
"sass-loader": "^7.1.0",
"screenfull": "^3.2.0",
@ -111,7 +111,7 @@
"style-loader": "^0.8.3",
"ticky": "^1.0.1",
"ts-loader": "^4.3.1",
"typescript": "2.7.2",
"typescript": "2.9.2",
"ui-select": "~0.19.6",
"url-loader": "^1.0.1",
"webpack": "^4.16.1",

Loading…
Cancel
Save