Skip to content

Commit

Permalink
Update NPM packages
Browse files Browse the repository at this point in the history
Signed-off-by: Volker Theile <votdev@gmx.de>
  • Loading branch information
votdev committed May 5, 2024
1 parent 0575558 commit be87cd9
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 81 deletions.
146 changes: 76 additions & 70 deletions deb/openmediavault/workbench/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions deb/openmediavault/workbench/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,27 +36,27 @@
"@angular/platform-browser": "^14.3.0",
"@angular/platform-browser-dynamic": "^14.3.0",
"@angular/router": "^14.3.0",
"@codemirror/autocomplete": "^6.15.0",
"@codemirror/commands": "^6.3.3",
"@codemirror/autocomplete": "^6.16.0",
"@codemirror/commands": "^6.5.0",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.10.1",
"@codemirror/legacy-modes": "^6.3.3",
"@codemirror/lint": "^6.5.0",
"@codemirror/legacy-modes": "^6.4.0",
"@codemirror/lint": "^6.7.0",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.26.1",
"@codemirror/view": "^6.26.3",
"@fontsource/inter": "^4.5.15",
"@fontsource/roboto-mono": "^4.5.10",
"@mdi/angular-material": "^7.2.96",
"@ngneat/transloco": "^3.2.0",
"@swimlane/ngx-datatable": "~20.1.0",
"chart.js": "^4.4.2",
"chartjs-plugin-datalabels": "^2.2.0",
"core-js": "~3.36.1",
"core-js": "~3.37.0",
"cronstrue": "^2.49.0",
"dayjs": "^1.11.10",
"dayjs": "^1.11.11",
"lodash": "^4.17.21",
"ngx-scrollbar": "^10.0.1",
"ngx-toastr": "^15.2.2",
Expand All @@ -81,13 +81,13 @@
"@ngneat/transloco-keys-manager": "^3.8.0",
"@types/chart.js": "^2.9.41",
"@types/jest": "^28.1.8",
"@types/lodash": "^4.17.0",
"@types/node": "^16.18.94",
"@types/lodash": "^4.17.1",
"@types/node": "^16.18.96",
"@types/nunjucks": "^3.2.6",
"@types/validator": "^13.11.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cypress": "~13.7.2",
"cypress": "~13.8.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export abstract class AbstractPageComponent<T> implements AfterViewInit, OnInit,
this.routeUrlSegments = _.trim(this.router.url, '/').split('/');
// Is the component configured via route data?
if (_.has(this.routeConfig, 'data.config')) {
this.config = _.cloneDeep(_.get(this.routeConfig, 'data.config'));
this.config = _.cloneDeep(_.get(this.routeConfig, 'data.config')) as T;
}
}

Expand Down

0 comments on commit be87cd9

Please sign in to comment.