Some more fixes
This commit is contained in:
@@ -8,11 +8,11 @@
|
||||
"tslib": "^2.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@angular/core": "~13",
|
||||
"ngrx-store-localstorage": "^13",
|
||||
"@ngrx/effects": "^13",
|
||||
"@ngrx/router-store":"^13",
|
||||
"@ngrx/store":"^13",
|
||||
"@angular/core": "~14",
|
||||
"ngrx-store-localstorage": "^14",
|
||||
"@ngrx/effects": "^14",
|
||||
"@ngrx/router-store":"^14",
|
||||
"@ngrx/store":"^14",
|
||||
"tassign": "^1.0.0",
|
||||
"@farmmaps/common": "~2.0",
|
||||
"ngx-openlayers": "1.0.0-next.19",
|
||||
|
@@ -1,5 +1,5 @@
|
||||
import { Component, Output, ViewChild, EventEmitter, Input, ElementRef, HostListener } from '@angular/core';
|
||||
import { FormGroup,FormBuilder, Validators } from '@angular/forms';
|
||||
import { UntypedFormGroup,UntypedFormBuilder, Validators } from '@angular/forms';
|
||||
import { IListItem } from '@farmmaps/common';
|
||||
import { IDroppedFile } from '../aol/file-drop-target/file-drop-target.component';
|
||||
import {NgbModal, NgbModalRef} from "@ng-bootstrap/ng-bootstrap";
|
||||
@@ -33,9 +33,9 @@ export class MetaDataModalComponent {
|
||||
@Output() onCloseModal = new EventEmitter<any>();
|
||||
@Output() onAddFilesWithMetaData = new EventEmitter<IMetaData>();
|
||||
|
||||
constructor(private modalService: NgbModal, public fb: FormBuilder) { }
|
||||
constructor(private modalService: NgbModal, public fb: UntypedFormBuilder) { }
|
||||
|
||||
public metaDataForm: FormGroup;
|
||||
public metaDataForm: UntypedFormGroup;
|
||||
|
||||
handleMetaDataEntered(event) {
|
||||
if (this.metaDataForm.valid) {
|
||||
|
@@ -2,7 +2,7 @@
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../out-tsc/lib",
|
||||
"target": "es2015",
|
||||
"target": "es2020",
|
||||
"module": "es2015",
|
||||
"moduleResolution": "node",
|
||||
"declaration": true,
|
||||
|
@@ -2,7 +2,7 @@
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../../out-tsc/lib",
|
||||
"target": "es2015",
|
||||
"target": "es2020",
|
||||
"module": "es2015",
|
||||
"moduleResolution": "node",
|
||||
"declaration": true,
|
||||
|
Reference in New Issue
Block a user