update angular

This commit is contained in:
2020-03-29 09:21:07 +02:00
parent a81eb7c4ed
commit ef7968aba2
7 changed files with 3378 additions and 2158 deletions

View File

@@ -22,7 +22,7 @@
"main": "src/main.ts", "main": "src/main.ts",
"polyfills": "src/polyfills.ts", "polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json", "tsConfig": "tsconfig.app.json",
"aot": false, "aot": true,
"assets": [ "assets": [
"src/favicon.ico", "src/favicon.ico",
"src/assets" "src/assets"
@@ -46,7 +46,6 @@
"sourceMap": false, "sourceMap": false,
"extractCss": true, "extractCss": true,
"namedChunks": false, "namedChunks": false,
"aot": true,
"extractLicenses": true, "extractLicenses": true,
"vendorChunk": false, "vendorChunk": false,
"buildOptimizer": true, "buildOptimizer": true,

5483
pdb-js/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,31 +12,31 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "^8.2.14", "@angular/animations": "^9.1.0",
"@angular/cdk": "^8.2.3", "@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.14", "@angular/common": "^9.1.0",
"@angular/compiler": "^8.2.14", "@angular/compiler": "^9.1.0",
"@angular/core": "^8.2.14", "@angular/core": "^9.1.0",
"@angular/forms": "^8.2.14", "@angular/forms": "^9.1.0",
"@angular/material": "^8.2.3", "@angular/material": "^8.2.3",
"@angular/platform-browser": "^8.2.14", "@angular/platform-browser": "^9.1.0",
"@angular/platform-browser-dynamic": "^8.2.14", "@angular/platform-browser-dynamic": "^9.1.0",
"@angular/router": "^8.2.14", "@angular/router": "^9.1.0",
"moment": "^2.24.0", "moment": "^2.24.0",
"rxjs": "^6.5.4", "rxjs": "^6.5.4",
"rxjs-compat": "^6.5.4", "rxjs-compat": "^6.5.4",
"tslib": "^1.10.0", "tslib": "^1.10.0",
"zone.js": "~0.9.1" "zone.js": "~0.10.2"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^0.803.25", "@angular-devkit/build-angular": "~0.901.0",
"@angular/cli": "^8.3.25", "@angular/cli": "^9.1.0",
"@angular/compiler-cli": "^8.2.14", "@angular/compiler-cli": "^9.1.0",
"@angular/language-service": "^8.2.14", "@angular/language-service": "^9.1.0",
"@types/jasmine": "^3.5.3", "@types/jasmine": "^3.5.3",
"@types/jasminewd2": "~2.0.8", "@types/jasminewd2": "~2.0.8",
"@types/node": "^13.7.0", "@types/node": "^12.11.1",
"codelyzer": "^5.2.1", "codelyzer": "^5.1.2",
"jasmine-core": "~3.4.0", "jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1", "jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0", "karma": "~4.1.0",
@@ -47,6 +47,6 @@
"protractor": "^5.4.3", "protractor": "^5.4.3",
"ts-node": "~8.5.4", "ts-node": "~8.5.4",
"tslint": "~5.20.1", "tslint": "~5.20.1",
"typescript": "~3.5.3" "typescript": "~3.8.3"
} }
} }

View File

@@ -111,7 +111,7 @@ export class GalleryViewComponent implements OnInit {
sequenceId = 0; sequenceId = 0;
@ViewChild(GalleryFilterView, {static: false}) @ViewChild(GalleryFilterView)
filter : GalleryFilterView; filter : GalleryFilterView;
ascDescImages = JSON.stringify([ ascDescImages = JSON.stringify([

View File

@@ -20,7 +20,7 @@ export class QueryAutocompleteComponent implements OnInit {
query : string; query : string;
@ViewChild(MatAutocompleteTrigger, {static: false}) @ViewChild(MatAutocompleteTrigger)
autocomplete: MatAutocompleteTrigger; autocomplete: MatAutocompleteTrigger;

View File

@@ -28,23 +28,23 @@ export class VisualizationPageComponent implements OnInit {
groupBy = new Array<TagField>(); groupBy = new Array<TagField>();
@ViewChild('limitbycomponent', {static: false}) @ViewChild('limitbycomponent')
private limitbycomponent : LimitByComponent; private limitbycomponent : LimitByComponent;
@ViewChild('y1AxisDefinitionComponent', {static: false, read: YAxisDefinitionComponent}) @ViewChild('y1AxisDefinitionComponent', { read: YAxisDefinitionComponent })
private y1AxisDefinitionComponent : YAxisDefinitionComponent; private y1AxisDefinitionComponent : YAxisDefinitionComponent;
@ViewChild('y2AxisDefinitionComponent', {static: false, read: YAxisDefinitionComponent}) @ViewChild('y2AxisDefinitionComponent', { read: YAxisDefinitionComponent })
private y2AxisDefinitionComponent : YAxisDefinitionComponent; private y2AxisDefinitionComponent : YAxisDefinitionComponent;
@ViewChild('query', {static: false}) @ViewChild('query')
query: QueryAutocompleteComponent; query: QueryAutocompleteComponent;
@ViewChild('plotView', {static: false}) @ViewChild('plotView')
plotView: PlotViewComponent; plotView: PlotViewComponent;
@ViewChild('galleryView', {static: false}) @ViewChild('galleryView')
galleryView: GalleryViewComponent; galleryView: GalleryViewComponent;
enableGallery = false; enableGallery = false;

View File

@@ -9,7 +9,7 @@
"src/polyfills.ts" "src/polyfills.ts"
], ],
"include": [ "include": [
"src/**/*.ts" "src/**/*.d.ts"
], ],
"exclude": [ "exclude": [
"src/test.ts", "src/test.ts",