update angular core and cli to v14, update submodules

master
Alex Martzios 1 year ago
parent e982475def
commit fdae1e270d

@ -206,6 +206,5 @@
}
}
}
},
"defaultProject": "graph"
}
}

@ -15,17 +15,17 @@
},
"private": true,
"dependencies": {
"@angular/animations": "~13.3.12",
"@angular/animations": "^14.2.12",
"@angular/cdk": "^13.3.9",
"@angular/common": "~13.3.12",
"@angular/compiler": "~13.3.12",
"@angular/core": "~13.3.12",
"@angular/forms": "~13.3.12",
"@angular/localize": "^13.3.12",
"@angular/common": "^14.2.12",
"@angular/compiler": "^14.2.12",
"@angular/core": "^14.2.12",
"@angular/forms": "^14.2.12",
"@angular/localize": "^14.2.12",
"@angular/material": "^13.3.9",
"@angular/platform-browser": "~13.3.12",
"@angular/platform-browser-dynamic": "~13.3.12",
"@angular/router": "~13.3.12",
"@angular/platform-browser": "^14.2.12",
"@angular/platform-browser-dynamic": "^14.2.12",
"@angular/router": "^14.2.12",
"clipboard": "^1.5.16",
"core-js": "^2.5.4",
"express": "^4.15.2",
@ -37,10 +37,10 @@
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.10",
"@angular/cli": "~13.3.10",
"@angular/compiler-cli": "~13.3.12",
"@angular/language-service": "~13.3.12",
"@angular-devkit/build-angular": "^14.2.10",
"@angular/cli": "^14.2.10",
"@angular/compiler-cli": "^14.2.12",
"@angular/language-service": "^14.2.12",
"@types/node": "^12.11.1",
"@types/express": "^4.17.0",
"@types/jasmine": "~3.6.0",

@ -6,7 +6,7 @@ import {EnvProperties} from '../openaireLibrary/utils/properties/env-properties'
import {Composer} from '../openaireLibrary/utils/email/composer';
import {Meta, Title} from '@angular/platform-browser';
import {HelperFunctions} from '../openaireLibrary/utils/HelperFunctions.class';
import {FormBuilder, FormGroup, Validators} from '@angular/forms';
import {UntypedFormBuilder, UntypedFormGroup, Validators} from '@angular/forms';
import {properties} from '../../environments/environment';
import {FAQ} from "../openaireLibrary/utils/entities/FAQ";
import {Breadcrumb} from "../openaireLibrary/utils/breadcrumbs/breadcrumbs.component";
@ -29,7 +29,7 @@ export class ContactComponent implements OnInit, OnDestroy {
subs: Subscription[] = [];
description = "Do you have questions? Contact us";
title = "OpenAIRE - Research Graph | Support";
public contactForm: FormGroup;
public contactForm: UntypedFormGroup;
@ViewChild('AlertModal') modal;
public breadcrumbs: Breadcrumb[] = [
@ -48,7 +48,7 @@ export class ContactComponent implements OnInit, OnDestroy {
private _title: Title,
private _piwikService:PiwikService,
private _meta: Meta, private seoService: SEOService,
private fb: FormBuilder) {
private fb: UntypedFormBuilder) {
this.setFaqs();
}

@ -1 +1 @@
Subproject commit b93dff4f1b5f935b8bd4d2b29648eccbe169e600
Subproject commit 825e29b5af80be940457ee6382f5a403d607e7f5

@ -10,7 +10,7 @@
"moduleResolution": "node",
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"target": "es2020",
"typeRoots": [
"node_modules/@types"
],

Loading…
Cancel
Save