Update dependencies

This commit is contained in:
BoykoAlex
2021-04-01 00:22:30 -04:00
parent 6429c15cef
commit 130b1e2302
4 changed files with 21316 additions and 1893 deletions

23167
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -41,38 +41,38 @@
"ts-disposables": "2.2.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1100.2",
"@angular-devkit/schematics": "11.0.2",
"@angular/animations": "11.0.2",
"@angular/common": "11.0.2",
"@angular/compiler": "11.0.2",
"@angular/compiler-cli": "11.0.2",
"@angular/core": "11.0.2",
"@angular/forms": "11.0.2",
"@angular/cli": "11.0.2",
"@angular/platform-browser": "11.0.2",
"@angular/platform-browser-dynamic": "11.0.2",
"@angular/platform-server": "11.0.2",
"@types/node": "12.11.1",
"@angular-devkit/build-angular": "0.1102.6",
"@angular-devkit/schematics": "~11.2.6",
"@angular/animations": "~11.2.7",
"@angular/cli": "~11.2.6",
"@angular/common": "~11.2.7",
"@angular/compiler": "~11.2.7",
"@angular/compiler-cli": "~11.2.7",
"@angular/core": "~11.2.7",
"@angular/forms": "~11.2.7",
"@angular/platform-browser": "~11.2.7",
"@angular/platform-browser-dynamic": "~11.2.7",
"@angular/platform-server": "~11.2.7",
"@types/backbone": "1.3.42",
"@types/codemirror": "0.0.64",
"@types/jasmine": "2.5.36",
"@types/jquery": "3.5.4",
"@types/lodash": "4.14.165",
"@types/node": "12.11.1",
"cpr": "^3.0.1",
"fibers": "^4.0.2",
"html-webpack-plugin": "^3.2.0",
"jshint": "2.10.2",
"node-sass": "^4.13.1",
"ng-packagr": "11.0.3",
"ng-packagr": "11.2.4",
"ngx-bootstrap": "6.0.0",
"node-sass": "^4.13.1",
"rimraf": "2.6.1",
"rxjs": "6.6.3",
"rxjs": "~6.6.7",
"scss-bundle": "^3.0.2",
"standard-version": "^9.0.0",
"tslint": "^6.1.3",
"tslib": "^2.0.3",
"typescript": "4.0.5",
"zone.js": "0.11.3"
"tslint": "^6.1.3",
"typescript": "4.1.5",
"zone.js": "~0.11.3"
}
}

View File

@@ -894,7 +894,7 @@ export class EditorComponent implements OnInit, OnDestroy {
}
validateContent(): Promise<any> {
return new Promise(resolve => {
return new Promise<void>(resolve => {
if (this.editor && this.editor.validate) {
return this.editor
.validate(this.graph, this.dsl, this.editorContext)

View File

@@ -242,7 +242,7 @@ export namespace Flo {
name: name,
group: group,
unresolved: true,
get: (property: string) => new Promise(resolve => resolve()),
get: (property: string) => new Promise<PropertyMetadata>(resolve => resolve(undefined)),
properties: () => Promise.resolve(new Map<string, PropertyMetadata>())
};
}