Skip to content

Commit

Permalink
non breaking deps updated
Browse files Browse the repository at this point in the history
  • Loading branch information
cbartondock committed Sep 15, 2024
1 parent bd98929 commit f0faa6b
Show file tree
Hide file tree
Showing 3 changed files with 204 additions and 148 deletions.
52 changes: 26 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,20 @@
"build:flatpak": "electron-installer-flatpak --src release/linux-unpacked --dest release/ --arch x64 --config flatconf.json"
},
"dependencies": {
"@angular/animations": "^18.1.0",
"@angular/common": "^18.1.0",
"@angular/compiler": "^18.1.0",
"@angular/core": "^18.1.0",
"@angular/forms": "^18.1.0",
"@angular/platform-browser": "^18.1.0",
"@angular/platform-browser-dynamic": "^18.1.0",
"@angular/router": "^18.1.0",
"@angular/animations": "^18.2.4",
"@angular/common": "^18.2.4",
"@angular/compiler": "^18.2.4",
"@angular/core": "^18.2.4",
"@angular/forms": "^18.2.4",
"@angular/platform-browser": "^18.2.4",
"@angular/platform-browser-dynamic": "^18.2.4",
"@angular/router": "^18.2.4",
"@electron/remote": "^2.1.2",
"@node-steam/vdf": "^2.2.0",
"ajv": "^8.17.1",
"async": "^3.2.5",
"async": "^3.2.6",
"bcp-47": "^2.1.0",
"better-sqlite3": "^11.1.2",
"better-sqlite3": "^11.3.0",
"binary-vdf-2": "^0.2.2",
"blizzard-product-parser": "https://github.com/cbartondock/blizzard-product-parser.git",
"chai": "^5.1.1",
Expand All @@ -103,11 +103,11 @@
"copy-webpack-plugin": "^12.0.2",
"crc": "^4.3.2",
"detect-file-encoding-and-language": "^2.4.0",
"electron-log": "^5.1.6",
"electron-updater": "^6.3.0",
"electron-log": "^5.2.0",
"electron-updater": "^6.3.4",
"electron-window-state": "^5.0.3",
"fast-memoize": "^2.5.2",
"fast-xml-parser": "^4.4.0",
"fast-xml-parser": "^4.5.0",
"file-saver": "^2.0.5",
"file-uri-to-path": "^2.0.0",
"fs-extra": "^11.2.0",
Expand All @@ -121,8 +121,8 @@
"lodash": "^4.17.21",
"long": "^5.2.3",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-attrs": "^4.1.6",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.2.0",
"markdown-it-toc-done-right": "^4.2.0",
"mime-types": "^2.1.35",
"minimatch": "^10.0.1",
Expand All @@ -140,9 +140,9 @@
"windows-shortcuts-ps": "https://github.com/cbartondock/windows-shortcuts-ps.git",
"winreg": "^1.2.5",
"xdg-parse": "^1.1.0",
"yaml": "^2.4.5",
"yaml": "^2.5.1",
"yargs": "^17.7.2",
"zone.js": "^0.14.7"
"zone.js": "~0.14.10"
},
"devDependencies": {
"@types/async": "^3.2.24",
Expand All @@ -154,34 +154,34 @@
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.7",
"@types/long": "^4.0.2",
"@types/markdown-it": "^14.1.1",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.14.11",
"@types/rangy": "0.0.38",
"@types/wicg-file-system-access": "^2023.10.5",
"@types/winreg": "^1.2.36",
"angular2-template-loader": "^0.6.2",
"autoprefixer": "^10.4.19",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"electron": "^31.2.1",
"electron-builder": "^24.13.3",
"html-loader": "^5.0.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"node-abi": "^3.65.0",
"mini-css-extract-plugin": "^2.9.1",
"node-abi": "^3.67.0",
"npm-check-updates": "^16.14.20",
"postcss": "^8.4.39",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sass": "^1.77.8",
"sass": "^1.78.0",
"sass-loader": "^14.2.1",
"to-string-loader": "^1.2.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript": "^5.6.2",
"upath": "^2.0.1",
"webpack": "^5.93.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
}
Expand Down
7 changes: 3 additions & 4 deletions src/renderer/components/ng-nested-form.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,9 @@ export class NgNestedFormComponent implements OnInit {
private buildFromTemplate(group: NestedFormElement.Group) {
let formGroup: IndexedFormGroup = new FormGroup({});
formGroup["__path"] = this.groupName
? (this.parentForm
? this.parentForm["__path"]
: (null as Array<string>) || []
).concat(this.groupName)
? (this.parentForm ? this.parentForm["__path"] : []).concat(
this.groupName,
)
: [];
for (let childKey in group.children) {
let notGroup =
Expand Down
Loading

0 comments on commit f0faa6b

Please sign in to comment.