From d1477d66c314107e393a82e769b2a45d4ccdf95f Mon Sep 17 00:00:00 2001 From: qmok Date: Thu, 2 Feb 2023 20:06:20 +0100 Subject: [PATCH 01/16] fix(confirmation_modal): fixed grammar mistake in button text --- .../shared/modal/confirmation-modal.component.html | 2 +- .../shared/modal/confirmation-modal.component.ts | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/app/shared/modal/confirmation-modal.component.html b/src/app/shared/modal/confirmation-modal.component.html index 44319c7ef0..b53342479a 100644 --- a/src/app/shared/modal/confirmation-modal.component.html +++ b/src/app/shared/modal/confirmation-modal.component.html @@ -31,6 +31,6 @@ - - - - - - - - - -
; /** * Type of reboot HARD|SOFT. */ @@ -354,20 +360,20 @@ export class VmDetailComponent extends AbstractBaseClass implements OnInit { this.bsModalRef.content.event.subscribe((result: any) => { if ('deleteVM' in result) { this.deleteVm(); - // } else if ('stopVM' in result) { - // this.stopVM(); - // } else if ('resumeVM' in result) { - // this.resumeVM(); - // } else if ('resume' in result) { - // this.resumeCheckStatusTimer(); - // } else if ('snapshotVM' in result) { - // this.createSnapshot(result['snapshotName'], result['description']); - // } else if ('attachVolume' in result) { - // this.attachVolume(result['volume']); - // } else if ('detachVolume' in result) { - // this.detachVolume(result['volume']); - // } else if ('reboot_type' in result) { - // this.rebootVM(result['reboot_type']); + /** } else if ('stopVM' in result) { + this.stopVM(); + } else if ('resumeVM' in result) { + this.resumeVM(); + } else if ('resume' in result) { + this.resumeCheckStatusTimer(); + } else if ('snapshotVM' in result) { + this.createSnapshot(result['snapshotName'], result['description']); + } else if ('attachVolume' in result) { + this.attachVolume(result['volume']); + } else if ('detachVolume' in result) { + this.detachVolume(result['volume']); */ + } else if ('reboot_type' in result) { + this.rebootVM(result['reboot_type']); } }), ); @@ -384,6 +390,17 @@ export class VmDetailComponent extends AbstractBaseClass implements OnInit { this.subscribeToBsModalRef(); } + /** + * Show reboot modal + */ + showRebootModal(): void { + const initialState = { virtualMachine: this.virtualMachine }; + + this.bsModalRef = this.modalService.show(RebootVmComponent, { initialState }); + this.bsModalRef.setClass('modal-lg'); + this.subscribeToBsModalRef(); + } + getDetachedVolumesByVSelectedMProject(): void { this.virtualmachineService .getDetachedVolumesByProject(this.virtualMachine.projectid) @@ -451,26 +468,28 @@ export class VmDetailComponent extends AbstractBaseClass implements OnInit { * @param vm which will be rebooted * @param reboot_type HARD|SOFT */ - public rebootVm(reboot_type: string): void { - this.virtualmachineService.rebootVM(this.virtualMachine.openstackid, reboot_type).subscribe( - (result: IResponseTemplate): void => { - this.status_changed = 0; - this.virtualMachine.cardState = 0; + rebootVM(reboot_type: string): void { + this.stopCheckStatusTimer(); + this.virtualMachine.status = VirtualMachineStates.GETTING_STATUS; + this.subscription.add( + this.virtualmachineService.rebootVM(this.virtualMachine.openstackid, reboot_type).subscribe( + (result: IResponseTemplate): void => { + this.virtualMachine.cardState = 0; + if (result.value as boolean) { + this.virtualMachine.setMsgWithTimeout('Reboot initiated', 5000); + this.check_status_loop_when_reboot(); + } else { + this.check_status_loop(VirtualMachineStates.ACTIVE); + } + }, + (error1: any): void => { + this.error_msg = this.REBOOT_ERROR_MSG; - if (result.value as boolean) { - this.status_changed = 1; - this.check_status_loop_when_reboot(); - } else { - this.status_changed = 2; - } - }, - (error1: any): void => { - this.status_changed = 2; - this.status_check_error = true; - if (error1['error']['error'] === '409') { - this.error_msg = 'Conflict detected. The virtual machine is currently creating a snapshot and must not be altered.'; - } - }, + if (error1['error']['error'] === '409') { + this.virtualMachine.setErrorMsgWithTimeout(this.REBOOT_ERROR_MSG, this.ERROR_TIMER); + } + }, + ), ); } @@ -482,7 +501,7 @@ export class VmDetailComponent extends AbstractBaseClass implements OnInit { * @param is_selected_vm If the vm should be the selected vm */ check_status_loop(final_state: string, is_selected_vm?: boolean, timeout: number = this.checkStatusTimeout): void { - setTimeout((): void => { + this.checkStatusTimer = setTimeout((): void => { if (this.virtualMachine.openstackid) { this.virtualmachineService .checkVmStatus(this.virtualMachine.openstackid) @@ -525,16 +544,18 @@ export class VmDetailComponent extends AbstractBaseClass implements OnInit { * @param vm */ check_status_loop_when_reboot(): void { - setTimeout((): void => { + this.checkStatusTimer = setTimeout((): void => { this.virtualmachineService .checkVmStatusWhenReboot(this.virtualMachine.openstackid) .subscribe((updated_vm: VirtualMachine): void => { if (updated_vm.status === VirtualMachineStates.ACTIVE) { this.reboot_done = true; this.virtualMachine = updated_vm; + this.showNotificationModal('Success', 'The virtual machine was rebooted successfully!', 'success'); } else { if (this.virtualMachine['error']) { this.status_check_error = true; + this.showNotificationModal('Failed', 'The reboot of the virtual machine failed!', 'danger'); } this.check_status_loop_when_reboot(); } @@ -542,6 +563,26 @@ export class VmDetailComponent extends AbstractBaseClass implements OnInit { }, this.checkStatusTimeout); } + showNotificationModal( + notificationModalTitle: string, + notificationModalMessage: string, + notificationModalType: string, + ) { + const initialState = { notificationModalTitle, notificationModalType, notificationModalMessage }; + if (this.bsModalRef) { + this.bsModalRef.hide(); + } + + this.bsModalRef = this.modalService.show(NotificationModalComponent, { initialState }); + this.bsModalRef.setClass('modal-lg'); + } + + stopCheckStatusTimer(): void { + if (this.checkStatusTimer) { + clearTimeout(this.checkStatusTimer); + } + } + /** * Stop a vm. * From 9d3e5a51f09d519d81b865570fe0e89864cfc93a Mon Sep 17 00:00:00 2001 From: dweinholz Date: Thu, 9 Feb 2023 16:34:32 +0100 Subject: [PATCH 11/16] feat(Application):added sensitive date fingerprint info and logo (#5406) Co-authored-by: denbicloud <46009071+denbicloud@users.noreply.github.com> --- .../applications/applications.component.html | 24 ++++++++++++++----- src/app/applications/applications.module.ts | 5 ++-- .../facility.application.component.html | 13 ++++++++-- .../maintenance-alert.component.html | 5 ++-- .../projectmanagement/overview.component.html | 9 +++++++ 5 files changed, 44 insertions(+), 12 deletions(-) diff --git a/src/app/applications/applications.component.html b/src/app/applications/applications.component.html index 820ee71538..3b931c1dda 100644 --- a/src/app/applications/applications.component.html +++ b/src/app/applications/applications.component.html @@ -117,6 +117,7 @@ + - + + + + + + {{ application?.project_application_name }} {{ application?.project_application_shortname }} @@ -962,10 +974,10 @@ Information + type="button" + class="btn btn-secondary"> + Remove Application + diff --git a/src/app/applications/applications.module.ts b/src/app/applications/applications.module.ts index fa55eb32f6..302929d139 100644 --- a/src/app/applications/applications.module.ts +++ b/src/app/applications/applications.module.ts @@ -7,6 +7,7 @@ import { FormsModule } from '@angular/forms'; import { ModalModule } from 'ngx-bootstrap/modal'; import { ClickOutsideModule } from 'ng4-click-outside'; import { NgSelectModule } from '@ng-select/ng-select'; +import { BadgeModule } from '@coreui/angular'; import { ApplicationsComponent } from './applications.component'; import { ApplicationsRoutingModule } from './applications-routing.module'; import { AddsimplevmComponent } from './addsimplevm.component'; @@ -42,6 +43,7 @@ import { NewsModule } from '../news/news.module'; PipeModuleModule, NewsModule, NgSelectModule, + BadgeModule, ], declarations: [ ApplicationsComponent, @@ -61,5 +63,4 @@ import { NewsModule } from '../news/news.module'; ], exports: [ApplicationDetailComponent], }) -export class ApplicationsModule { -} +export class ApplicationsModule {} diff --git a/src/app/facility_manager/facility.application.component.html b/src/app/facility_manager/facility.application.component.html index 26183f8534..95f043c272 100644 --- a/src/app/facility_manager/facility.application.component.html +++ b/src/app/facility_manager/facility.application.component.html @@ -176,7 +176,7 @@
{{ tf.name }}
- {{ tf.start_time | date : 'dd/MM/yy HH:mm' : 'de' }} - {{ tf.end_time | date : 'dd/MM/yy HH:mm' : 'de' }} + {{ tf.start_time | date : 'dd/MM/yy HH:mm' : 'de' }} + - {{ tf.end_time | date : 'dd/MM/yy HH:mm' : 'de' }}
{{ tf.message.length > 0 ? tf.message : '' }}
diff --git a/src/app/projectmanagement/overview.component.html b/src/app/projectmanagement/overview.component.html index 41879018f4..538eddc774 100644 --- a/src/app/projectmanagement/overview.component.html +++ b/src/app/projectmanagement/overview.component.html @@ -137,6 +137,15 @@

+ + {{ project_application?.project_application_name }} {{ project_application?.project_application_shortname }} From 77c42b3583fc5c8577be9b16fff69d5e2fd3a0b6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 10 Feb 2023 09:44:58 +0000 Subject: [PATCH 12/16] feat(Dependencies): Update dependency chart.js to v4.2.1 | datasource | package | from | to | | ---------- | -------- | ----- | ----- | | npm | chart.js | 4.2.0 | 4.2.1 | --- package-lock.json | 18 +++++++++--------- package.json | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 97f726a068..71b20d327b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@denbi/cloud-portal-webapp", - "version": "4.603.0", + "version": "4.604.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@denbi/cloud-portal-webapp", - "version": "4.603.0", + "version": "4.604.0", "hasInstallScript": true, "dependencies": { "@angular-eslint/eslint-plugin": "^15.2.0", @@ -35,7 +35,7 @@ "angulartics2": "12.2.0", "billboard.js": "3.7.4", "bootstrap": "4.6.2", - "chart.js": "4.2.0", + "chart.js": "4.2.1", "cli-color": "2.0.3", "core-js": "3.27.2", "css-loader": "6.7.3", @@ -6324,9 +6324,9 @@ "dev": true }, "node_modules/chart.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.2.0.tgz", - "integrity": "sha512-wbtcV+QKeH0F7gQZaCJEIpsNriFheacouJQTVIjITi3eQA8bTlIBoknz0+dgV79aeKLNMAX+nDslIVE/nJ3rzA==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.2.1.tgz", + "integrity": "sha512-6YbpQ0nt3NovAgOzbkSSeeAQu/3za1319dPUQTXn9WcOpywM8rGKxJHrhS8V8xEkAlk8YhEfjbuAPfUyp6jIsw==", "dependencies": { "@kurkle/color": "^0.3.0" }, @@ -23813,9 +23813,9 @@ "dev": true }, "chart.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.2.0.tgz", - "integrity": "sha512-wbtcV+QKeH0F7gQZaCJEIpsNriFheacouJQTVIjITi3eQA8bTlIBoknz0+dgV79aeKLNMAX+nDslIVE/nJ3rzA==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.2.1.tgz", + "integrity": "sha512-6YbpQ0nt3NovAgOzbkSSeeAQu/3za1319dPUQTXn9WcOpywM8rGKxJHrhS8V8xEkAlk8YhEfjbuAPfUyp6jIsw==", "requires": { "@kurkle/color": "^0.3.0" } diff --git a/package.json b/package.json index 7db375d048..43294a60e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@denbi/cloud-portal-webapp", - "version": "4.603.0", + "version": "4.604.0", "description": "de.NBI Cloud Portal", "scripts": { "ng": "ng serve", @@ -45,7 +45,7 @@ "angulartics2": "12.2.0", "billboard.js": "3.7.4", "bootstrap": "4.6.2", - "chart.js": "4.2.0", + "chart.js": "4.2.1", "cli-color": "2.0.3", "core-js": "3.27.2", "css-loader": "6.7.3", From bf71a236e090705862d0c62d10d2fdffa46b4436 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 10 Feb 2023 14:48:43 +0000 Subject: [PATCH 13/16] feat(Dependencies): Update angular-eslint monorepo to v15.2.1 | datasource | package | from | to | | ---------- | -------------------------------------- | ------ | ------ | | npm | @angular-eslint/builder | 15.2.0 | 15.2.1 | | npm | @angular-eslint/eslint-plugin-template | 15.2.0 | 15.2.1 | | npm | @angular-eslint/schematics | 15.2.0 | 15.2.1 | | npm | @angular-eslint/template-parser | 15.2.0 | 15.2.1 | --- package-lock.json | 300 +++++++++++++++++++++++----------------------- package.json | 10 +- 2 files changed, 155 insertions(+), 155 deletions(-) diff --git a/package-lock.json b/package-lock.json index 71b20d327b..8281d021d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@denbi/cloud-portal-webapp", - "version": "4.604.0", + "version": "4.605.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@denbi/cloud-portal-webapp", - "version": "4.604.0", + "version": "4.605.0", "hasInstallScript": true, "dependencies": { "@angular-eslint/eslint-plugin": "^15.2.0", @@ -78,10 +78,10 @@ }, "devDependencies": { "@angular-devkit/build-angular": "15.1.5", - "@angular-eslint/builder": "15.2.0", - "@angular-eslint/eslint-plugin-template": "15.2.0", - "@angular-eslint/schematics": "15.2.0", - "@angular-eslint/template-parser": "15.2.0", + "@angular-eslint/builder": "15.2.1", + "@angular-eslint/eslint-plugin-template": "15.2.1", + "@angular-eslint/schematics": "15.2.1", + "@angular-eslint/template-parser": "15.2.1", "@angular/cli": "15.1.5", "@angular/compiler-cli": "15.1.4", "@compodoc/compodoc": "1.1.19", @@ -432,9 +432,9 @@ "dev": true }, "node_modules/@angular-eslint/builder": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-15.2.0.tgz", - "integrity": "sha512-5xnJub1G7+F9Ra75N90Ln9yn/KFzWnMIHfqDVRRDrlwgja1Zc9ZmqcazLWc/k12yzKyJoO3uwBSycyVwG2fYVg==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-15.2.1.tgz", + "integrity": "sha512-7x2DANebLRl997Mj4DhZrnz5+vnSjavGGveJ0mBuU7CEsL0ZYLftdRqL0e0HtU3ksseS7xpchD6OM08nkNgySw==", "dev": true, "peerDependencies": { "eslint": "^7.20.0 || ^8.0.0", @@ -442,17 +442,17 @@ } }, "node_modules/@angular-eslint/bundled-angular-compiler": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-15.2.0.tgz", - "integrity": "sha512-a0bfXxYyGoWJHrVQ4QER0HdRgselcTtJeyqiFPAxID2ZxF0IBGKLNTtugUTXekEmiLev8yGLX9TqAtthN57fEg==" + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-15.2.1.tgz", + "integrity": "sha512-LO7Am8eVCr7oh6a0VmKSL7K03CnQEQhFO7Wt/YtbfYOxVjrbwmYLwJn+wZPOT7A02t/BttOD/WXuDrOWtSMQ/Q==" }, "node_modules/@angular-eslint/eslint-plugin": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-15.2.0.tgz", - "integrity": "sha512-yJGbmSUU0B0MFJ48ktpkqqEK+zv5k9iwlZSqEHtiQMKvDelfluovnEusihel7uPRo1c1iVlbSgXfGpxpUCfocA==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-15.2.1.tgz", + "integrity": "sha512-OM7b1kS4E4CkXjkaWN+lEzawh4VxY6l7FO1Cuk4s7iv3/YpZG3rJxIZBqnFLTixwrBuqw8y4FNBzF3eDgmFAUw==", "dependencies": { - "@angular-eslint/utils": "15.2.0", - "@typescript-eslint/utils": "5.48.1" + "@angular-eslint/utils": "15.2.1", + "@typescript-eslint/utils": "5.48.2" }, "peerDependencies": { "eslint": "^7.20.0 || ^8.0.0", @@ -460,15 +460,15 @@ } }, "node_modules/@angular-eslint/eslint-plugin-template": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-15.2.0.tgz", - "integrity": "sha512-aL3czf5Jpv29rKN3UG20tQepX1+V0d6xc0g+1l0zPHZJYjVd6Oy0nIxWiGfl4yanaXiVpmxiV4vUcLlqqaFwbw==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-15.2.1.tgz", + "integrity": "sha512-IeiSLk6YxapFdH2z5o/O3R7VwtBd2T6fWmhLFPwDYMDknrwegnOjwswCdBplOccpUp0wqlCeGUx7LTsuzwaz7w==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "15.2.0", - "@angular-eslint/utils": "15.2.0", - "@typescript-eslint/type-utils": "5.48.1", - "@typescript-eslint/utils": "5.48.1", + "@angular-eslint/bundled-angular-compiler": "15.2.1", + "@angular-eslint/utils": "15.2.1", + "@typescript-eslint/type-utils": "5.48.2", + "@typescript-eslint/utils": "5.48.2", "aria-query": "5.1.3", "axobject-query": "3.1.1" }, @@ -478,13 +478,13 @@ } }, "node_modules/@angular-eslint/schematics": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-15.2.0.tgz", - "integrity": "sha512-N9tuVu3vL47beppTsV9wAF+v6M9trbJnuNWYQGGsqA3mtCAkFUvJuHyWcXNPdSCNv/cJtR1OOJ7Y922uB5JPJQ==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-15.2.1.tgz", + "integrity": "sha512-0ZfBCejHWIcgy3J5kFs9sS/jqi8i5AptxggOwFySOlCLJ+CzNrktjD4jff1Zy8K/VLzY0Ci0BSZXvgWfP0k9Rg==", "dev": true, "dependencies": { - "@angular-eslint/eslint-plugin": "15.2.0", - "@angular-eslint/eslint-plugin-template": "15.2.0", + "@angular-eslint/eslint-plugin": "15.2.1", + "@angular-eslint/eslint-plugin-template": "15.2.1", "ignore": "5.2.4", "strip-json-comments": "3.1.1", "tmp": "0.2.1" @@ -494,12 +494,12 @@ } }, "node_modules/@angular-eslint/template-parser": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-15.2.0.tgz", - "integrity": "sha512-xnnxPfV/G0Ll3B0HGrF1ucsc/DHmNE6UhhmWxYPTERq0McbZGRiATa66hCoOZ/Rdylun4ogBfsRKAG8XxEvlvw==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-15.2.1.tgz", + "integrity": "sha512-ViCi79gC2aKJecmYLkOT+QlT5WMRNXeYz0Dr9Pr8qXzIbY0oAWE7nOT5jkXwQ9oUk+ybtGCWHma5JVJWVJsIog==", "dev": true, "dependencies": { - "@angular-eslint/bundled-angular-compiler": "15.2.0", + "@angular-eslint/bundled-angular-compiler": "15.2.1", "eslint-scope": "^7.0.0" }, "peerDependencies": { @@ -508,12 +508,12 @@ } }, "node_modules/@angular-eslint/utils": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-15.2.0.tgz", - "integrity": "sha512-qfTOKQ+aef/YER679/xN1E+FkZKMd0I73P6txUZAb9k2G1ACVktG+wOUIBfgjIlUVq9Q01AV91LGOWcd+rdEEA==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-15.2.1.tgz", + "integrity": "sha512-++FneAJHxJqcSu0igVN6uOkSoHxlzgLoMBswuovYJy3UKwm33/T6WFku8++753Ca/JucIoR1gdUfO7SoSspMDg==", "dependencies": { - "@angular-eslint/bundled-angular-compiler": "15.2.0", - "@typescript-eslint/utils": "5.48.1" + "@angular-eslint/bundled-angular-compiler": "15.2.1", + "@typescript-eslint/utils": "5.48.2" }, "peerDependencies": { "eslint": "^7.20.0 || ^8.0.0", @@ -4590,13 +4590,13 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.48.1.tgz", - "integrity": "sha512-Hyr8HU8Alcuva1ppmqSYtM/Gp0q4JOp1F+/JH5D1IZm/bUBrV0edoewQZiEc1r6I8L4JL21broddxK8HAcZiqQ==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.48.2.tgz", + "integrity": "sha512-QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "5.48.1", - "@typescript-eslint/utils": "5.48.1", + "@typescript-eslint/typescript-estree": "5.48.2", + "@typescript-eslint/utils": "5.48.2", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -4617,9 +4617,9 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/types": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.1.tgz", - "integrity": "sha512-xHyDLU6MSuEEdIlzrrAerCGS3T7AA/L8Hggd0RCYBi0w3JMvGYxlLlXHeg50JI9Tfg5MrtsfuNxbS/3zF1/ATg==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.2.tgz", + "integrity": "sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -4630,13 +4630,13 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.1.tgz", - "integrity": "sha512-Hut+Osk5FYr+sgFh8J/FHjqX6HFcDzTlWLrFqGoK5kVUN3VBHF/QzZmAsIXCQ8T/W9nQNBTqalxi1P3LSqWnRA==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.2.tgz", + "integrity": "sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.48.1", - "@typescript-eslint/visitor-keys": "5.48.1", + "@typescript-eslint/types": "5.48.2", + "@typescript-eslint/visitor-keys": "5.48.2", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -4657,12 +4657,12 @@ } }, "node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.1.tgz", - "integrity": "sha512-Ns0XBwmfuX7ZknznfXozgnydyR8F6ev/KEGePP4i74uL3ArsKbEhJ7raeKr1JSa997DBDwol/4a0Y+At82c9dA==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.2.tgz", + "integrity": "sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.48.1", + "@typescript-eslint/types": "5.48.2", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -4772,15 +4772,15 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.48.1.tgz", - "integrity": "sha512-SmQuSrCGUOdmGMwivW14Z0Lj8dxG1mOFZ7soeJ0TQZEJcs3n5Ndgkg0A4bcMFzBELqLJ6GTHnEU+iIoaD6hFGA==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.48.2.tgz", + "integrity": "sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow==", "dependencies": { "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.48.1", - "@typescript-eslint/types": "5.48.1", - "@typescript-eslint/typescript-estree": "5.48.1", + "@typescript-eslint/scope-manager": "5.48.2", + "@typescript-eslint/types": "5.48.2", + "@typescript-eslint/typescript-estree": "5.48.2", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0", "semver": "^7.3.7" @@ -4797,12 +4797,12 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/scope-manager": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.48.1.tgz", - "integrity": "sha512-S035ueRrbxRMKvSTv9vJKIWgr86BD8s3RqoRZmsSh/s8HhIs90g6UlK8ZabUSjUZQkhVxt7nmZ63VJ9dcZhtDQ==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.48.2.tgz", + "integrity": "sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw==", "dependencies": { - "@typescript-eslint/types": "5.48.1", - "@typescript-eslint/visitor-keys": "5.48.1" + "@typescript-eslint/types": "5.48.2", + "@typescript-eslint/visitor-keys": "5.48.2" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -4813,9 +4813,9 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/types": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.1.tgz", - "integrity": "sha512-xHyDLU6MSuEEdIlzrrAerCGS3T7AA/L8Hggd0RCYBi0w3JMvGYxlLlXHeg50JI9Tfg5MrtsfuNxbS/3zF1/ATg==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.2.tgz", + "integrity": "sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -4825,12 +4825,12 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.1.tgz", - "integrity": "sha512-Hut+Osk5FYr+sgFh8J/FHjqX6HFcDzTlWLrFqGoK5kVUN3VBHF/QzZmAsIXCQ8T/W9nQNBTqalxi1P3LSqWnRA==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.2.tgz", + "integrity": "sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==", "dependencies": { - "@typescript-eslint/types": "5.48.1", - "@typescript-eslint/visitor-keys": "5.48.1", + "@typescript-eslint/types": "5.48.2", + "@typescript-eslint/visitor-keys": "5.48.2", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -4851,11 +4851,11 @@ } }, "node_modules/@typescript-eslint/utils/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.1.tgz", - "integrity": "sha512-Ns0XBwmfuX7ZknznfXozgnydyR8F6ev/KEGePP4i74uL3ArsKbEhJ7raeKr1JSa997DBDwol/4a0Y+At82c9dA==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.2.tgz", + "integrity": "sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==", "dependencies": { - "@typescript-eslint/types": "5.48.1", + "@typescript-eslint/types": "5.48.2", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -19592,70 +19592,70 @@ } }, "@angular-eslint/builder": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-15.2.0.tgz", - "integrity": "sha512-5xnJub1G7+F9Ra75N90Ln9yn/KFzWnMIHfqDVRRDrlwgja1Zc9ZmqcazLWc/k12yzKyJoO3uwBSycyVwG2fYVg==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/builder/-/builder-15.2.1.tgz", + "integrity": "sha512-7x2DANebLRl997Mj4DhZrnz5+vnSjavGGveJ0mBuU7CEsL0ZYLftdRqL0e0HtU3ksseS7xpchD6OM08nkNgySw==", "dev": true, "requires": {} }, "@angular-eslint/bundled-angular-compiler": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-15.2.0.tgz", - "integrity": "sha512-a0bfXxYyGoWJHrVQ4QER0HdRgselcTtJeyqiFPAxID2ZxF0IBGKLNTtugUTXekEmiLev8yGLX9TqAtthN57fEg==" + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/bundled-angular-compiler/-/bundled-angular-compiler-15.2.1.tgz", + "integrity": "sha512-LO7Am8eVCr7oh6a0VmKSL7K03CnQEQhFO7Wt/YtbfYOxVjrbwmYLwJn+wZPOT7A02t/BttOD/WXuDrOWtSMQ/Q==" }, "@angular-eslint/eslint-plugin": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-15.2.0.tgz", - "integrity": "sha512-yJGbmSUU0B0MFJ48ktpkqqEK+zv5k9iwlZSqEHtiQMKvDelfluovnEusihel7uPRo1c1iVlbSgXfGpxpUCfocA==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin/-/eslint-plugin-15.2.1.tgz", + "integrity": "sha512-OM7b1kS4E4CkXjkaWN+lEzawh4VxY6l7FO1Cuk4s7iv3/YpZG3rJxIZBqnFLTixwrBuqw8y4FNBzF3eDgmFAUw==", "requires": { - "@angular-eslint/utils": "15.2.0", - "@typescript-eslint/utils": "5.48.1" + "@angular-eslint/utils": "15.2.1", + "@typescript-eslint/utils": "5.48.2" } }, "@angular-eslint/eslint-plugin-template": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-15.2.0.tgz", - "integrity": "sha512-aL3czf5Jpv29rKN3UG20tQepX1+V0d6xc0g+1l0zPHZJYjVd6Oy0nIxWiGfl4yanaXiVpmxiV4vUcLlqqaFwbw==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/eslint-plugin-template/-/eslint-plugin-template-15.2.1.tgz", + "integrity": "sha512-IeiSLk6YxapFdH2z5o/O3R7VwtBd2T6fWmhLFPwDYMDknrwegnOjwswCdBplOccpUp0wqlCeGUx7LTsuzwaz7w==", "dev": true, "requires": { - "@angular-eslint/bundled-angular-compiler": "15.2.0", - "@angular-eslint/utils": "15.2.0", - "@typescript-eslint/type-utils": "5.48.1", - "@typescript-eslint/utils": "5.48.1", + "@angular-eslint/bundled-angular-compiler": "15.2.1", + "@angular-eslint/utils": "15.2.1", + "@typescript-eslint/type-utils": "5.48.2", + "@typescript-eslint/utils": "5.48.2", "aria-query": "5.1.3", "axobject-query": "3.1.1" } }, "@angular-eslint/schematics": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-15.2.0.tgz", - "integrity": "sha512-N9tuVu3vL47beppTsV9wAF+v6M9trbJnuNWYQGGsqA3mtCAkFUvJuHyWcXNPdSCNv/cJtR1OOJ7Y922uB5JPJQ==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/schematics/-/schematics-15.2.1.tgz", + "integrity": "sha512-0ZfBCejHWIcgy3J5kFs9sS/jqi8i5AptxggOwFySOlCLJ+CzNrktjD4jff1Zy8K/VLzY0Ci0BSZXvgWfP0k9Rg==", "dev": true, "requires": { - "@angular-eslint/eslint-plugin": "15.2.0", - "@angular-eslint/eslint-plugin-template": "15.2.0", + "@angular-eslint/eslint-plugin": "15.2.1", + "@angular-eslint/eslint-plugin-template": "15.2.1", "ignore": "5.2.4", "strip-json-comments": "3.1.1", "tmp": "0.2.1" } }, "@angular-eslint/template-parser": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-15.2.0.tgz", - "integrity": "sha512-xnnxPfV/G0Ll3B0HGrF1ucsc/DHmNE6UhhmWxYPTERq0McbZGRiATa66hCoOZ/Rdylun4ogBfsRKAG8XxEvlvw==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/template-parser/-/template-parser-15.2.1.tgz", + "integrity": "sha512-ViCi79gC2aKJecmYLkOT+QlT5WMRNXeYz0Dr9Pr8qXzIbY0oAWE7nOT5jkXwQ9oUk+ybtGCWHma5JVJWVJsIog==", "dev": true, "requires": { - "@angular-eslint/bundled-angular-compiler": "15.2.0", + "@angular-eslint/bundled-angular-compiler": "15.2.1", "eslint-scope": "^7.0.0" } }, "@angular-eslint/utils": { - "version": "15.2.0", - "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-15.2.0.tgz", - "integrity": "sha512-qfTOKQ+aef/YER679/xN1E+FkZKMd0I73P6txUZAb9k2G1ACVktG+wOUIBfgjIlUVq9Q01AV91LGOWcd+rdEEA==", + "version": "15.2.1", + "resolved": "https://registry.npmjs.org/@angular-eslint/utils/-/utils-15.2.1.tgz", + "integrity": "sha512-++FneAJHxJqcSu0igVN6uOkSoHxlzgLoMBswuovYJy3UKwm33/T6WFku8++753Ca/JucIoR1gdUfO7SoSspMDg==", "requires": { - "@angular-eslint/bundled-angular-compiler": "15.2.0", - "@typescript-eslint/utils": "5.48.1" + "@angular-eslint/bundled-angular-compiler": "15.2.1", + "@typescript-eslint/utils": "5.48.2" } }, "@angular/animations": { @@ -22553,31 +22553,31 @@ } }, "@typescript-eslint/type-utils": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.48.1.tgz", - "integrity": "sha512-Hyr8HU8Alcuva1ppmqSYtM/Gp0q4JOp1F+/JH5D1IZm/bUBrV0edoewQZiEc1r6I8L4JL21broddxK8HAcZiqQ==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.48.2.tgz", + "integrity": "sha512-QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew==", "dev": true, "requires": { - "@typescript-eslint/typescript-estree": "5.48.1", - "@typescript-eslint/utils": "5.48.1", + "@typescript-eslint/typescript-estree": "5.48.2", + "@typescript-eslint/utils": "5.48.2", "debug": "^4.3.4", "tsutils": "^3.21.0" }, "dependencies": { "@typescript-eslint/types": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.1.tgz", - "integrity": "sha512-xHyDLU6MSuEEdIlzrrAerCGS3T7AA/L8Hggd0RCYBi0w3JMvGYxlLlXHeg50JI9Tfg5MrtsfuNxbS/3zF1/ATg==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.2.tgz", + "integrity": "sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==", "dev": true }, "@typescript-eslint/typescript-estree": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.1.tgz", - "integrity": "sha512-Hut+Osk5FYr+sgFh8J/FHjqX6HFcDzTlWLrFqGoK5kVUN3VBHF/QzZmAsIXCQ8T/W9nQNBTqalxi1P3LSqWnRA==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.2.tgz", + "integrity": "sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==", "dev": true, "requires": { - "@typescript-eslint/types": "5.48.1", - "@typescript-eslint/visitor-keys": "5.48.1", + "@typescript-eslint/types": "5.48.2", + "@typescript-eslint/visitor-keys": "5.48.2", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -22586,12 +22586,12 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.1.tgz", - "integrity": "sha512-Ns0XBwmfuX7ZknznfXozgnydyR8F6ev/KEGePP4i74uL3ArsKbEhJ7raeKr1JSa997DBDwol/4a0Y+At82c9dA==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.2.tgz", + "integrity": "sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==", "dev": true, "requires": { - "@typescript-eslint/types": "5.48.1", + "@typescript-eslint/types": "5.48.2", "eslint-visitor-keys": "^3.3.0" } }, @@ -22661,41 +22661,41 @@ } }, "@typescript-eslint/utils": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.48.1.tgz", - "integrity": "sha512-SmQuSrCGUOdmGMwivW14Z0Lj8dxG1mOFZ7soeJ0TQZEJcs3n5Ndgkg0A4bcMFzBELqLJ6GTHnEU+iIoaD6hFGA==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.48.2.tgz", + "integrity": "sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow==", "requires": { "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.48.1", - "@typescript-eslint/types": "5.48.1", - "@typescript-eslint/typescript-estree": "5.48.1", + "@typescript-eslint/scope-manager": "5.48.2", + "@typescript-eslint/types": "5.48.2", + "@typescript-eslint/typescript-estree": "5.48.2", "eslint-scope": "^5.1.1", "eslint-utils": "^3.0.0", "semver": "^7.3.7" }, "dependencies": { "@typescript-eslint/scope-manager": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.48.1.tgz", - "integrity": "sha512-S035ueRrbxRMKvSTv9vJKIWgr86BD8s3RqoRZmsSh/s8HhIs90g6UlK8ZabUSjUZQkhVxt7nmZ63VJ9dcZhtDQ==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.48.2.tgz", + "integrity": "sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw==", "requires": { - "@typescript-eslint/types": "5.48.1", - "@typescript-eslint/visitor-keys": "5.48.1" + "@typescript-eslint/types": "5.48.2", + "@typescript-eslint/visitor-keys": "5.48.2" } }, "@typescript-eslint/types": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.1.tgz", - "integrity": "sha512-xHyDLU6MSuEEdIlzrrAerCGS3T7AA/L8Hggd0RCYBi0w3JMvGYxlLlXHeg50JI9Tfg5MrtsfuNxbS/3zF1/ATg==" + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.2.tgz", + "integrity": "sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==" }, "@typescript-eslint/typescript-estree": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.1.tgz", - "integrity": "sha512-Hut+Osk5FYr+sgFh8J/FHjqX6HFcDzTlWLrFqGoK5kVUN3VBHF/QzZmAsIXCQ8T/W9nQNBTqalxi1P3LSqWnRA==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.2.tgz", + "integrity": "sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==", "requires": { - "@typescript-eslint/types": "5.48.1", - "@typescript-eslint/visitor-keys": "5.48.1", + "@typescript-eslint/types": "5.48.2", + "@typescript-eslint/visitor-keys": "5.48.2", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -22704,11 +22704,11 @@ } }, "@typescript-eslint/visitor-keys": { - "version": "5.48.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.1.tgz", - "integrity": "sha512-Ns0XBwmfuX7ZknznfXozgnydyR8F6ev/KEGePP4i74uL3ArsKbEhJ7raeKr1JSa997DBDwol/4a0Y+At82c9dA==", + "version": "5.48.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.2.tgz", + "integrity": "sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==", "requires": { - "@typescript-eslint/types": "5.48.1", + "@typescript-eslint/types": "5.48.2", "eslint-visitor-keys": "^3.3.0" } }, diff --git a/package.json b/package.json index 43294a60e5..a7862bb281 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@denbi/cloud-portal-webapp", - "version": "4.604.0", + "version": "4.605.0", "description": "de.NBI Cloud Portal", "scripts": { "ng": "ng serve", @@ -88,10 +88,10 @@ }, "devDependencies": { "@angular-devkit/build-angular": "15.1.5", - "@angular-eslint/builder": "15.2.0", - "@angular-eslint/eslint-plugin-template": "15.2.0", - "@angular-eslint/schematics": "15.2.0", - "@angular-eslint/template-parser": "15.2.0", + "@angular-eslint/builder": "15.2.1", + "@angular-eslint/eslint-plugin-template": "15.2.1", + "@angular-eslint/schematics": "15.2.1", + "@angular-eslint/template-parser": "15.2.1", "@angular/cli": "15.1.5", "@angular/compiler-cli": "15.1.4", "@compodoc/compodoc": "1.1.19", From 3eefb3c0722548bf0fb0c0fac52f5aab19700dcd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 11 Feb 2023 18:37:28 +0000 Subject: [PATCH 14/16] feat(Dependencies): Update dependency eslint-plugin-jsdoc to v40 | datasource | package | from | to | | ---------- | ------------------- | ------ | ------ | | npm | eslint-plugin-jsdoc | 39.8.0 | 40.0.0 | --- package-lock.json | 18 +++++++++--------- package.json | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8281d021d3..0aebfc5382 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@denbi/cloud-portal-webapp", - "version": "4.605.0", + "version": "4.606.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@denbi/cloud-portal-webapp", - "version": "4.605.0", + "version": "4.606.0", "hasInstallScript": true, "dependencies": { "@angular-eslint/eslint-plugin": "^15.2.0", @@ -96,7 +96,7 @@ "eslint": "^8.28.0", "eslint-config-airbnb-base": "15.0.0", "eslint-plugin-import": "2.27.5", - "eslint-plugin-jsdoc": "39.8.0", + "eslint-plugin-jsdoc": "40.0.0", "eslint-plugin-no-null": "latest", "eslint-plugin-prefer-arrow": "1.2.3", "exports-loader": "4.0.0", @@ -8916,9 +8916,9 @@ } }, "node_modules/eslint-plugin-jsdoc": { - "version": "39.8.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.8.0.tgz", - "integrity": "sha512-ZwGmk0jJoJD/NILeDRBKrpq/PCgddUdATjeU5JGTqTzKsOWfeaHOnaAwZjuOh7T8EB4hSoZ/9pR4+Qns2ldQVg==", + "version": "40.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.0.0.tgz", + "integrity": "sha512-LOPyIu1vAVvGPkye3ci0moj0iNf3f8bmin6do2DYDj+77NRXWnkmhKRy8swWsatUs3mB5jYPWPUsFg9pyfEiyA==", "dev": true, "dependencies": { "@es-joy/jsdoccomment": "~0.36.1", @@ -25948,9 +25948,9 @@ } }, "eslint-plugin-jsdoc": { - "version": "39.8.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-39.8.0.tgz", - "integrity": "sha512-ZwGmk0jJoJD/NILeDRBKrpq/PCgddUdATjeU5JGTqTzKsOWfeaHOnaAwZjuOh7T8EB4hSoZ/9pR4+Qns2ldQVg==", + "version": "40.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-40.0.0.tgz", + "integrity": "sha512-LOPyIu1vAVvGPkye3ci0moj0iNf3f8bmin6do2DYDj+77NRXWnkmhKRy8swWsatUs3mB5jYPWPUsFg9pyfEiyA==", "dev": true, "requires": { "@es-joy/jsdoccomment": "~0.36.1", diff --git a/package.json b/package.json index a7862bb281..48fd385128 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@denbi/cloud-portal-webapp", - "version": "4.605.0", + "version": "4.606.0", "description": "de.NBI Cloud Portal", "scripts": { "ng": "ng serve", @@ -106,7 +106,7 @@ "eslint": "^8.28.0", "eslint-config-airbnb-base": "15.0.0", "eslint-plugin-import": "2.27.5", - "eslint-plugin-jsdoc": "39.8.0", + "eslint-plugin-jsdoc": "40.0.0", "eslint-plugin-no-null": "latest", "eslint-plugin-prefer-arrow": "1.2.3", "exports-loader": "4.0.0", From 82c70214a78727d9513b86512aeddbf7aebcca59 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 21:37:18 +0000 Subject: [PATCH 15/16] feat(Dependencies): Update dependency lint-staged to v13.1.2 | datasource | package | from | to | | ---------- | ----------- | ------ | ------ | | npm | lint-staged | 13.1.1 | 13.1.2 | --- package-lock.json | 18 +++++++++--------- package.json | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0aebfc5382..6f7aa0e1f2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@denbi/cloud-portal-webapp", - "version": "4.606.0", + "version": "4.607.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@denbi/cloud-portal-webapp", - "version": "4.606.0", + "version": "4.607.0", "hasInstallScript": true, "dependencies": { "@angular-eslint/eslint-plugin": "^15.2.0", @@ -107,7 +107,7 @@ "karma": "6.4.1", "karma-chrome-launcher": "3.1.1", "less-loader": "11.1.0", - "lint-staged": "13.1.1", + "lint-staged": "13.1.2", "ngx-spec": "2.1.5", "npm-run-all": "4.1.5", "prettier": "2.8.4", @@ -12144,9 +12144,9 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "node_modules/lint-staged": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.1.1.tgz", - "integrity": "sha512-LLJLO0Kdbcv2a+CvSF4p1M7jBZOajKSMpBUvyR8+bXccsqPER0/NxTFQSpNHjqwV9kM3tkHczYerTB5wI+bksQ==", + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.1.2.tgz", + "integrity": "sha512-K9b4FPbWkpnupvK3WXZLbgu9pchUJ6N7TtVZjbaPsoizkqFUDkUReUL25xdrCljJs7uLUF3tZ7nVPeo/6lp+6w==", "dev": true, "dependencies": { "cli-truncate": "^3.1.0", @@ -28160,9 +28160,9 @@ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, "lint-staged": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.1.1.tgz", - "integrity": "sha512-LLJLO0Kdbcv2a+CvSF4p1M7jBZOajKSMpBUvyR8+bXccsqPER0/NxTFQSpNHjqwV9kM3tkHczYerTB5wI+bksQ==", + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.1.2.tgz", + "integrity": "sha512-K9b4FPbWkpnupvK3WXZLbgu9pchUJ6N7TtVZjbaPsoizkqFUDkUReUL25xdrCljJs7uLUF3tZ7nVPeo/6lp+6w==", "dev": true, "requires": { "cli-truncate": "^3.1.0", diff --git a/package.json b/package.json index 48fd385128..431f7b78b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@denbi/cloud-portal-webapp", - "version": "4.606.0", + "version": "4.607.0", "description": "de.NBI Cloud Portal", "scripts": { "ng": "ng serve", @@ -117,7 +117,7 @@ "karma": "6.4.1", "karma-chrome-launcher": "3.1.1", "less-loader": "11.1.0", - "lint-staged": "13.1.1", + "lint-staged": "13.1.2", "ngx-spec": "2.1.5", "npm-run-all": "4.1.5", "prettier": "2.8.4", From d26cebe89fe6315c62d2d4c563ca4f8a14be65c7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 14 Feb 2023 03:34:36 +0000 Subject: [PATCH 16/16] feat(Dependencies): Update dependency core-js to v3.28.0 | datasource | package | from | to | | ---------- | ------- | ------ | ------ | | npm | core-js | 3.27.2 | 3.28.0 | --- package-lock.json | 18 +++++++++--------- package.json | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6f7aa0e1f2..aca9e133f7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@denbi/cloud-portal-webapp", - "version": "4.607.0", + "version": "4.608.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@denbi/cloud-portal-webapp", - "version": "4.607.0", + "version": "4.608.0", "hasInstallScript": true, "dependencies": { "@angular-eslint/eslint-plugin": "^15.2.0", @@ -37,7 +37,7 @@ "bootstrap": "4.6.2", "chart.js": "4.2.1", "cli-color": "2.0.3", - "core-js": "3.27.2", + "core-js": "3.28.0", "css-loader": "6.7.3", "cssnano": "5.1.14", "d3": "7.8.2", @@ -6914,9 +6914,9 @@ } }, "node_modules/core-js": { - "version": "3.27.2", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.27.2.tgz", - "integrity": "sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w==", + "version": "3.28.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.28.0.tgz", + "integrity": "sha512-GiZn9D4Z/rSYvTeg1ljAIsEqFm0LaN9gVtwDCrKL80zHtS31p9BAjmTxVqTQDMpwlMolJZOFntUG2uwyj7DAqw==", "hasInstallScript": true, "funding": { "type": "opencollective", @@ -24274,9 +24274,9 @@ } }, "core-js": { - "version": "3.27.2", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.27.2.tgz", - "integrity": "sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w==" + "version": "3.28.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.28.0.tgz", + "integrity": "sha512-GiZn9D4Z/rSYvTeg1ljAIsEqFm0LaN9gVtwDCrKL80zHtS31p9BAjmTxVqTQDMpwlMolJZOFntUG2uwyj7DAqw==" }, "core-js-compat": { "version": "3.27.2", diff --git a/package.json b/package.json index 431f7b78b9..04a890486c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@denbi/cloud-portal-webapp", - "version": "4.607.0", + "version": "4.608.0", "description": "de.NBI Cloud Portal", "scripts": { "ng": "ng serve", @@ -47,7 +47,7 @@ "bootstrap": "4.6.2", "chart.js": "4.2.1", "cli-color": "2.0.3", - "core-js": "3.27.2", + "core-js": "3.28.0", "css-loader": "6.7.3", "cssnano": "5.1.14", "d3": "7.8.2",