From 74cfdd0aadc3ab5475f69b01b835d6aaca05213d Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 09:28:38 +0100 Subject: [PATCH 01/14] [SSP-4516] format old claim center number --- packages/pipes/README.md | 2 ++ packages/pipes/src/balClaimNumber.ts | 29 ++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/packages/pipes/README.md b/packages/pipes/README.md index 894cf29..8cb0ff1 100644 --- a/packages/pipes/README.md +++ b/packages/pipes/README.md @@ -61,6 +61,8 @@ Transforms the given string into the correct claim-number format. ```typescript balClaimNumber('73001217169') // 73/001217/16.9 +balClaimNumber('412345678221') // 4.12345678.22.1 +balClaimNumber('400045678221') // 4.45678.22.1 // Leading zeros in the serial number are not displayed on documents and screens ``` ### balContractNumber diff --git a/packages/pipes/src/balClaimNumber.ts b/packages/pipes/src/balClaimNumber.ts index 2154ec7..5c66e26 100644 --- a/packages/pipes/src/balClaimNumber.ts +++ b/packages/pipes/src/balClaimNumber.ts @@ -1,8 +1,14 @@ +const KOSSY_CLAIM_NUMBER = 11 +const CLAIM_CENTER_CLAIM_NUMBER = 12 + /** * Transforms the given string into the correct claim-number format. * * ```typescript * balClaimNumber('73001217169') // 73/001217/16.9 + * balClaimNumber('412345678221') // 4.12345678.22.1 // L.NNNNNNNN.JJ.P + * balClaimNumber('400045678221') // 4.45678.22.1 + * balClaimNumber('400045678021') // 4.45678.2.1 * ``` */ export function balClaimNumber(value: string | undefined | null | number): string { @@ -10,9 +16,32 @@ export function balClaimNumber(value: string | undefined | null | number): strin return '' } value = `${value}` + if (value.length === KOSSY_CLAIM_NUMBER) { + handleKossyClaimNumber(value); + } else if (value.length === CLAIM_CENTER_CLAIM_NUMBER) { + handleClaimCenterClaimNumber(value); + } + return value +} + +function handleKossyClaimNumber(value: string): string { const parts = value.match(/^(\d{2})(\d{6})(\d{2})(\w{1})$/) if (!parts) { return value } return `${parts[1]}/${parts[2]}/${parts[3]}.${parts[4]}` } + +function handleClaimCenterClaimNumber(value: string): string { + const parts = value.match(/^(\d)(\d{8})(\d{2})(\d)$/) + if (!parts) { + return value + } + return `${removeLeadingZeros(parts[1])}.${removeLeadingZeros(parts[2])}.${removeLeadingZeros(parts[3])}.${removeLeadingZeros(parts[4])}` +} + +function removeLeadingZeros(str: string): string { + return str.replace(/^0+/, '') +} + + From 624b5448df2707429013a3b9fd944b581d6ec177 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 09:40:49 +0100 Subject: [PATCH 02/14] fix: [SSP-4516] format claim center claim number --- packages/pipes/src/balClaimNumber.spec.ts | 6 ++++++ packages/pipes/src/balClaimNumber.ts | 12 ++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/packages/pipes/src/balClaimNumber.spec.ts b/packages/pipes/src/balClaimNumber.spec.ts index 7b0309b..c617595 100644 --- a/packages/pipes/src/balClaimNumber.spec.ts +++ b/packages/pipes/src/balClaimNumber.spec.ts @@ -13,4 +13,10 @@ describe('balClaimNumber', () => { test('should format a claim number with a sign postfix correctly', () => { expect(balClaimNumber('7300772816X')).toBe('73/007728/16.X') }) + test('should format claimcenter claim number correctly', () => { + expect(balClaimNumber(' 412345678221 ')).toBe('4.12345678.22.1') + }) + test('should format claimcenter claim number with zeros correctly', () => { + expect(balClaimNumber('400045678021 ')).toBe('4.45678.2.1') + }) }) diff --git a/packages/pipes/src/balClaimNumber.ts b/packages/pipes/src/balClaimNumber.ts index 5c66e26..fc145a4 100644 --- a/packages/pipes/src/balClaimNumber.ts +++ b/packages/pipes/src/balClaimNumber.ts @@ -15,11 +15,11 @@ export function balClaimNumber(value: string | undefined | null | number): strin if (!value) { return '' } - value = `${value}` + value = `${value}`.trim() if (value.length === KOSSY_CLAIM_NUMBER) { - handleKossyClaimNumber(value); + return handleKossyClaimNumber(value) } else if (value.length === CLAIM_CENTER_CLAIM_NUMBER) { - handleClaimCenterClaimNumber(value); + return handleClaimCenterClaimNumber(value) } return value } @@ -37,11 +37,11 @@ function handleClaimCenterClaimNumber(value: string): string { if (!parts) { return value } - return `${removeLeadingZeros(parts[1])}.${removeLeadingZeros(parts[2])}.${removeLeadingZeros(parts[3])}.${removeLeadingZeros(parts[4])}` + return `${removeLeadingZeros(parts[1])}.${removeLeadingZeros(parts[2])}.${removeLeadingZeros( + parts[3], + )}.${removeLeadingZeros(parts[4])}` } function removeLeadingZeros(str: string): string { return str.replace(/^0+/, '') } - - From 5624bca174b3115303586ff19dc6393dddeb9ba2 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 12:09:17 +0100 Subject: [PATCH 03/14] fix: [SSP-4516] logs added --- packages/pipes/src/balClaimNumber.spec.ts | 3 +++ packages/pipes/src/balClaimNumber.ts | 3 +++ 2 files changed, 6 insertions(+) diff --git a/packages/pipes/src/balClaimNumber.spec.ts b/packages/pipes/src/balClaimNumber.spec.ts index c617595..8260075 100644 --- a/packages/pipes/src/balClaimNumber.spec.ts +++ b/packages/pipes/src/balClaimNumber.spec.ts @@ -19,4 +19,7 @@ describe('balClaimNumber', () => { test('should format claimcenter claim number with zeros correctly', () => { expect(balClaimNumber('400045678021 ')).toBe('4.45678.2.1') }) + test('should format claimcenter claim number with zeros correctly', () => { + expect(balClaimNumber(400045678121)).toBe('4.45678.12.1') + }) }) diff --git a/packages/pipes/src/balClaimNumber.ts b/packages/pipes/src/balClaimNumber.ts index fc145a4..1030d7b 100644 --- a/packages/pipes/src/balClaimNumber.ts +++ b/packages/pipes/src/balClaimNumber.ts @@ -16,6 +16,7 @@ export function balClaimNumber(value: string | undefined | null | number): strin return '' } value = `${value}`.trim() + console.log('domi balClaimNumber value:', value.length) if (value.length === KOSSY_CLAIM_NUMBER) { return handleKossyClaimNumber(value) } else if (value.length === CLAIM_CENTER_CLAIM_NUMBER) { @@ -26,6 +27,7 @@ export function balClaimNumber(value: string | undefined | null | number): strin function handleKossyClaimNumber(value: string): string { const parts = value.match(/^(\d{2})(\d{6})(\d{2})(\w{1})$/) + console.log('domi handle kossy:', value.length) if (!parts) { return value } @@ -34,6 +36,7 @@ function handleKossyClaimNumber(value: string): string { function handleClaimCenterClaimNumber(value: string): string { const parts = value.match(/^(\d)(\d{8})(\d{2})(\d)$/) + console.log('domi handle claimcenter:', value.length) if (!parts) { return value } From 91c27fc2a8005fce2a4f047eb2256c0a3899d0a9 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 12:10:41 +0100 Subject: [PATCH 04/14] fix: [SSP-4516] format fix --- packages/pipes/src/balClaimNumber.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/pipes/src/balClaimNumber.ts b/packages/pipes/src/balClaimNumber.ts index 1030d7b..1a0f9e9 100644 --- a/packages/pipes/src/balClaimNumber.ts +++ b/packages/pipes/src/balClaimNumber.ts @@ -40,9 +40,10 @@ function handleClaimCenterClaimNumber(value: string): string { if (!parts) { return value } - return `${removeLeadingZeros(parts[1])}.${removeLeadingZeros(parts[2])}.${removeLeadingZeros( - parts[3], - )}.${removeLeadingZeros(parts[4])}` + return `${removeLeadingZeros(parts[1])}'+ + '.${removeLeadingZeros(parts[2])}'+ + '.${removeLeadingZeros(parts[3])}'+ + '.${removeLeadingZeros(parts[4])}` } function removeLeadingZeros(str: string): string { From ea824e22e89b7a9ccd237500e7d247ae5ea752af Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 12:12:57 +0100 Subject: [PATCH 05/14] fix: [SSP-4516] format fix --- packages/pipes/src/balClaimNumber.ts | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/packages/pipes/src/balClaimNumber.ts b/packages/pipes/src/balClaimNumber.ts index 1a0f9e9..1d59bbe 100644 --- a/packages/pipes/src/balClaimNumber.ts +++ b/packages/pipes/src/balClaimNumber.ts @@ -40,10 +40,15 @@ function handleClaimCenterClaimNumber(value: string): string { if (!parts) { return value } - return `${removeLeadingZeros(parts[1])}'+ - '.${removeLeadingZeros(parts[2])}'+ - '.${removeLeadingZeros(parts[3])}'+ - '.${removeLeadingZeros(parts[4])}` + return ( + removeLeadingZeros(parts[1]) + + '.' + + removeLeadingZeros(parts[2]) + + '.' + + removeLeadingZeros(parts[3]) + + '.' + + removeLeadingZeros(parts[4]) + ) } function removeLeadingZeros(str: string): string { From b4e41afc8384b037b41c7a99b11ba317e950d4f6 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 12:59:34 +0100 Subject: [PATCH 06/14] fix: [SSP-4516] logs removed --- packages/pipes/src/balClaimNumber.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/pipes/src/balClaimNumber.ts b/packages/pipes/src/balClaimNumber.ts index 1d59bbe..e7f6992 100644 --- a/packages/pipes/src/balClaimNumber.ts +++ b/packages/pipes/src/balClaimNumber.ts @@ -16,7 +16,6 @@ export function balClaimNumber(value: string | undefined | null | number): strin return '' } value = `${value}`.trim() - console.log('domi balClaimNumber value:', value.length) if (value.length === KOSSY_CLAIM_NUMBER) { return handleKossyClaimNumber(value) } else if (value.length === CLAIM_CENTER_CLAIM_NUMBER) { @@ -27,7 +26,6 @@ export function balClaimNumber(value: string | undefined | null | number): strin function handleKossyClaimNumber(value: string): string { const parts = value.match(/^(\d{2})(\d{6})(\d{2})(\w{1})$/) - console.log('domi handle kossy:', value.length) if (!parts) { return value } @@ -36,7 +34,6 @@ function handleKossyClaimNumber(value: string): string { function handleClaimCenterClaimNumber(value: string): string { const parts = value.match(/^(\d)(\d{8})(\d{2})(\d)$/) - console.log('domi handle claimcenter:', value.length) if (!parts) { return value } From fe0d6e417b509dc688349b8fb6d682f0b29b9df0 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 12:28:34 +0000 Subject: [PATCH 07/14] chore(): update build artifacts --- packages/pipes/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/pipes/README.md b/packages/pipes/README.md index 8cb0ff1..67851ad 100644 --- a/packages/pipes/README.md +++ b/packages/pipes/README.md @@ -61,8 +61,9 @@ Transforms the given string into the correct claim-number format. ```typescript balClaimNumber('73001217169') // 73/001217/16.9 -balClaimNumber('412345678221') // 4.12345678.22.1 -balClaimNumber('400045678221') // 4.45678.22.1 // Leading zeros in the serial number are not displayed on documents and screens +balClaimNumber('412345678221') // 4.12345678.22.1 // L.NNNNNNNN.JJ.P +balClaimNumber('400045678221') // 4.45678.22.1 +balClaimNumber('400045678021') // 4.45678.2.1 ``` ### balContractNumber From 009ee6d96fb34fa30004f69850c38cc6a0f42dde Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 12:28:43 +0000 Subject: [PATCH 08/14] chore(release): publish v3.16.2 --- lerna.json | 2 +- packages/clean-architecture/package-lock.json | 6 +++--- packages/clean-architecture/package.json | 2 +- packages/form-vue/package-lock.json | 8 ++++---- packages/form-vue/package.json | 4 ++-- packages/pipes-angular/package-lock.json | 8 ++++---- packages/pipes-angular/package.json | 4 ++-- packages/pipes-vue/package-lock.json | 8 ++++---- packages/pipes-vue/package.json | 4 ++-- packages/pipes/package-lock.json | 8 ++++---- packages/pipes/package.json | 4 ++-- packages/unsupported-browsers/package-lock.json | 6 +++--- packages/unsupported-browsers/package.json | 2 +- packages/utils/package-lock.json | 6 +++--- packages/utils/package.json | 2 +- packages/validators-angular/package-lock.json | 8 ++++---- packages/validators-angular/package.json | 4 ++-- packages/validators-vue/package-lock.json | 8 ++++---- packages/validators-vue/package.json | 4 ++-- packages/validators/package-lock.json | 8 ++++---- packages/validators/package.json | 4 ++-- 21 files changed, 55 insertions(+), 55 deletions(-) diff --git a/lerna.json b/lerna.json index ab7bc78..c080c0a 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.16.1", + "version": "3.16.2", "granularPathspec": false, "packages": [ "packages/*" diff --git a/packages/clean-architecture/package-lock.json b/packages/clean-architecture/package-lock.json index 4e787f0..db4eefe 100644 --- a/packages/clean-architecture/package-lock.json +++ b/packages/clean-architecture/package-lock.json @@ -1,12 +1,12 @@ { "name": "@baloise/web-app-clean-architecture", - "version": "3.14.0", + "version": "3.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-clean-architecture", - "version": "3.14.0", + "version": "3.16.2", "license": "Apache-2.0", "dependencies": { "@types/lodash.clonedeep": "^4.5.7", @@ -995,4 +995,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/clean-architecture/package.json b/packages/clean-architecture/package.json index a838e00..f239b09 100644 --- a/packages/clean-architecture/package.json +++ b/packages/clean-architecture/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-clean-architecture", - "version": "3.14.0", + "version": "3.16.2", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", diff --git a/packages/form-vue/package-lock.json b/packages/form-vue/package-lock.json index 5df1990..66bf8bc 100644 --- a/packages/form-vue/package-lock.json +++ b/packages/form-vue/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-form-vue", - "version": "3.16.1", + "version": "3.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-form-vue", - "version": "3.16.1", + "version": "3.16.2", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.1" + "@baloise/web-app-validators": "^3.16.2" }, "devDependencies": { "@baloise/design-system-components": "^10.12.0", @@ -2150,4 +2150,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/form-vue/package.json b/packages/form-vue/package.json index c0acca1..8779eba 100644 --- a/packages/form-vue/package.json +++ b/packages/form-vue/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-form-vue", - "version": "3.16.1", + "version": "3.16.2", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -50,6 +50,6 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-validators": "^3.16.1" + "@baloise/web-app-validators": "^3.16.2" } } diff --git a/packages/pipes-angular/package-lock.json b/packages/pipes-angular/package-lock.json index a6858e5..fca9cca 100644 --- a/packages/pipes-angular/package-lock.json +++ b/packages/pipes-angular/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-pipes-angular", - "version": "3.16.1", + "version": "3.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes-angular", - "version": "3.16.1", + "version": "3.16.2", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.1", + "@baloise/web-app-pipes": "^3.16.2", "tslib": "^2.2.0" }, "devDependencies": { @@ -7278,4 +7278,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/pipes-angular/package.json b/packages/pipes-angular/package.json index 591c688..8a44b43 100644 --- a/packages/pipes-angular/package.json +++ b/packages/pipes-angular/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-pipes-angular", - "version": "3.16.1", + "version": "3.16.2", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -29,7 +29,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.1", + "@baloise/web-app-pipes": "^3.16.2", "tslib": "^2.2.0" }, "peerDependencies": { diff --git a/packages/pipes-vue/package-lock.json b/packages/pipes-vue/package-lock.json index 2069f7f..03ae351 100644 --- a/packages/pipes-vue/package-lock.json +++ b/packages/pipes-vue/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-pipes-vue", - "version": "3.16.1", + "version": "3.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes-vue", - "version": "3.16.1", + "version": "3.16.2", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.1" + "@baloise/web-app-pipes": "^3.16.2" }, "devDependencies": { "@types/lodash": "^4.14.172", @@ -1130,4 +1130,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/packages/pipes-vue/package.json b/packages/pipes-vue/package.json index 3c0ff14..60374c3 100644 --- a/packages/pipes-vue/package.json +++ b/packages/pipes-vue/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-pipes-vue", - "version": "3.16.1", + "version": "3.16.2", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -48,6 +48,6 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-pipes": "^3.16.1" + "@baloise/web-app-pipes": "^3.16.2" } } diff --git a/packages/pipes/package-lock.json b/packages/pipes/package-lock.json index d0d01ac..f2f2d22 100644 --- a/packages/pipes/package-lock.json +++ b/packages/pipes/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-pipes", - "version": "3.16.1", + "version": "3.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes", - "version": "3.16.1", + "version": "3.16.2", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.1", + "@baloise/web-app-utils": "^3.16.2", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", "lodash.isstring": "^4.0.1", @@ -10883,4 +10883,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/pipes/package.json b/packages/pipes/package.json index 5c7ecec..e7d2b11 100644 --- a/packages/pipes/package.json +++ b/packages/pipes/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-pipes", - "version": "3.16.1", + "version": "3.16.2", "description": "Utilities for Baloise Web Applications", "scripts": { "banner": "node ../../.build/banner.js pipes", @@ -39,7 +39,7 @@ }, "homepage": "https://github.com/baloise/web-app-utils", "dependencies": { - "@baloise/web-app-utils": "^3.16.1", + "@baloise/web-app-utils": "^3.16.2", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", "lodash.isstring": "^4.0.1", diff --git a/packages/unsupported-browsers/package-lock.json b/packages/unsupported-browsers/package-lock.json index 5bc50e7..759e8e0 100644 --- a/packages/unsupported-browsers/package-lock.json +++ b/packages/unsupported-browsers/package-lock.json @@ -1,12 +1,12 @@ { "name": "@baloise/web-app-unsupported-browsers", - "version": "3.16.1", + "version": "3.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-unsupported-browsers", - "version": "3.16.1", + "version": "3.16.2", "hasInstallScript": true, "license": "Apache-2.0", "devDependencies": { @@ -4949,4 +4949,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/packages/unsupported-browsers/package.json b/packages/unsupported-browsers/package.json index 6dbcdcb..e9c5542 100644 --- a/packages/unsupported-browsers/package.json +++ b/packages/unsupported-browsers/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-unsupported-browsers", - "version": "3.16.1", + "version": "3.16.2", "description": "Utilities for Baloise Web Applications", "scripts": { "banner": "node ../../.build/banner.js unsupported-browsers", diff --git a/packages/utils/package-lock.json b/packages/utils/package-lock.json index d9ed0be..47525c3 100644 --- a/packages/utils/package-lock.json +++ b/packages/utils/package-lock.json @@ -1,12 +1,12 @@ { "name": "@baloise/web-app-utils", - "version": "3.16.1", + "version": "3.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-utils", - "version": "3.16.1", + "version": "3.16.2", "license": "Apache-2.0", "dependencies": { "date-fns": "^2.28.0", @@ -10832,4 +10832,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/utils/package.json b/packages/utils/package.json index 0dada6a..01d646d 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-utils", - "version": "3.16.1", + "version": "3.16.2", "description": "Utilities for Baloise Web Applications", "scripts": { "banner": "node ../../.build/banner.js utils", diff --git a/packages/validators-angular/package-lock.json b/packages/validators-angular/package-lock.json index f73459b..d807b57 100644 --- a/packages/validators-angular/package-lock.json +++ b/packages/validators-angular/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-validators-angular", - "version": "3.16.1", + "version": "3.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators-angular", - "version": "3.16.1", + "version": "3.16.2", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.1", + "@baloise/web-app-validators": "^3.16.2", "tslib": "^2.2.0" }, "devDependencies": { @@ -7278,4 +7278,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/validators-angular/package.json b/packages/validators-angular/package.json index 69faa9b..70d1443 100644 --- a/packages/validators-angular/package.json +++ b/packages/validators-angular/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-validators-angular", - "version": "3.16.1", + "version": "3.16.2", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -29,7 +29,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.1", + "@baloise/web-app-validators": "^3.16.2", "tslib": "^2.2.0" }, "peerDependencies": { diff --git a/packages/validators-vue/package-lock.json b/packages/validators-vue/package-lock.json index 42d5143..debcd8a 100644 --- a/packages/validators-vue/package-lock.json +++ b/packages/validators-vue/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-validators-vue", - "version": "3.16.1", + "version": "3.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators-vue", - "version": "3.16.1", + "version": "3.16.2", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.1", + "@baloise/web-app-validators": "^3.16.2", "lodash.isarray": "^4.0.0" }, "devDependencies": { @@ -8672,4 +8672,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/packages/validators-vue/package.json b/packages/validators-vue/package.json index 5e10315..d70cd87 100644 --- a/packages/validators-vue/package.json +++ b/packages/validators-vue/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-validators-vue", - "version": "3.16.1", + "version": "3.16.2", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -52,7 +52,7 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-validators": "^3.16.1", + "@baloise/web-app-validators": "^3.16.2", "lodash.isarray": "^4.0.0" } } diff --git a/packages/validators/package-lock.json b/packages/validators/package-lock.json index 14e806a..08c6570 100644 --- a/packages/validators/package-lock.json +++ b/packages/validators/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-validators", - "version": "3.16.1", + "version": "3.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators", - "version": "3.16.1", + "version": "3.16.2", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.1", + "@baloise/web-app-utils": "^3.16.2", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", @@ -10886,4 +10886,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/validators/package.json b/packages/validators/package.json index 1bef383..5419afc 100644 --- a/packages/validators/package.json +++ b/packages/validators/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-validators", - "version": "3.16.1", + "version": "3.16.2", "description": "Utilities for Baloise Web Applications", "scripts": { "banner": "node ../../.build/banner.js validators", @@ -39,7 +39,7 @@ }, "homepage": "https://github.com/baloise/web-app-utils", "dependencies": { - "@baloise/web-app-utils": "^3.16.1", + "@baloise/web-app-utils": "^3.16.2", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", From 556525b8a46c443cb59736c83647404a92b2659c Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 13:59:53 +0100 Subject: [PATCH 09/14] fix: [SSP-4516] node 18 instead of 16 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 57385f2..b2d5ce7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: '16.x' + node-version: '18.x' registry-url: 'https://registry.npmjs.org' - name: Git Identity From 6ddf21baf42c8e3ffbdeddbe51aa115b9592b368 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 14:05:03 +0100 Subject: [PATCH 10/14] fix: [SSP-4516] merge --- package-lock.json | 67 ++--- packages/clean-architecture/package-lock.json | 8 +- packages/form-vue/package-lock.json | 173 +++++------ packages/pipes-angular/package-lock.json | 276 ++--------------- packages/pipes-vue/package-lock.json | 242 +-------------- packages/pipes/package-lock.json | 101 ++++--- .../unsupported-browsers/package-lock.json | 4 +- packages/utils/package-lock.json | 30 +- packages/validators-angular/package-lock.json | 282 ++---------------- packages/validators-vue/package-lock.json | 245 +-------------- packages/validators/package-lock.json | 127 +------- 11 files changed, 275 insertions(+), 1280 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2a16b2b..73aa6e3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2122,6 +2122,7 @@ "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.1.0.tgz", "integrity": "sha512-Czz/59VefU+kKDy+ZfDwtOIYIkFjExOKf+HA92aiTZJ6EfWpFzYQWw0l54ji8bVmyhc+mGaLUbSUmXazG7z5OQ==", "dev": true, + "peer": true, "dependencies": { "@octokit/auth-token": "^3.0.0", "@octokit/graphql": "^5.0.0", @@ -2406,6 +2407,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.8.0.tgz", "integrity": "sha512-Gleacp/ZhRtJRYs5/T8KQR3pAQjQI89Dn/k+OzyCKOsLiZH2/Vh60cFBTnFsHNI6WAD+lNUo/xGZ4NeA5u0Ipw==", "dev": true, + "peer": true, "dependencies": { "@typescript-eslint/scope-manager": "5.8.0", "@typescript-eslint/types": "5.8.0", @@ -2566,6 +2568,7 @@ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", "dev": true, + "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -3788,6 +3791,7 @@ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, + "peer": true, "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -4057,29 +4061,6 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", @@ -4160,6 +4141,7 @@ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.5.0.tgz", "integrity": "sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg==", "dev": true, + "peer": true, "dependencies": { "@eslint/eslintrc": "^1.0.5", "@humanwhocodes/config-array": "^0.9.2", @@ -7061,6 +7043,7 @@ "integrity": "sha512-4qmzj6wE2RJXyy3p/X33cisl4yYgUUvXZ6yUYbt1zxWdInYYse61yqyRR91jwLeKpgxL7plkIC5rPiqg4kNJDQ==", "dev": true, "hasInstallScript": true, + "peer": true, "dependencies": { "@nrwl/cli": "15.0.11", "@nrwl/tao": "15.0.11", @@ -7652,6 +7635,7 @@ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", "dev": true, + "peer": true, "bin": { "prettier": "bin-prettier.js" }, @@ -8871,6 +8855,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -11058,6 +11043,7 @@ "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.1.0.tgz", "integrity": "sha512-Czz/59VefU+kKDy+ZfDwtOIYIkFjExOKf+HA92aiTZJ6EfWpFzYQWw0l54ji8bVmyhc+mGaLUbSUmXazG7z5OQ==", "dev": true, + "peer": true, "requires": { "@octokit/auth-token": "^3.0.0", "@octokit/graphql": "^5.0.0", @@ -11270,6 +11256,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.8.0.tgz", "integrity": "sha512-Gleacp/ZhRtJRYs5/T8KQR3pAQjQI89Dn/k+OzyCKOsLiZH2/Vh60cFBTnFsHNI6WAD+lNUo/xGZ4NeA5u0Ipw==", "dev": true, + "peer": true, "requires": { "@typescript-eslint/scope-manager": "5.8.0", "@typescript-eslint/types": "5.8.0", @@ -11374,7 +11361,8 @@ "version": "8.6.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", - "dev": true + "dev": true, + "peer": true }, "acorn-jsx": { "version": "5.3.2", @@ -12304,6 +12292,7 @@ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, + "peer": true, "requires": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -12507,28 +12496,6 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "dev": true, - "optional": true, - "requires": { - "iconv-lite": "^0.6.2" - }, - "dependencies": { - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - } - } - }, "end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", @@ -12591,6 +12558,7 @@ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.5.0.tgz", "integrity": "sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg==", "dev": true, + "peer": true, "requires": { "@eslint/eslintrc": "^1.0.5", "@humanwhocodes/config-array": "^0.9.2", @@ -14799,6 +14767,7 @@ "resolved": "https://registry.npmjs.org/nx/-/nx-15.0.11.tgz", "integrity": "sha512-4qmzj6wE2RJXyy3p/X33cisl4yYgUUvXZ6yUYbt1zxWdInYYse61yqyRR91jwLeKpgxL7plkIC5rPiqg4kNJDQ==", "dev": true, + "peer": true, "requires": { "@nrwl/cli": "15.0.11", "@nrwl/tao": "15.0.11", @@ -15222,7 +15191,8 @@ "version": "2.5.1", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", - "dev": true + "dev": true, + "peer": true }, "prettier-linter-helpers": { "version": "1.0.0", @@ -16126,7 +16096,8 @@ "version": "4.5.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", - "dev": true + "dev": true, + "peer": true }, "uglify-js": { "version": "3.17.4", diff --git a/packages/clean-architecture/package-lock.json b/packages/clean-architecture/package-lock.json index db4eefe..67a4a5a 100644 --- a/packages/clean-architecture/package-lock.json +++ b/packages/clean-architecture/package-lock.json @@ -458,6 +458,7 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.56.2.tgz", "integrity": "sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ==", "dev": true, + "peer": true, "bin": { "rollup": "dist/bin/rollup" }, @@ -532,6 +533,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -912,6 +914,7 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.56.2.tgz", "integrity": "sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ==", "dev": true, + "peer": true, "requires": { "fsevents": "~2.3.2" } @@ -971,7 +974,8 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true + "dev": true, + "peer": true }, "wrappy": { "version": "1.0.2", @@ -995,4 +999,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/form-vue/package-lock.json b/packages/form-vue/package-lock.json index 66bf8bc..453faa0 100644 --- a/packages/form-vue/package-lock.json +++ b/packages/form-vue/package-lock.json @@ -118,6 +118,7 @@ "version": "3.16.1", "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", + "dev": true, "dependencies": { "date-fns": "^2.28.0", "lodash.camelcase": "^4.3.0", @@ -224,7 +225,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.36.tgz", "integrity": "sha512-AvGb4bTj4W8uQ4BqaSxo7UwTEqX5utdRSMyHy58OragWlt8nEACQ9mIeQh3K4di4/SX+41+pJrLIY01lHAOFOA==", "dev": true, - "peer": true, "dependencies": { "@babel/parser": "^7.16.4", "@vue/compiler-core": "3.2.36", @@ -243,7 +243,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, - "peer": true, "dependencies": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -256,7 +255,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz", "integrity": "sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==", "dev": true, - "peer": true, "dependencies": { "@vue/compiler-core": "3.2.36", "@vue/shared": "3.2.36" @@ -266,15 +264,13 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true, - "peer": true + "dev": true }, "node_modules/@vue/compiler-ssr": { "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.36.tgz", "integrity": "sha512-+KugInUFRvOxEdLkZwE+W43BqHyhBh0jpYXhmqw1xGq2dmE6J9eZ8UUSOKNhdHtQ/iNLWWeK/wPZkVLUf3YGaw==", "dev": true, - "peer": true, "dependencies": { "@vue/compiler-dom": "3.2.36", "@vue/shared": "3.2.36" @@ -285,7 +281,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, - "peer": true, "dependencies": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -298,7 +293,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz", "integrity": "sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==", "dev": true, - "peer": true, "dependencies": { "@vue/compiler-core": "3.2.36", "@vue/shared": "3.2.36" @@ -308,8 +302,7 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true, - "peer": true + "dev": true }, "node_modules/@vue/devtools-api": { "version": "6.1.4", @@ -331,7 +324,6 @@ "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.36.tgz", "integrity": "sha512-Jk5o2BhpODC9XTA7o4EL8hSJ4JyrFWErLtClG3NH8wDS7ri9jBDWxI7/549T7JY9uilKsaNM+4pJASLj5dtRwA==", "dev": true, - "peer": true, "dependencies": { "@babel/parser": "^7.16.4", "@vue/compiler-core": "3.2.36", @@ -345,7 +337,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, - "peer": true, "dependencies": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -357,8 +348,7 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true, - "peer": true + "dev": true }, "node_modules/@vue/runtime-core": { "version": "3.2.4", @@ -444,6 +434,7 @@ "version": "2.28.0", "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz", "integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==", + "dev": true, "engines": { "node": ">=0.11" }, @@ -680,28 +671,33 @@ "node_modules/lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", + "dev": true }, "node_modules/lodash.capitalize": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=" + "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=", + "dev": true }, "node_modules/lodash.isarray": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=", - "deprecated": "This package is deprecated. Use Array.isArray." + "deprecated": "This package is deprecated. Use Array.isArray.", + "dev": true }, "node_modules/lodash.isboolean": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=", + "dev": true }, "node_modules/lodash.isdate": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha1-NaVDZzuddhEN5BFLMsxXcEin82Y=" + "integrity": "sha1-NaVDZzuddhEN5BFLMsxXcEin82Y=", + "dev": true }, "node_modules/lodash.isempty": { "version": "4.4.0", @@ -712,32 +708,38 @@ "node_modules/lodash.isequal": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=", + "dev": true }, "node_modules/lodash.isnan": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha1-gu0Epfnqi9YibQwmrwysMvRQd0U=" + "integrity": "sha1-gu0Epfnqi9YibQwmrwysMvRQd0U=", + "dev": true }, "node_modules/lodash.isnil": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=" + "integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=", + "dev": true }, "node_modules/lodash.isnumber": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=", + "dev": true }, "node_modules/lodash.isobject": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", + "dev": true }, "node_modules/lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", + "dev": true }, "node_modules/lodash.lowercase": { "version": "4.3.0", @@ -748,12 +750,14 @@ "node_modules/lodash.padstart": { "version": "4.6.1", "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs=" + "integrity": "sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs=", + "dev": true }, "node_modules/lodash.round": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=" + "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=", + "dev": true }, "node_modules/lodash.trim": { "version": "4.5.1", @@ -764,14 +768,14 @@ "node_modules/lodash.upperfirst": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=" + "integrity": "sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=", + "dev": true }, "node_modules/magic-string": { "version": "0.25.9", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", "dev": true, - "peer": true, "dependencies": { "sourcemap-codec": "^1.4.8" } @@ -820,7 +824,6 @@ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", "dev": true, - "peer": true, "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -901,8 +904,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true, - "peer": true + "dev": true }, "node_modules/picomatch": { "version": "2.3.0", @@ -943,7 +945,6 @@ "url": "https://tidelift.com/funding/github/npm/postcss" } ], - "peer": true, "dependencies": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -983,6 +984,7 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.56.2.tgz", "integrity": "sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ==", "dev": true, + "peer": true, "bin": { "rollup": "dist/bin/rollup" }, @@ -1083,7 +1085,6 @@ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "dev": true, - "peer": true, "engines": { "node": ">=0.10.0" } @@ -1092,8 +1093,7 @@ "version": "1.4.8", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "dev": true, - "peer": true + "dev": true }, "node_modules/to-fast-properties": { "version": "2.0.0", @@ -1121,6 +1121,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -1146,6 +1147,7 @@ "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.4.tgz", "integrity": "sha512-rNCFmoewm8IwmTK0nj3ysKq53iRpNEFKoBJ4inar6tIh7Oj7juubS39RI8UI+VE7x+Cs2z6PBsadtZu7z2qppg==", "dev": true, + "peer": true, "dependencies": { "@vue/compiler-dom": "3.2.4", "@vue/runtime-dom": "3.2.4", @@ -1255,6 +1257,7 @@ "version": "3.16.1", "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", + "dev": true, "requires": { "date-fns": "^2.28.0", "lodash.camelcase": "^4.3.0", @@ -1270,21 +1273,6 @@ "lodash.upperfirst": "^4.3.1" } }, - "@baloise/web-app-validators": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.1.tgz", - "integrity": "sha512-GDFBaTI00ox3tfVbYdlo4H7CS7MzjsEOYibc9Kq46PyF0ZRIhgf0WooNxikz/j2Q68goR/Ykk5odbKwq/CifMg==", - "requires": { - "@baloise/web-app-utils": "^3.16.1", - "date-fns": "^2.28.0", - "lodash.capitalize": "^4.2.1", - "lodash.isarray": "^4.0.0", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isstring": "^4.0.1", - "lodash.round": "^4.0.4" - } - }, "@popperjs/core": { "version": "2.11.5", "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.5.tgz", @@ -1347,7 +1335,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.36.tgz", "integrity": "sha512-AvGb4bTj4W8uQ4BqaSxo7UwTEqX5utdRSMyHy58OragWlt8nEACQ9mIeQh3K4di4/SX+41+pJrLIY01lHAOFOA==", "dev": true, - "peer": true, "requires": { "@babel/parser": "^7.16.4", "@vue/compiler-core": "3.2.36", @@ -1366,7 +1353,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, - "peer": true, "requires": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -1379,7 +1365,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz", "integrity": "sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==", "dev": true, - "peer": true, "requires": { "@vue/compiler-core": "3.2.36", "@vue/shared": "3.2.36" @@ -1389,8 +1374,7 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true, - "peer": true + "dev": true } } }, @@ -1399,7 +1383,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.36.tgz", "integrity": "sha512-+KugInUFRvOxEdLkZwE+W43BqHyhBh0jpYXhmqw1xGq2dmE6J9eZ8UUSOKNhdHtQ/iNLWWeK/wPZkVLUf3YGaw==", "dev": true, - "peer": true, "requires": { "@vue/compiler-dom": "3.2.36", "@vue/shared": "3.2.36" @@ -1410,7 +1393,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, - "peer": true, "requires": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -1423,7 +1405,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz", "integrity": "sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==", "dev": true, - "peer": true, "requires": { "@vue/compiler-core": "3.2.36", "@vue/shared": "3.2.36" @@ -1433,8 +1414,7 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true, - "peer": true + "dev": true } } }, @@ -1458,7 +1438,6 @@ "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.36.tgz", "integrity": "sha512-Jk5o2BhpODC9XTA7o4EL8hSJ4JyrFWErLtClG3NH8wDS7ri9jBDWxI7/549T7JY9uilKsaNM+4pJASLj5dtRwA==", "dev": true, - "peer": true, "requires": { "@babel/parser": "^7.16.4", "@vue/compiler-core": "3.2.36", @@ -1472,7 +1451,6 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, - "peer": true, "requires": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -1484,8 +1462,7 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true, - "peer": true + "dev": true } } }, @@ -1565,7 +1542,8 @@ "date-fns": { "version": "2.28.0", "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz", - "integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==" + "integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==", + "dev": true }, "debug": { "version": "4.3.2", @@ -1749,27 +1727,32 @@ "lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", + "dev": true }, "lodash.capitalize": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=" + "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=", + "dev": true }, "lodash.isarray": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", - "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=" + "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=", + "dev": true }, "lodash.isboolean": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=", + "dev": true }, "lodash.isdate": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha1-NaVDZzuddhEN5BFLMsxXcEin82Y=" + "integrity": "sha1-NaVDZzuddhEN5BFLMsxXcEin82Y=", + "dev": true }, "lodash.isempty": { "version": "4.4.0", @@ -1780,32 +1763,38 @@ "lodash.isequal": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=", + "dev": true }, "lodash.isnan": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha1-gu0Epfnqi9YibQwmrwysMvRQd0U=" + "integrity": "sha1-gu0Epfnqi9YibQwmrwysMvRQd0U=", + "dev": true }, "lodash.isnil": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=" + "integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=", + "dev": true }, "lodash.isnumber": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=", + "dev": true }, "lodash.isobject": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", + "dev": true }, "lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", + "dev": true }, "lodash.lowercase": { "version": "4.3.0", @@ -1816,12 +1805,14 @@ "lodash.padstart": { "version": "4.6.1", "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs=" + "integrity": "sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs=", + "dev": true }, "lodash.round": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=" + "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=", + "dev": true }, "lodash.trim": { "version": "4.5.1", @@ -1832,14 +1823,14 @@ "lodash.upperfirst": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=" + "integrity": "sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=", + "dev": true }, "magic-string": { "version": "0.25.9", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", "dev": true, - "peer": true, "requires": { "sourcemap-codec": "^1.4.8" } @@ -1878,8 +1869,7 @@ "version": "3.3.4", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "dev": true, - "peer": true + "dev": true }, "once": { "version": "1.4.0", @@ -1936,8 +1926,7 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true, - "peer": true + "dev": true }, "picomatch": { "version": "2.3.0", @@ -1959,7 +1948,6 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", "dev": true, - "peer": true, "requires": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -1993,6 +1981,7 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.56.2.tgz", "integrity": "sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ==", "dev": true, + "peer": true, "requires": { "fsevents": "~2.3.2" } @@ -2074,15 +2063,13 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true, - "peer": true + "dev": true }, "sourcemap-codec": { "version": "1.4.8", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "dev": true, - "peer": true + "dev": true }, "to-fast-properties": { "version": "2.0.0", @@ -2106,7 +2093,8 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true + "dev": true, + "peer": true }, "vee-validate": { "version": "4.5.11", @@ -2122,6 +2110,7 @@ "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.4.tgz", "integrity": "sha512-rNCFmoewm8IwmTK0nj3ysKq53iRpNEFKoBJ4inar6tIh7Oj7juubS39RI8UI+VE7x+Cs2z6PBsadtZu7z2qppg==", "dev": true, + "peer": true, "requires": { "@vue/compiler-dom": "3.2.4", "@vue/runtime-dom": "3.2.4", @@ -2150,4 +2139,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/pipes-angular/package-lock.json b/packages/pipes-angular/package-lock.json index fca9cca..60309c2 100644 --- a/packages/pipes-angular/package-lock.json +++ b/packages/pipes-angular/package-lock.json @@ -50,6 +50,7 @@ "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.11.tgz", "integrity": "sha512-gPMwDYIAag1izXm2tRQ6EOIx9FVEUqLdr+qYtRVoQtoBmfkoTSLGcpeBXqqlPVxVPbA6Li1WZZT5wxLLlLAN+Q==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -66,6 +67,7 @@ "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.11.tgz", "integrity": "sha512-EV6JCBbXdHDHbPShWmymvuoxFYG0KVc8sDJpYp47WLHCY2zgZaXhvWs//Hrls3fmi+TGTekgRa2jOBBNce/Ggg==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -78,6 +80,7 @@ "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.11.tgz", "integrity": "sha512-cl+3Wzxt8NRi2WY+RdsxuQ3yQRUp8pSlfSlJJnfaKE1BEqap6uem2DovuhnIbmrLhxZ5xt7o+I1szyO6sn6+ag==", "dev": true, + "peer": true, "dependencies": { "@babel/core": "^7.17.2", "chokidar": "^3.0.0", @@ -108,6 +111,7 @@ "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.11.tgz", "integrity": "sha512-9BmE2CxyV0g+AkBeuc8IwjSOiJ8Y+kptXnqD/J8EAFT3B0/fLGVnjFdZC6Sev9L0SNZb6qdzebpfIOLqbUjReQ==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -142,6 +146,7 @@ "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.11.tgz", "integrity": "sha512-PG3chCErARb6wNzkOed2NsZmgvTmbumRx/6sMXqGkDKXYQm0JULnl4X42Rn+JCgJ9DLJi5/jrd1dbcBCrKk9Vg==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -185,6 +190,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "dev": true, + "peer": true, "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", @@ -430,14 +436,6 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/runtime": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.1.tgz", - "integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==", - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/template": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", @@ -487,37 +485,6 @@ "node": ">=6.9.0" } }, - "node_modules/@baloise/web-app-pipes": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.1.tgz", - "integrity": "sha512-pWDBe6JPEJ4grFI9eg3661piXnQYqlv2nZqExdci9goN5tqNaHwh37kJ+2DUWBY69CcmlEOlBh/WzPls4IxoSw==", - "dependencies": { - "@baloise/web-app-utils": "^3.16.1", - "lodash.capitalize": "^4.2.1", - "lodash.isarray": "^4.0.0", - "lodash.isstring": "^4.0.1", - "lodash.round": "^4.0.4" - } - }, - "node_modules/@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "dependencies": { - "date-fns": "^2.28.0", - "lodash.camelcase": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isdate": "^4.0.1", - "lodash.isequal": "^4.5.0", - "lodash.isnan": "^3.0.2", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isobject": "^3.0.2", - "lodash.isstring": "^4.0.1", - "lodash.padstart": "^4.6.1", - "lodash.upperfirst": "^4.3.1" - } - }, "node_modules/@csstools/postcss-cascade-layers": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", @@ -1162,6 +1129,7 @@ "url": "https://tidelift.com/funding/github/npm/browserslist" } ], + "peer": true, "dependencies": { "caniuse-lite": "^1.0.30001400", "electron-to-chromium": "^1.4.251", @@ -1506,21 +1474,6 @@ "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", "dev": true }, - "node_modules/date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "dependencies": { - "@babel/runtime": "^7.21.0" - }, - "engines": { - "node": ">=0.11" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/date-fns" - } - }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -2497,78 +2450,6 @@ "node": ">=8" } }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "node_modules/lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" - }, - "node_modules/lodash.isarray": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", - "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==", - "deprecated": "This package is deprecated. Use Array.isArray." - }, - "node_modules/lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "node_modules/lodash.isdate": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead." - }, - "node_modules/lodash.isnan": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" - }, - "node_modules/lodash.isnil": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" - }, - "node_modules/lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - }, - "node_modules/lodash.isobject": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" - }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - }, - "node_modules/lodash.padstart": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" - }, - "node_modules/lodash.round": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" - }, - "node_modules/lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" - }, "node_modules/log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", @@ -3182,6 +3063,7 @@ "url": "https://tidelift.com/funding/github/npm/postcss" } ], + "peer": true, "dependencies": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -3725,6 +3607,7 @@ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "dev": true, + "peer": true, "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -3903,6 +3786,7 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "dev": true, + "peer": true, "bin": { "rollup": "dist/bin/rollup" }, @@ -3940,6 +3824,7 @@ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.1.0" } @@ -4190,13 +4075,15 @@ "node_modules/tslib": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "peer": true }, "node_modules/typescript": { "version": "4.6.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -4385,6 +4272,7 @@ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.3.0" } @@ -4406,6 +4294,7 @@ "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.11.tgz", "integrity": "sha512-gPMwDYIAag1izXm2tRQ6EOIx9FVEUqLdr+qYtRVoQtoBmfkoTSLGcpeBXqqlPVxVPbA6Li1WZZT5wxLLlLAN+Q==", "dev": true, + "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4415,6 +4304,7 @@ "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.11.tgz", "integrity": "sha512-EV6JCBbXdHDHbPShWmymvuoxFYG0KVc8sDJpYp47WLHCY2zgZaXhvWs//Hrls3fmi+TGTekgRa2jOBBNce/Ggg==", "dev": true, + "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4424,6 +4314,7 @@ "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.11.tgz", "integrity": "sha512-cl+3Wzxt8NRi2WY+RdsxuQ3yQRUp8pSlfSlJJnfaKE1BEqap6uem2DovuhnIbmrLhxZ5xt7o+I1szyO6sn6+ag==", "dev": true, + "peer": true, "requires": { "@babel/core": "^7.17.2", "chokidar": "^3.0.0", @@ -4442,6 +4333,7 @@ "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.11.tgz", "integrity": "sha512-9BmE2CxyV0g+AkBeuc8IwjSOiJ8Y+kptXnqD/J8EAFT3B0/fLGVnjFdZC6Sev9L0SNZb6qdzebpfIOLqbUjReQ==", "dev": true, + "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4460,6 +4352,7 @@ "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.11.tgz", "integrity": "sha512-PG3chCErARb6wNzkOed2NsZmgvTmbumRx/6sMXqGkDKXYQm0JULnl4X42Rn+JCgJ9DLJi5/jrd1dbcBCrKk9Vg==", "dev": true, + "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4484,6 +4377,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "dev": true, + "peer": true, "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", @@ -4668,11 +4562,6 @@ "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==", "dev": true }, - "@babel/runtime": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.1.tgz", - "integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==" - }, "@babel/template": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", @@ -4713,37 +4602,6 @@ "to-fast-properties": "^2.0.0" } }, - "@baloise/web-app-pipes": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.1.tgz", - "integrity": "sha512-pWDBe6JPEJ4grFI9eg3661piXnQYqlv2nZqExdci9goN5tqNaHwh37kJ+2DUWBY69CcmlEOlBh/WzPls4IxoSw==", - "requires": { - "@baloise/web-app-utils": "^3.16.1", - "lodash.capitalize": "^4.2.1", - "lodash.isarray": "^4.0.0", - "lodash.isstring": "^4.0.1", - "lodash.round": "^4.0.4" - } - }, - "@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "requires": { - "date-fns": "^2.28.0", - "lodash.camelcase": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isdate": "^4.0.1", - "lodash.isequal": "^4.5.0", - "lodash.isnan": "^3.0.2", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isobject": "^3.0.2", - "lodash.isstring": "^4.0.1", - "lodash.padstart": "^4.6.1", - "lodash.upperfirst": "^4.3.1" - } - }, "@csstools/postcss-cascade-layers": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", @@ -5132,6 +4990,7 @@ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, + "peer": true, "requires": { "caniuse-lite": "^1.0.30001400", "electron-to-chromium": "^1.4.251", @@ -5360,14 +5219,6 @@ "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", "dev": true }, - "date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "requires": { - "@babel/runtime": "^7.21.0" - } - }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -5980,76 +5831,6 @@ "p-locate": "^4.1.0" } }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" - }, - "lodash.isarray": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", - "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==" - }, - "lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "lodash.isdate": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" - }, - "lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" - }, - "lodash.isnan": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" - }, - "lodash.isnil": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" - }, - "lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - }, - "lodash.isobject": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" - }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - }, - "lodash.padstart": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" - }, - "lodash.round": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" - }, - "lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" - }, "log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", @@ -6483,6 +6264,7 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz", "integrity": "sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==", "dev": true, + "peer": true, "requires": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -6789,6 +6571,7 @@ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "dev": true, + "peer": true, "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -6921,6 +6704,7 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "dev": true, + "peer": true, "requires": { "fsevents": "~2.3.2" } @@ -6940,6 +6724,7 @@ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "dev": true, + "peer": true, "requires": { "tslib": "^2.1.0" } @@ -7123,13 +6908,15 @@ "tslib": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "peer": true }, "typescript": { "version": "4.6.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", - "dev": true + "dev": true, + "peer": true }, "unique-filename": { "version": "1.1.1", @@ -7273,9 +7060,10 @@ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", "dev": true, + "peer": true, "requires": { "tslib": "^2.3.0" } } } -} \ No newline at end of file +} diff --git a/packages/pipes-vue/package-lock.json b/packages/pipes-vue/package-lock.json index 03ae351..e8194bf 100644 --- a/packages/pipes-vue/package-lock.json +++ b/packages/pipes-vue/package-lock.json @@ -41,14 +41,6 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/runtime": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.1.tgz", - "integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==", - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/types": { "version": "7.14.1", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.1.tgz", @@ -59,37 +51,6 @@ "to-fast-properties": "^2.0.0" } }, - "node_modules/@baloise/web-app-pipes": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.1.tgz", - "integrity": "sha512-pWDBe6JPEJ4grFI9eg3661piXnQYqlv2nZqExdci9goN5tqNaHwh37kJ+2DUWBY69CcmlEOlBh/WzPls4IxoSw==", - "dependencies": { - "@baloise/web-app-utils": "^3.16.1", - "lodash.capitalize": "^4.2.1", - "lodash.isarray": "^4.0.0", - "lodash.isstring": "^4.0.1", - "lodash.round": "^4.0.4" - } - }, - "node_modules/@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "dependencies": { - "date-fns": "^2.28.0", - "lodash.camelcase": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isdate": "^4.0.1", - "lodash.isequal": "^4.5.0", - "lodash.isnan": "^3.0.2", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isobject": "^3.0.2", - "lodash.isstring": "^4.0.1", - "lodash.padstart": "^4.6.1", - "lodash.upperfirst": "^4.3.1" - } - }, "node_modules/@types/lodash": { "version": "4.14.172", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.172.tgz", @@ -235,21 +196,6 @@ "integrity": "sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A==", "dev": true }, - "node_modules/date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "dependencies": { - "@babel/runtime": "^7.21.0" - }, - "engines": { - "node": ">=0.11" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/date-fns" - } - }, "node_modules/dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", @@ -332,78 +278,6 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "node_modules/lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" - }, - "node_modules/lodash.isarray": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", - "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==", - "deprecated": "This package is deprecated. Use Array.isArray." - }, - "node_modules/lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "node_modules/lodash.isdate": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead." - }, - "node_modules/lodash.isnan": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" - }, - "node_modules/lodash.isnil": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" - }, - "node_modules/lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - }, - "node_modules/lodash.isobject": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" - }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - }, - "node_modules/lodash.padstart": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" - }, - "node_modules/lodash.round": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" - }, - "node_modules/lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" - }, "node_modules/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -620,11 +494,6 @@ "integrity": "sha512-muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q==", "dev": true }, - "@babel/runtime": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.1.tgz", - "integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==" - }, "@babel/types": { "version": "7.14.1", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.1.tgz", @@ -635,37 +504,6 @@ "to-fast-properties": "^2.0.0" } }, - "@baloise/web-app-pipes": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.1.tgz", - "integrity": "sha512-pWDBe6JPEJ4grFI9eg3661piXnQYqlv2nZqExdci9goN5tqNaHwh37kJ+2DUWBY69CcmlEOlBh/WzPls4IxoSw==", - "requires": { - "@baloise/web-app-utils": "^3.16.1", - "lodash.capitalize": "^4.2.1", - "lodash.isarray": "^4.0.0", - "lodash.isstring": "^4.0.1", - "lodash.round": "^4.0.4" - } - }, - "@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "requires": { - "date-fns": "^2.28.0", - "lodash.camelcase": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isdate": "^4.0.1", - "lodash.isequal": "^4.5.0", - "lodash.isnan": "^3.0.2", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isobject": "^3.0.2", - "lodash.isstring": "^4.0.1", - "lodash.padstart": "^4.6.1", - "lodash.upperfirst": "^4.3.1" - } - }, "@types/lodash": { "version": "4.14.172", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.172.tgz", @@ -811,14 +649,6 @@ "integrity": "sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A==", "dev": true }, - "date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "requires": { - "@babel/runtime": "^7.21.0" - } - }, "dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", @@ -888,76 +718,6 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" - }, - "lodash.isarray": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", - "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==" - }, - "lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "lodash.isdate": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" - }, - "lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" - }, - "lodash.isnan": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" - }, - "lodash.isnil": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" - }, - "lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - }, - "lodash.isobject": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" - }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - }, - "lodash.padstart": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" - }, - "lodash.round": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" - }, - "lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" - }, "lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -1130,4 +890,4 @@ "dev": true } } -} \ No newline at end of file +} diff --git a/packages/pipes/package-lock.json b/packages/pipes/package-lock.json index f2f2d22..bca4ed2 100644 --- a/packages/pipes/package-lock.json +++ b/packages/pipes/package-lock.json @@ -52,6 +52,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, + "peer": true, "dependencies": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -575,9 +576,10 @@ } }, "node_modules/@babel/runtime": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.1.tgz", - "integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==", + "version": "7.28.4", + "resolved": "https://nexus.balgroupit.com/repository/npm/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -664,8 +666,9 @@ }, "node_modules/@baloise/web-app-utils": { "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", + "license": "Apache-2.0", "dependencies": { "date-fns": "^2.28.0", "lodash.camelcase": "^4.3.0", @@ -1897,8 +1900,9 @@ }, "node_modules/date-fns": { "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/date-fns/-/date-fns-2.30.0.tgz", "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.21.0" }, @@ -3967,8 +3971,9 @@ }, "node_modules/lodash.camelcase": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" }, "node_modules/lodash.capitalize": { "version": "4.2.1", @@ -3983,39 +3988,46 @@ }, "node_modules/lodash.isboolean": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" }, "node_modules/lodash.isdate": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==", + "license": "MIT" }, "node_modules/lodash.isequal": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isequal/-/lodash.isequal-4.5.0.tgz", "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead." + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", + "license": "MIT" }, "node_modules/lodash.isnan": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==", + "license": "MIT" }, "node_modules/lodash.isnil": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==", + "license": "MIT" }, "node_modules/lodash.isnumber": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "license": "MIT" }, "node_modules/lodash.isobject": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", + "license": "MIT" }, "node_modules/lodash.isstring": { "version": "4.0.1", @@ -4024,8 +4036,9 @@ }, "node_modules/lodash.padstart": { "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==", + "license": "MIT" }, "node_modules/lodash.round": { "version": "4.0.4", @@ -4034,8 +4047,9 @@ }, "node_modules/lodash.upperfirst": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", + "license": "MIT" }, "node_modules/lru-cache": { "version": "6.0.0", @@ -5727,6 +5741,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -6098,6 +6113,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, + "peer": true, "requires": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -6493,9 +6509,9 @@ } }, "@babel/runtime": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.1.tgz", - "integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==" + "version": "7.28.4", + "resolved": "https://nexus.balgroupit.com/repository/npm/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" }, "@babel/template": { "version": "7.16.0", @@ -6565,7 +6581,7 @@ }, "@baloise/web-app-utils": { "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", "requires": { "date-fns": "^2.28.0", @@ -7586,7 +7602,7 @@ }, "date-fns": { "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/date-fns/-/date-fns-2.30.0.tgz", "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", "requires": { "@babel/runtime": "^7.21.0" @@ -9189,7 +9205,7 @@ }, "lodash.camelcase": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" }, "lodash.capitalize": { @@ -9204,37 +9220,37 @@ }, "lodash.isboolean": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" }, "lodash.isdate": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isdate/-/lodash.isdate-4.0.1.tgz", "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" }, "lodash.isequal": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isequal/-/lodash.isequal-4.5.0.tgz", "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" }, "lodash.isnan": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnan/-/lodash.isnan-3.0.2.tgz", "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" }, "lodash.isnil": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnil/-/lodash.isnil-4.0.0.tgz", "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" }, "lodash.isnumber": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" }, "lodash.isobject": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isobject/-/lodash.isobject-3.0.2.tgz", "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" }, "lodash.isstring": { @@ -9244,7 +9260,7 @@ }, "lodash.padstart": { "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.padstart/-/lodash.padstart-4.6.1.tgz", "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" }, "lodash.round": { @@ -9254,7 +9270,7 @@ }, "lodash.upperfirst": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" }, "lru-cache": { @@ -10605,7 +10621,8 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true + "dev": true, + "peer": true }, "union-value": { "version": "1.0.1", @@ -10883,4 +10900,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/unsupported-browsers/package-lock.json b/packages/unsupported-browsers/package-lock.json index 759e8e0..ccb9ea7 100644 --- a/packages/unsupported-browsers/package-lock.json +++ b/packages/unsupported-browsers/package-lock.json @@ -175,6 +175,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", "dev": true, + "peer": true, "dependencies": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.7", @@ -2980,6 +2981,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", "dev": true, + "peer": true, "requires": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.7", @@ -4949,4 +4951,4 @@ "dev": true } } -} \ No newline at end of file +} diff --git a/packages/utils/package-lock.json b/packages/utils/package-lock.json index 47525c3..8951af9 100644 --- a/packages/utils/package-lock.json +++ b/packages/utils/package-lock.json @@ -68,6 +68,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, + "peer": true, "dependencies": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -2591,6 +2592,21 @@ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://nexus.balgroupit.com/repository/npm/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", @@ -5700,6 +5716,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -6071,6 +6088,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, + "peer": true, "requires": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -8092,6 +8110,13 @@ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "dev": true }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://nexus.balgroupit.com/repository/npm/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", @@ -10554,7 +10579,8 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true + "dev": true, + "peer": true }, "union-value": { "version": "1.0.1", @@ -10832,4 +10858,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/validators-angular/package-lock.json b/packages/validators-angular/package-lock.json index d807b57..b8781c5 100644 --- a/packages/validators-angular/package-lock.json +++ b/packages/validators-angular/package-lock.json @@ -50,6 +50,7 @@ "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.11.tgz", "integrity": "sha512-gPMwDYIAag1izXm2tRQ6EOIx9FVEUqLdr+qYtRVoQtoBmfkoTSLGcpeBXqqlPVxVPbA6Li1WZZT5wxLLlLAN+Q==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -66,6 +67,7 @@ "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.11.tgz", "integrity": "sha512-EV6JCBbXdHDHbPShWmymvuoxFYG0KVc8sDJpYp47WLHCY2zgZaXhvWs//Hrls3fmi+TGTekgRa2jOBBNce/Ggg==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -78,6 +80,7 @@ "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.11.tgz", "integrity": "sha512-cl+3Wzxt8NRi2WY+RdsxuQ3yQRUp8pSlfSlJJnfaKE1BEqap6uem2DovuhnIbmrLhxZ5xt7o+I1szyO6sn6+ag==", "dev": true, + "peer": true, "dependencies": { "@babel/core": "^7.17.2", "chokidar": "^3.0.0", @@ -108,6 +111,7 @@ "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.11.tgz", "integrity": "sha512-9BmE2CxyV0g+AkBeuc8IwjSOiJ8Y+kptXnqD/J8EAFT3B0/fLGVnjFdZC6Sev9L0SNZb6qdzebpfIOLqbUjReQ==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -142,6 +146,7 @@ "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.11.tgz", "integrity": "sha512-PG3chCErARb6wNzkOed2NsZmgvTmbumRx/6sMXqGkDKXYQm0JULnl4X42Rn+JCgJ9DLJi5/jrd1dbcBCrKk9Vg==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -185,6 +190,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "dev": true, + "peer": true, "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", @@ -430,14 +436,6 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/runtime": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.1.tgz", - "integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==", - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/template": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", @@ -487,40 +485,6 @@ "node": ">=6.9.0" } }, - "node_modules/@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "dependencies": { - "date-fns": "^2.28.0", - "lodash.camelcase": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isdate": "^4.0.1", - "lodash.isequal": "^4.5.0", - "lodash.isnan": "^3.0.2", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isobject": "^3.0.2", - "lodash.isstring": "^4.0.1", - "lodash.padstart": "^4.6.1", - "lodash.upperfirst": "^4.3.1" - } - }, - "node_modules/@baloise/web-app-validators": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.1.tgz", - "integrity": "sha512-GDFBaTI00ox3tfVbYdlo4H7CS7MzjsEOYibc9Kq46PyF0ZRIhgf0WooNxikz/j2Q68goR/Ykk5odbKwq/CifMg==", - "dependencies": { - "@baloise/web-app-utils": "^3.16.1", - "date-fns": "^2.28.0", - "lodash.capitalize": "^4.2.1", - "lodash.isarray": "^4.0.0", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isstring": "^4.0.1", - "lodash.round": "^4.0.4" - } - }, "node_modules/@csstools/postcss-cascade-layers": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", @@ -1171,6 +1135,7 @@ "url": "https://tidelift.com/funding/github/npm/browserslist" } ], + "peer": true, "dependencies": { "caniuse-lite": "^1.0.30001400", "electron-to-chromium": "^1.4.251", @@ -1512,21 +1477,6 @@ "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", "dev": true }, - "node_modules/date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "dependencies": { - "@babel/runtime": "^7.21.0" - }, - "engines": { - "node": ">=0.11" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/date-fns" - } - }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -2497,78 +2447,6 @@ "node": ">=8" } }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "node_modules/lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" - }, - "node_modules/lodash.isarray": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", - "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==", - "deprecated": "This package is deprecated. Use Array.isArray." - }, - "node_modules/lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "node_modules/lodash.isdate": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead." - }, - "node_modules/lodash.isnan": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" - }, - "node_modules/lodash.isnil": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" - }, - "node_modules/lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - }, - "node_modules/lodash.isobject": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" - }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - }, - "node_modules/lodash.padstart": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" - }, - "node_modules/lodash.round": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" - }, - "node_modules/lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" - }, "node_modules/log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", @@ -3182,6 +3060,7 @@ "url": "https://tidelift.com/funding/github/npm/postcss" } ], + "peer": true, "dependencies": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -3725,6 +3604,7 @@ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "dev": true, + "peer": true, "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -3891,6 +3771,7 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "dev": true, + "peer": true, "bin": { "rollup": "dist/bin/rollup" }, @@ -3928,6 +3809,7 @@ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.1.0" } @@ -4183,13 +4065,15 @@ "node_modules/tslib": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "peer": true }, "node_modules/typescript": { "version": "4.6.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -4378,6 +4262,7 @@ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", "dev": true, + "peer": true, "dependencies": { "tslib": "^2.3.0" } @@ -4399,6 +4284,7 @@ "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.11.tgz", "integrity": "sha512-gPMwDYIAag1izXm2tRQ6EOIx9FVEUqLdr+qYtRVoQtoBmfkoTSLGcpeBXqqlPVxVPbA6Li1WZZT5wxLLlLAN+Q==", "dev": true, + "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4408,6 +4294,7 @@ "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.11.tgz", "integrity": "sha512-EV6JCBbXdHDHbPShWmymvuoxFYG0KVc8sDJpYp47WLHCY2zgZaXhvWs//Hrls3fmi+TGTekgRa2jOBBNce/Ggg==", "dev": true, + "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4417,6 +4304,7 @@ "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.11.tgz", "integrity": "sha512-cl+3Wzxt8NRi2WY+RdsxuQ3yQRUp8pSlfSlJJnfaKE1BEqap6uem2DovuhnIbmrLhxZ5xt7o+I1szyO6sn6+ag==", "dev": true, + "peer": true, "requires": { "@babel/core": "^7.17.2", "chokidar": "^3.0.0", @@ -4435,6 +4323,7 @@ "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.11.tgz", "integrity": "sha512-9BmE2CxyV0g+AkBeuc8IwjSOiJ8Y+kptXnqD/J8EAFT3B0/fLGVnjFdZC6Sev9L0SNZb6qdzebpfIOLqbUjReQ==", "dev": true, + "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4453,6 +4342,7 @@ "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.11.tgz", "integrity": "sha512-PG3chCErARb6wNzkOed2NsZmgvTmbumRx/6sMXqGkDKXYQm0JULnl4X42Rn+JCgJ9DLJi5/jrd1dbcBCrKk9Vg==", "dev": true, + "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4477,6 +4367,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "dev": true, + "peer": true, "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", @@ -4661,11 +4552,6 @@ "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==", "dev": true }, - "@babel/runtime": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.1.tgz", - "integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==" - }, "@babel/template": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", @@ -4706,40 +4592,6 @@ "to-fast-properties": "^2.0.0" } }, - "@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "requires": { - "date-fns": "^2.28.0", - "lodash.camelcase": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isdate": "^4.0.1", - "lodash.isequal": "^4.5.0", - "lodash.isnan": "^3.0.2", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isobject": "^3.0.2", - "lodash.isstring": "^4.0.1", - "lodash.padstart": "^4.6.1", - "lodash.upperfirst": "^4.3.1" - } - }, - "@baloise/web-app-validators": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.1.tgz", - "integrity": "sha512-GDFBaTI00ox3tfVbYdlo4H7CS7MzjsEOYibc9Kq46PyF0ZRIhgf0WooNxikz/j2Q68goR/Ykk5odbKwq/CifMg==", - "requires": { - "@baloise/web-app-utils": "^3.16.1", - "date-fns": "^2.28.0", - "lodash.capitalize": "^4.2.1", - "lodash.isarray": "^4.0.0", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isstring": "^4.0.1", - "lodash.round": "^4.0.4" - } - }, "@csstools/postcss-cascade-layers": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", @@ -5136,6 +4988,7 @@ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, + "peer": true, "requires": { "caniuse-lite": "^1.0.30001400", "electron-to-chromium": "^1.4.251", @@ -5367,14 +5220,6 @@ "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", "dev": true }, - "date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "requires": { - "@babel/runtime": "^7.21.0" - } - }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -5981,76 +5826,6 @@ "p-locate": "^4.1.0" } }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" - }, - "lodash.isarray": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", - "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==" - }, - "lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "lodash.isdate": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" - }, - "lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" - }, - "lodash.isnan": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" - }, - "lodash.isnil": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" - }, - "lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - }, - "lodash.isobject": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" - }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - }, - "lodash.padstart": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" - }, - "lodash.round": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" - }, - "lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" - }, "log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", @@ -6484,6 +6259,7 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz", "integrity": "sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==", "dev": true, + "peer": true, "requires": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -6790,6 +6566,7 @@ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "dev": true, + "peer": true, "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -6913,6 +6690,7 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "dev": true, + "peer": true, "requires": { "fsevents": "~2.3.2" } @@ -6932,6 +6710,7 @@ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "dev": true, + "peer": true, "requires": { "tslib": "^2.1.0" } @@ -7123,13 +6902,15 @@ "tslib": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "peer": true }, "typescript": { "version": "4.6.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", - "dev": true + "dev": true, + "peer": true }, "unique-filename": { "version": "1.1.1", @@ -7273,9 +7054,10 @@ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", "dev": true, + "peer": true, "requires": { "tslib": "^2.3.0" } } } -} \ No newline at end of file +} diff --git a/packages/validators-vue/package-lock.json b/packages/validators-vue/package-lock.json index debcd8a..ddfe49c 100644 --- a/packages/validators-vue/package-lock.json +++ b/packages/validators-vue/package-lock.json @@ -53,6 +53,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, + "peer": true, "dependencies": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -855,14 +856,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/runtime": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.1.tgz", - "integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==", - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/template": { "version": "7.16.0", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", @@ -975,40 +968,6 @@ "to-fast-properties": "^2.0.0" } }, - "node_modules/@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "dependencies": { - "date-fns": "^2.28.0", - "lodash.camelcase": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isdate": "^4.0.1", - "lodash.isequal": "^4.5.0", - "lodash.isnan": "^3.0.2", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isobject": "^3.0.2", - "lodash.isstring": "^4.0.1", - "lodash.padstart": "^4.6.1", - "lodash.upperfirst": "^4.3.1" - } - }, - "node_modules/@baloise/web-app-validators": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.1.tgz", - "integrity": "sha512-GDFBaTI00ox3tfVbYdlo4H7CS7MzjsEOYibc9Kq46PyF0ZRIhgf0WooNxikz/j2Q68goR/Ykk5odbKwq/CifMg==", - "dependencies": { - "@baloise/web-app-utils": "^3.16.1", - "date-fns": "^2.28.0", - "lodash.capitalize": "^4.2.1", - "lodash.isarray": "^4.0.0", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isstring": "^4.0.1", - "lodash.round": "^4.0.4" - } - }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", @@ -1386,6 +1345,7 @@ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.0.3.tgz", "integrity": "sha512-cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg==", "dev": true, + "peer": true, "dependencies": { "jest-diff": "^27.0.0", "pretty-format": "^27.0.0" @@ -2077,21 +2037,6 @@ "node": ">=10" } }, - "node_modules/date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "dependencies": { - "@babel/runtime": "^7.21.0" - }, - "engines": { - "node": ">=0.11" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/date-fns" - } - }, "node_modules/debug": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", @@ -3562,84 +3507,18 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "node_modules/lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" - }, "node_modules/lodash.isarray": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=", "deprecated": "This package is deprecated. Use Array.isArray." }, - "node_modules/lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "node_modules/lodash.isdate": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead." - }, - "node_modules/lodash.isnan": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" - }, - "node_modules/lodash.isnil": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" - }, - "node_modules/lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - }, - "node_modules/lodash.isobject": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" - }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, - "node_modules/lodash.padstart": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" - }, - "node_modules/lodash.round": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" - }, - "node_modules/lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" - }, "node_modules/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -4595,6 +4474,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -4888,6 +4768,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, + "peer": true, "requires": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -5504,11 +5385,6 @@ "@babel/helper-plugin-utils": "^7.14.5" } }, - "@babel/runtime": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.1.tgz", - "integrity": "sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==" - }, "@babel/template": { "version": "7.16.0", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", @@ -5595,40 +5471,6 @@ "to-fast-properties": "^2.0.0" } }, - "@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "requires": { - "date-fns": "^2.28.0", - "lodash.camelcase": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isdate": "^4.0.1", - "lodash.isequal": "^4.5.0", - "lodash.isnan": "^3.0.2", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isobject": "^3.0.2", - "lodash.isstring": "^4.0.1", - "lodash.padstart": "^4.6.1", - "lodash.upperfirst": "^4.3.1" - } - }, - "@baloise/web-app-validators": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.1.tgz", - "integrity": "sha512-GDFBaTI00ox3tfVbYdlo4H7CS7MzjsEOYibc9Kq46PyF0ZRIhgf0WooNxikz/j2Q68goR/Ykk5odbKwq/CifMg==", - "requires": { - "@baloise/web-app-utils": "^3.16.1", - "date-fns": "^2.28.0", - "lodash.capitalize": "^4.2.1", - "lodash.isarray": "^4.0.0", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isstring": "^4.0.1", - "lodash.round": "^4.0.4" - } - }, "@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", @@ -5948,6 +5790,7 @@ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.0.3.tgz", "integrity": "sha512-cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg==", "dev": true, + "peer": true, "requires": { "jest-diff": "^27.0.0", "pretty-format": "^27.0.0" @@ -6525,14 +6368,6 @@ "whatwg-url": "^8.0.0" } }, - "date-fns": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", - "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", - "requires": { - "@babel/runtime": "^7.21.0" - } - }, "debug": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", @@ -7652,82 +7487,17 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, - "lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" - }, "lodash.isarray": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=" }, - "lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "lodash.isdate": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" - }, - "lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" - }, - "lodash.isnan": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" - }, - "lodash.isnil": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" - }, - "lodash.isnumber": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - }, - "lodash.isobject": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" - }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, - "lodash.padstart": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" - }, - "lodash.round": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" - }, - "lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" - }, "lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -8460,7 +8230,8 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true + "dev": true, + "peer": true }, "universalify": { "version": "0.1.2", @@ -8672,4 +8443,4 @@ "dev": true } } -} \ No newline at end of file +} diff --git a/packages/validators/package-lock.json b/packages/validators/package-lock.json index 08c6570..fa481a3 100644 --- a/packages/validators/package-lock.json +++ b/packages/validators/package-lock.json @@ -56,6 +56,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, + "peer": true, "dependencies": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -658,25 +659,6 @@ "node": ">=6.9.0" } }, - "node_modules/@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "dependencies": { - "date-fns": "^2.28.0", - "lodash.camelcase": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isdate": "^4.0.1", - "lodash.isequal": "^4.5.0", - "lodash.isnan": "^3.0.2", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isobject": "^3.0.2", - "lodash.isstring": "^4.0.1", - "lodash.padstart": "^4.6.1", - "lodash.upperfirst": "^4.3.1" - } - }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", @@ -3967,11 +3949,6 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, "node_modules/lodash.capitalize": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", @@ -3983,27 +3960,6 @@ "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=", "deprecated": "This package is deprecated. Use Array.isArray." }, - "node_modules/lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "node_modules/lodash.isdate": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" - }, - "node_modules/lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", - "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead." - }, - "node_modules/lodash.isnan": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" - }, "node_modules/lodash.isnil": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", @@ -4014,31 +3970,16 @@ "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" }, - "node_modules/lodash.isobject": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" - }, "node_modules/lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" }, - "node_modules/lodash.padstart": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" - }, "node_modules/lodash.round": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=" }, - "node_modules/lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" - }, "node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -5729,6 +5670,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -6100,6 +6042,7 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, + "peer": true, "requires": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -6560,25 +6503,6 @@ "to-fast-properties": "^2.0.0" } }, - "@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "requires": { - "date-fns": "^2.28.0", - "lodash.camelcase": "^4.3.0", - "lodash.isboolean": "^3.0.3", - "lodash.isdate": "^4.0.1", - "lodash.isequal": "^4.5.0", - "lodash.isnan": "^3.0.2", - "lodash.isnil": "^4.0.0", - "lodash.isnumber": "^3.0.3", - "lodash.isobject": "^3.0.2", - "lodash.isstring": "^4.0.1", - "lodash.padstart": "^4.6.1", - "lodash.upperfirst": "^4.3.1" - } - }, "@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", @@ -9190,11 +9114,6 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" - }, "lodash.capitalize": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", @@ -9205,26 +9124,6 @@ "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=" }, - "lodash.isboolean": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - }, - "lodash.isdate": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" - }, - "lodash.isequal": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" - }, - "lodash.isnan": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" - }, "lodash.isnil": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", @@ -9235,31 +9134,16 @@ "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" }, - "lodash.isobject": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" - }, "lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" }, - "lodash.padstart": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" - }, "lodash.round": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=" }, - "lodash.upperfirst": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" - }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -10608,7 +10492,8 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true + "dev": true, + "peer": true }, "union-value": { "version": "1.0.1", @@ -10886,4 +10771,4 @@ } } } -} \ No newline at end of file +} From ec7c74e53ae4f9e4f08d3f51be4bc0416011e44f Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 13:10:15 +0000 Subject: [PATCH 11/14] chore(): update build artifacts --- packages/pipes/package-lock.json | 52 ++++++++++++++++---------------- packages/utils/package-lock.json | 4 +-- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/packages/pipes/package-lock.json b/packages/pipes/package-lock.json index bca4ed2..700fd43 100644 --- a/packages/pipes/package-lock.json +++ b/packages/pipes/package-lock.json @@ -577,7 +577,7 @@ }, "node_modules/@babel/runtime": { "version": "7.28.4", - "resolved": "https://nexus.balgroupit.com/repository/npm/@babel/runtime/-/runtime-7.28.4.tgz", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", "license": "MIT", "engines": { @@ -666,7 +666,7 @@ }, "node_modules/@baloise/web-app-utils": { "version": "3.16.1", - "resolved": "https://nexus.balgroupit.com/repository/npm/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", "license": "Apache-2.0", "dependencies": { @@ -1900,7 +1900,7 @@ }, "node_modules/date-fns": { "version": "2.30.0", - "resolved": "https://nexus.balgroupit.com/repository/npm/date-fns/-/date-fns-2.30.0.tgz", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", "license": "MIT", "dependencies": { @@ -3971,7 +3971,7 @@ }, "node_modules/lodash.camelcase": { "version": "4.3.0", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", "license": "MIT" }, @@ -3988,44 +3988,44 @@ }, "node_modules/lodash.isboolean": { "version": "3.0.3", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", "license": "MIT" }, "node_modules/lodash.isdate": { "version": "4.0.1", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==", "license": "MIT" }, "node_modules/lodash.isequal": { "version": "4.5.0", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", "license": "MIT" }, "node_modules/lodash.isnan": { "version": "3.0.2", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==", "license": "MIT" }, "node_modules/lodash.isnil": { "version": "4.0.0", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==", "license": "MIT" }, "node_modules/lodash.isnumber": { "version": "3.0.3", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", "license": "MIT" }, "node_modules/lodash.isobject": { "version": "3.0.2", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", "license": "MIT" }, @@ -4036,7 +4036,7 @@ }, "node_modules/lodash.padstart": { "version": "4.6.1", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==", "license": "MIT" }, @@ -4047,7 +4047,7 @@ }, "node_modules/lodash.upperfirst": { "version": "4.3.1", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", "license": "MIT" }, @@ -6510,7 +6510,7 @@ }, "@babel/runtime": { "version": "7.28.4", - "resolved": "https://nexus.balgroupit.com/repository/npm/@babel/runtime/-/runtime-7.28.4.tgz", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" }, "@babel/template": { @@ -6581,7 +6581,7 @@ }, "@baloise/web-app-utils": { "version": "3.16.1", - "resolved": "https://nexus.balgroupit.com/repository/npm/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", "requires": { "date-fns": "^2.28.0", @@ -7602,7 +7602,7 @@ }, "date-fns": { "version": "2.30.0", - "resolved": "https://nexus.balgroupit.com/repository/npm/date-fns/-/date-fns-2.30.0.tgz", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", "requires": { "@babel/runtime": "^7.21.0" @@ -9205,7 +9205,7 @@ }, "lodash.camelcase": { "version": "4.3.0", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" }, "lodash.capitalize": { @@ -9220,37 +9220,37 @@ }, "lodash.isboolean": { "version": "3.0.3", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" }, "lodash.isdate": { "version": "4.0.1", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" }, "lodash.isequal": { "version": "4.5.0", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" }, "lodash.isnan": { "version": "3.0.2", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" }, "lodash.isnil": { "version": "4.0.0", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" }, "lodash.isnumber": { "version": "3.0.3", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" }, "lodash.isobject": { "version": "3.0.2", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" }, "lodash.isstring": { @@ -9260,7 +9260,7 @@ }, "lodash.padstart": { "version": "4.6.1", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" }, "lodash.round": { @@ -9270,7 +9270,7 @@ }, "lodash.upperfirst": { "version": "4.3.1", - "resolved": "https://nexus.balgroupit.com/repository/npm/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" }, "lru-cache": { diff --git a/packages/utils/package-lock.json b/packages/utils/package-lock.json index 8951af9..78bb6c3 100644 --- a/packages/utils/package-lock.json +++ b/packages/utils/package-lock.json @@ -2594,7 +2594,7 @@ }, "node_modules/fsevents": { "version": "2.3.3", - "resolved": "https://nexus.balgroupit.com/repository/npm/fsevents/-/fsevents-2.3.3.tgz", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, @@ -8112,7 +8112,7 @@ }, "fsevents": { "version": "2.3.3", - "resolved": "https://nexus.balgroupit.com/repository/npm/fsevents/-/fsevents-2.3.3.tgz", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "optional": true From c636cbd098a0deb9151b41b4570587c1b894a8df Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 13:10:24 +0000 Subject: [PATCH 12/14] chore(release): publish v3.16.3 --- lerna.json | 2 +- package-lock.json | 22 +++---------------- packages/clean-architecture/package-lock.json | 6 ++--- packages/clean-architecture/package.json | 2 +- packages/form-vue/package-lock.json | 8 +++---- packages/form-vue/package.json | 4 ++-- packages/pipes-angular/package-lock.json | 8 +++---- packages/pipes-angular/package.json | 4 ++-- packages/pipes-vue/package-lock.json | 8 +++---- packages/pipes-vue/package.json | 4 ++-- packages/pipes/package-lock.json | 8 +++---- packages/pipes/package.json | 4 ++-- .../unsupported-browsers/package-lock.json | 6 ++--- packages/unsupported-browsers/package.json | 2 +- packages/utils/package-lock.json | 6 ++--- packages/utils/package.json | 2 +- packages/validators-angular/package-lock.json | 8 +++---- packages/validators-angular/package.json | 4 ++-- packages/validators-vue/package-lock.json | 8 +++---- packages/validators-vue/package.json | 4 ++-- packages/validators/package-lock.json | 8 +++---- packages/validators/package.json | 4 ++-- 22 files changed, 58 insertions(+), 74 deletions(-) diff --git a/lerna.json b/lerna.json index c080c0a..f9409d8 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.16.2", + "version": "3.16.3", "granularPathspec": false, "packages": [ "packages/*" diff --git a/package-lock.json b/package-lock.json index 73aa6e3..f27c18f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2122,7 +2122,6 @@ "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.1.0.tgz", "integrity": "sha512-Czz/59VefU+kKDy+ZfDwtOIYIkFjExOKf+HA92aiTZJ6EfWpFzYQWw0l54ji8bVmyhc+mGaLUbSUmXazG7z5OQ==", "dev": true, - "peer": true, "dependencies": { "@octokit/auth-token": "^3.0.0", "@octokit/graphql": "^5.0.0", @@ -2407,7 +2406,6 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.8.0.tgz", "integrity": "sha512-Gleacp/ZhRtJRYs5/T8KQR3pAQjQI89Dn/k+OzyCKOsLiZH2/Vh60cFBTnFsHNI6WAD+lNUo/xGZ4NeA5u0Ipw==", "dev": true, - "peer": true, "dependencies": { "@typescript-eslint/scope-manager": "5.8.0", "@typescript-eslint/types": "5.8.0", @@ -2568,7 +2566,6 @@ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", "dev": true, - "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -3791,7 +3788,6 @@ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, - "peer": true, "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -4141,7 +4137,6 @@ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.5.0.tgz", "integrity": "sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg==", "dev": true, - "peer": true, "dependencies": { "@eslint/eslintrc": "^1.0.5", "@humanwhocodes/config-array": "^0.9.2", @@ -7043,7 +7038,6 @@ "integrity": "sha512-4qmzj6wE2RJXyy3p/X33cisl4yYgUUvXZ6yUYbt1zxWdInYYse61yqyRR91jwLeKpgxL7plkIC5rPiqg4kNJDQ==", "dev": true, "hasInstallScript": true, - "peer": true, "dependencies": { "@nrwl/cli": "15.0.11", "@nrwl/tao": "15.0.11", @@ -7635,7 +7629,6 @@ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", "dev": true, - "peer": true, "bin": { "prettier": "bin-prettier.js" }, @@ -8855,7 +8848,6 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", "dev": true, - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -11043,7 +11035,6 @@ "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.1.0.tgz", "integrity": "sha512-Czz/59VefU+kKDy+ZfDwtOIYIkFjExOKf+HA92aiTZJ6EfWpFzYQWw0l54ji8bVmyhc+mGaLUbSUmXazG7z5OQ==", "dev": true, - "peer": true, "requires": { "@octokit/auth-token": "^3.0.0", "@octokit/graphql": "^5.0.0", @@ -11256,7 +11247,6 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.8.0.tgz", "integrity": "sha512-Gleacp/ZhRtJRYs5/T8KQR3pAQjQI89Dn/k+OzyCKOsLiZH2/Vh60cFBTnFsHNI6WAD+lNUo/xGZ4NeA5u0Ipw==", "dev": true, - "peer": true, "requires": { "@typescript-eslint/scope-manager": "5.8.0", "@typescript-eslint/types": "5.8.0", @@ -11361,8 +11351,7 @@ "version": "8.6.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", - "dev": true, - "peer": true + "dev": true }, "acorn-jsx": { "version": "5.3.2", @@ -12292,7 +12281,6 @@ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, - "peer": true, "requires": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -12558,7 +12546,6 @@ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.5.0.tgz", "integrity": "sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg==", "dev": true, - "peer": true, "requires": { "@eslint/eslintrc": "^1.0.5", "@humanwhocodes/config-array": "^0.9.2", @@ -14767,7 +14754,6 @@ "resolved": "https://registry.npmjs.org/nx/-/nx-15.0.11.tgz", "integrity": "sha512-4qmzj6wE2RJXyy3p/X33cisl4yYgUUvXZ6yUYbt1zxWdInYYse61yqyRR91jwLeKpgxL7plkIC5rPiqg4kNJDQ==", "dev": true, - "peer": true, "requires": { "@nrwl/cli": "15.0.11", "@nrwl/tao": "15.0.11", @@ -15191,8 +15177,7 @@ "version": "2.5.1", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", - "dev": true, - "peer": true + "dev": true }, "prettier-linter-helpers": { "version": "1.0.0", @@ -16096,8 +16081,7 @@ "version": "4.5.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", - "dev": true, - "peer": true + "dev": true }, "uglify-js": { "version": "3.17.4", diff --git a/packages/clean-architecture/package-lock.json b/packages/clean-architecture/package-lock.json index 67a4a5a..d645f71 100644 --- a/packages/clean-architecture/package-lock.json +++ b/packages/clean-architecture/package-lock.json @@ -1,12 +1,12 @@ { "name": "@baloise/web-app-clean-architecture", - "version": "3.16.2", + "version": "3.16.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-clean-architecture", - "version": "3.16.2", + "version": "3.16.3", "license": "Apache-2.0", "dependencies": { "@types/lodash.clonedeep": "^4.5.7", @@ -999,4 +999,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/clean-architecture/package.json b/packages/clean-architecture/package.json index f239b09..fba739f 100644 --- a/packages/clean-architecture/package.json +++ b/packages/clean-architecture/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-clean-architecture", - "version": "3.16.2", + "version": "3.16.3", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", diff --git a/packages/form-vue/package-lock.json b/packages/form-vue/package-lock.json index 453faa0..84b16c3 100644 --- a/packages/form-vue/package-lock.json +++ b/packages/form-vue/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-form-vue", - "version": "3.16.2", + "version": "3.16.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-form-vue", - "version": "3.16.2", + "version": "3.16.3", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.2" + "@baloise/web-app-validators": "^3.16.3" }, "devDependencies": { "@baloise/design-system-components": "^10.12.0", @@ -2139,4 +2139,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/form-vue/package.json b/packages/form-vue/package.json index 8779eba..31a7556 100644 --- a/packages/form-vue/package.json +++ b/packages/form-vue/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-form-vue", - "version": "3.16.2", + "version": "3.16.3", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -50,6 +50,6 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-validators": "^3.16.2" + "@baloise/web-app-validators": "^3.16.3" } } diff --git a/packages/pipes-angular/package-lock.json b/packages/pipes-angular/package-lock.json index 60309c2..f654753 100644 --- a/packages/pipes-angular/package-lock.json +++ b/packages/pipes-angular/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-pipes-angular", - "version": "3.16.2", + "version": "3.16.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes-angular", - "version": "3.16.2", + "version": "3.16.3", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.2", + "@baloise/web-app-pipes": "^3.16.3", "tslib": "^2.2.0" }, "devDependencies": { @@ -7066,4 +7066,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/pipes-angular/package.json b/packages/pipes-angular/package.json index 8a44b43..5de100e 100644 --- a/packages/pipes-angular/package.json +++ b/packages/pipes-angular/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-pipes-angular", - "version": "3.16.2", + "version": "3.16.3", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -29,7 +29,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.2", + "@baloise/web-app-pipes": "^3.16.3", "tslib": "^2.2.0" }, "peerDependencies": { diff --git a/packages/pipes-vue/package-lock.json b/packages/pipes-vue/package-lock.json index e8194bf..fe9e9c1 100644 --- a/packages/pipes-vue/package-lock.json +++ b/packages/pipes-vue/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-pipes-vue", - "version": "3.16.2", + "version": "3.16.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes-vue", - "version": "3.16.2", + "version": "3.16.3", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.2" + "@baloise/web-app-pipes": "^3.16.3" }, "devDependencies": { "@types/lodash": "^4.14.172", @@ -890,4 +890,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/packages/pipes-vue/package.json b/packages/pipes-vue/package.json index 60374c3..7a96c71 100644 --- a/packages/pipes-vue/package.json +++ b/packages/pipes-vue/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-pipes-vue", - "version": "3.16.2", + "version": "3.16.3", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -48,6 +48,6 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-pipes": "^3.16.2" + "@baloise/web-app-pipes": "^3.16.3" } } diff --git a/packages/pipes/package-lock.json b/packages/pipes/package-lock.json index 700fd43..4ef43d7 100644 --- a/packages/pipes/package-lock.json +++ b/packages/pipes/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-pipes", - "version": "3.16.2", + "version": "3.16.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes", - "version": "3.16.2", + "version": "3.16.3", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.2", + "@baloise/web-app-utils": "^3.16.3", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", "lodash.isstring": "^4.0.1", @@ -10900,4 +10900,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/pipes/package.json b/packages/pipes/package.json index e7d2b11..0e52ee6 100644 --- a/packages/pipes/package.json +++ b/packages/pipes/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-pipes", - "version": "3.16.2", + "version": "3.16.3", "description": "Utilities for Baloise Web Applications", "scripts": { "banner": "node ../../.build/banner.js pipes", @@ -39,7 +39,7 @@ }, "homepage": "https://github.com/baloise/web-app-utils", "dependencies": { - "@baloise/web-app-utils": "^3.16.2", + "@baloise/web-app-utils": "^3.16.3", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", "lodash.isstring": "^4.0.1", diff --git a/packages/unsupported-browsers/package-lock.json b/packages/unsupported-browsers/package-lock.json index ccb9ea7..cce3467 100644 --- a/packages/unsupported-browsers/package-lock.json +++ b/packages/unsupported-browsers/package-lock.json @@ -1,12 +1,12 @@ { "name": "@baloise/web-app-unsupported-browsers", - "version": "3.16.2", + "version": "3.16.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-unsupported-browsers", - "version": "3.16.2", + "version": "3.16.3", "hasInstallScript": true, "license": "Apache-2.0", "devDependencies": { @@ -4951,4 +4951,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/packages/unsupported-browsers/package.json b/packages/unsupported-browsers/package.json index e9c5542..622110b 100644 --- a/packages/unsupported-browsers/package.json +++ b/packages/unsupported-browsers/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-unsupported-browsers", - "version": "3.16.2", + "version": "3.16.3", "description": "Utilities for Baloise Web Applications", "scripts": { "banner": "node ../../.build/banner.js unsupported-browsers", diff --git a/packages/utils/package-lock.json b/packages/utils/package-lock.json index 78bb6c3..37f2625 100644 --- a/packages/utils/package-lock.json +++ b/packages/utils/package-lock.json @@ -1,12 +1,12 @@ { "name": "@baloise/web-app-utils", - "version": "3.16.2", + "version": "3.16.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-utils", - "version": "3.16.2", + "version": "3.16.3", "license": "Apache-2.0", "dependencies": { "date-fns": "^2.28.0", @@ -10858,4 +10858,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/utils/package.json b/packages/utils/package.json index 01d646d..c3e7ff8 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-utils", - "version": "3.16.2", + "version": "3.16.3", "description": "Utilities for Baloise Web Applications", "scripts": { "banner": "node ../../.build/banner.js utils", diff --git a/packages/validators-angular/package-lock.json b/packages/validators-angular/package-lock.json index b8781c5..ca78ee1 100644 --- a/packages/validators-angular/package-lock.json +++ b/packages/validators-angular/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-validators-angular", - "version": "3.16.2", + "version": "3.16.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators-angular", - "version": "3.16.2", + "version": "3.16.3", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.2", + "@baloise/web-app-validators": "^3.16.3", "tslib": "^2.2.0" }, "devDependencies": { @@ -7060,4 +7060,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/validators-angular/package.json b/packages/validators-angular/package.json index 70d1443..a7e5c79 100644 --- a/packages/validators-angular/package.json +++ b/packages/validators-angular/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-validators-angular", - "version": "3.16.2", + "version": "3.16.3", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -29,7 +29,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.2", + "@baloise/web-app-validators": "^3.16.3", "tslib": "^2.2.0" }, "peerDependencies": { diff --git a/packages/validators-vue/package-lock.json b/packages/validators-vue/package-lock.json index ddfe49c..b1f68d4 100644 --- a/packages/validators-vue/package-lock.json +++ b/packages/validators-vue/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-validators-vue", - "version": "3.16.2", + "version": "3.16.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators-vue", - "version": "3.16.2", + "version": "3.16.3", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.2", + "@baloise/web-app-validators": "^3.16.3", "lodash.isarray": "^4.0.0" }, "devDependencies": { @@ -8443,4 +8443,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/packages/validators-vue/package.json b/packages/validators-vue/package.json index d70cd87..5fa8bb1 100644 --- a/packages/validators-vue/package.json +++ b/packages/validators-vue/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-validators-vue", - "version": "3.16.2", + "version": "3.16.3", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -52,7 +52,7 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-validators": "^3.16.2", + "@baloise/web-app-validators": "^3.16.3", "lodash.isarray": "^4.0.0" } } diff --git a/packages/validators/package-lock.json b/packages/validators/package-lock.json index fa481a3..44a15e3 100644 --- a/packages/validators/package-lock.json +++ b/packages/validators/package-lock.json @@ -1,15 +1,15 @@ { "name": "@baloise/web-app-validators", - "version": "3.16.2", + "version": "3.16.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators", - "version": "3.16.2", + "version": "3.16.3", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.2", + "@baloise/web-app-utils": "^3.16.3", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", @@ -10771,4 +10771,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/validators/package.json b/packages/validators/package.json index 5419afc..6025f71 100644 --- a/packages/validators/package.json +++ b/packages/validators/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-validators", - "version": "3.16.2", + "version": "3.16.3", "description": "Utilities for Baloise Web Applications", "scripts": { "banner": "node ../../.build/banner.js validators", @@ -39,7 +39,7 @@ }, "homepage": "https://github.com/baloise/web-app-utils", "dependencies": { - "@baloise/web-app-utils": "^3.16.2", + "@baloise/web-app-utils": "^3.16.3", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", From 8fdc57c8394830dc89876e03c73214c5bfee7c02 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 13:10:45 +0000 Subject: [PATCH 13/14] chore(): update lock files --- packages/clean-architecture/package-lock.json | 8 +- packages/form-vue/package-lock.json | 195 ++++++------ packages/pipes-angular/package-lock.json | 294 +++++++++++++++-- packages/pipes-vue/package-lock.json | 260 ++++++++++++++- packages/pipes/package-lock.json | 20 +- .../unsupported-browsers/package-lock.json | 4 +- packages/utils/package-lock.json | 8 +- packages/validators-angular/package-lock.json | 300 ++++++++++++++++-- packages/validators-vue/package-lock.json | 262 ++++++++++++++- packages/validators/package-lock.json | 136 +++++++- 10 files changed, 1290 insertions(+), 197 deletions(-) diff --git a/packages/clean-architecture/package-lock.json b/packages/clean-architecture/package-lock.json index d645f71..e0c5589 100644 --- a/packages/clean-architecture/package-lock.json +++ b/packages/clean-architecture/package-lock.json @@ -458,7 +458,6 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.56.2.tgz", "integrity": "sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ==", "dev": true, - "peer": true, "bin": { "rollup": "dist/bin/rollup" }, @@ -533,7 +532,6 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -914,7 +912,6 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.56.2.tgz", "integrity": "sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ==", "dev": true, - "peer": true, "requires": { "fsevents": "~2.3.2" } @@ -974,8 +971,7 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true, - "peer": true + "dev": true }, "wrappy": { "version": "1.0.2", @@ -999,4 +995,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/form-vue/package-lock.json b/packages/form-vue/package-lock.json index 84b16c3..91cae64 100644 --- a/packages/form-vue/package-lock.json +++ b/packages/form-vue/package-lock.json @@ -115,10 +115,10 @@ "dev": true }, "node_modules/@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "dev": true, + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "license": "Apache-2.0", "dependencies": { "date-fns": "^2.28.0", "lodash.camelcase": "^4.3.0", @@ -135,11 +135,12 @@ } }, "node_modules/@baloise/web-app-validators": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.1.tgz", - "integrity": "sha512-GDFBaTI00ox3tfVbYdlo4H7CS7MzjsEOYibc9Kq46PyF0ZRIhgf0WooNxikz/j2Q68goR/Ykk5odbKwq/CifMg==", + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.3.tgz", + "integrity": "sha512-Lws3a9l0eb1Gq85Ek+MZPYDxLl2OnCuAq9TTUef4VLPSE6dOqFIP7IIupsTbSWzFbRAjIBY6mURP/Sp/E9i1jQ==", + "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.1", + "@baloise/web-app-utils": "^3.16.3", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", @@ -225,6 +226,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.36.tgz", "integrity": "sha512-AvGb4bTj4W8uQ4BqaSxo7UwTEqX5utdRSMyHy58OragWlt8nEACQ9mIeQh3K4di4/SX+41+pJrLIY01lHAOFOA==", "dev": true, + "peer": true, "dependencies": { "@babel/parser": "^7.16.4", "@vue/compiler-core": "3.2.36", @@ -243,6 +245,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, + "peer": true, "dependencies": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -255,6 +258,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz", "integrity": "sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==", "dev": true, + "peer": true, "dependencies": { "@vue/compiler-core": "3.2.36", "@vue/shared": "3.2.36" @@ -264,13 +268,15 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true + "dev": true, + "peer": true }, "node_modules/@vue/compiler-ssr": { "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.36.tgz", "integrity": "sha512-+KugInUFRvOxEdLkZwE+W43BqHyhBh0jpYXhmqw1xGq2dmE6J9eZ8UUSOKNhdHtQ/iNLWWeK/wPZkVLUf3YGaw==", "dev": true, + "peer": true, "dependencies": { "@vue/compiler-dom": "3.2.36", "@vue/shared": "3.2.36" @@ -281,6 +287,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, + "peer": true, "dependencies": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -293,6 +300,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz", "integrity": "sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==", "dev": true, + "peer": true, "dependencies": { "@vue/compiler-core": "3.2.36", "@vue/shared": "3.2.36" @@ -302,7 +310,8 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true + "dev": true, + "peer": true }, "node_modules/@vue/devtools-api": { "version": "6.1.4", @@ -324,6 +333,7 @@ "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.36.tgz", "integrity": "sha512-Jk5o2BhpODC9XTA7o4EL8hSJ4JyrFWErLtClG3NH8wDS7ri9jBDWxI7/549T7JY9uilKsaNM+4pJASLj5dtRwA==", "dev": true, + "peer": true, "dependencies": { "@babel/parser": "^7.16.4", "@vue/compiler-core": "3.2.36", @@ -337,6 +347,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, + "peer": true, "dependencies": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -348,7 +359,8 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true + "dev": true, + "peer": true }, "node_modules/@vue/runtime-core": { "version": "3.2.4", @@ -434,7 +446,6 @@ "version": "2.28.0", "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz", "integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==", - "dev": true, "engines": { "node": ">=0.11" }, @@ -671,33 +682,28 @@ "node_modules/lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", - "dev": true + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" }, "node_modules/lodash.capitalize": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=", - "dev": true + "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=" }, "node_modules/lodash.isarray": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=", - "deprecated": "This package is deprecated. Use Array.isArray.", - "dev": true + "deprecated": "This package is deprecated. Use Array.isArray." }, "node_modules/lodash.isboolean": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=", - "dev": true + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" }, "node_modules/lodash.isdate": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha1-NaVDZzuddhEN5BFLMsxXcEin82Y=", - "dev": true + "integrity": "sha1-NaVDZzuddhEN5BFLMsxXcEin82Y=" }, "node_modules/lodash.isempty": { "version": "4.4.0", @@ -708,38 +714,32 @@ "node_modules/lodash.isequal": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=", - "dev": true + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" }, "node_modules/lodash.isnan": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha1-gu0Epfnqi9YibQwmrwysMvRQd0U=", - "dev": true + "integrity": "sha1-gu0Epfnqi9YibQwmrwysMvRQd0U=" }, "node_modules/lodash.isnil": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=", - "dev": true + "integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=" }, "node_modules/lodash.isnumber": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=", - "dev": true + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" }, "node_modules/lodash.isobject": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", - "dev": true + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" }, "node_modules/lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", - "dev": true + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" }, "node_modules/lodash.lowercase": { "version": "4.3.0", @@ -750,14 +750,12 @@ "node_modules/lodash.padstart": { "version": "4.6.1", "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs=", - "dev": true + "integrity": "sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs=" }, "node_modules/lodash.round": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=", - "dev": true + "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=" }, "node_modules/lodash.trim": { "version": "4.5.1", @@ -768,14 +766,14 @@ "node_modules/lodash.upperfirst": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=", - "dev": true + "integrity": "sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=" }, "node_modules/magic-string": { "version": "0.25.9", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", "dev": true, + "peer": true, "dependencies": { "sourcemap-codec": "^1.4.8" } @@ -824,6 +822,7 @@ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", "dev": true, + "peer": true, "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -904,7 +903,8 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true + "dev": true, + "peer": true }, "node_modules/picomatch": { "version": "2.3.0", @@ -945,6 +945,7 @@ "url": "https://tidelift.com/funding/github/npm/postcss" } ], + "peer": true, "dependencies": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -984,7 +985,6 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.56.2.tgz", "integrity": "sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ==", "dev": true, - "peer": true, "bin": { "rollup": "dist/bin/rollup" }, @@ -1085,6 +1085,7 @@ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "dev": true, + "peer": true, "engines": { "node": ">=0.10.0" } @@ -1093,7 +1094,8 @@ "version": "1.4.8", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "dev": true + "dev": true, + "peer": true }, "node_modules/to-fast-properties": { "version": "2.0.0", @@ -1121,7 +1123,6 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -1147,7 +1148,6 @@ "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.4.tgz", "integrity": "sha512-rNCFmoewm8IwmTK0nj3ysKq53iRpNEFKoBJ4inar6tIh7Oj7juubS39RI8UI+VE7x+Cs2z6PBsadtZu7z2qppg==", "dev": true, - "peer": true, "dependencies": { "@vue/compiler-dom": "3.2.4", "@vue/runtime-dom": "3.2.4", @@ -1254,10 +1254,9 @@ "dev": true }, "@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", - "dev": true, + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", "requires": { "date-fns": "^2.28.0", "lodash.camelcase": "^4.3.0", @@ -1273,6 +1272,21 @@ "lodash.upperfirst": "^4.3.1" } }, + "@baloise/web-app-validators": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.3.tgz", + "integrity": "sha512-Lws3a9l0eb1Gq85Ek+MZPYDxLl2OnCuAq9TTUef4VLPSE6dOqFIP7IIupsTbSWzFbRAjIBY6mURP/Sp/E9i1jQ==", + "requires": { + "@baloise/web-app-utils": "^3.16.3", + "date-fns": "^2.28.0", + "lodash.capitalize": "^4.2.1", + "lodash.isarray": "^4.0.0", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isstring": "^4.0.1", + "lodash.round": "^4.0.4" + } + }, "@popperjs/core": { "version": "2.11.5", "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.5.tgz", @@ -1335,6 +1349,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.36.tgz", "integrity": "sha512-AvGb4bTj4W8uQ4BqaSxo7UwTEqX5utdRSMyHy58OragWlt8nEACQ9mIeQh3K4di4/SX+41+pJrLIY01lHAOFOA==", "dev": true, + "peer": true, "requires": { "@babel/parser": "^7.16.4", "@vue/compiler-core": "3.2.36", @@ -1353,6 +1368,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, + "peer": true, "requires": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -1365,6 +1381,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz", "integrity": "sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==", "dev": true, + "peer": true, "requires": { "@vue/compiler-core": "3.2.36", "@vue/shared": "3.2.36" @@ -1374,7 +1391,8 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true + "dev": true, + "peer": true } } }, @@ -1383,6 +1401,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.36.tgz", "integrity": "sha512-+KugInUFRvOxEdLkZwE+W43BqHyhBh0jpYXhmqw1xGq2dmE6J9eZ8UUSOKNhdHtQ/iNLWWeK/wPZkVLUf3YGaw==", "dev": true, + "peer": true, "requires": { "@vue/compiler-dom": "3.2.36", "@vue/shared": "3.2.36" @@ -1393,6 +1412,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, + "peer": true, "requires": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -1405,6 +1425,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.36.tgz", "integrity": "sha512-tcOTAOiW4s24QLnq+ON6J+GRONXJ+A/mqKCORi0LSlIh8XQlNnlm24y8xIL8la+ZDgkdbjarQ9ZqYSvEja6gVA==", "dev": true, + "peer": true, "requires": { "@vue/compiler-core": "3.2.36", "@vue/shared": "3.2.36" @@ -1414,7 +1435,8 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true + "dev": true, + "peer": true } } }, @@ -1438,6 +1460,7 @@ "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.36.tgz", "integrity": "sha512-Jk5o2BhpODC9XTA7o4EL8hSJ4JyrFWErLtClG3NH8wDS7ri9jBDWxI7/549T7JY9uilKsaNM+4pJASLj5dtRwA==", "dev": true, + "peer": true, "requires": { "@babel/parser": "^7.16.4", "@vue/compiler-core": "3.2.36", @@ -1451,6 +1474,7 @@ "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.36.tgz", "integrity": "sha512-bbyZM5hvBicv0PW3KUfVi+x3ylHnfKG7DOn5wM+f2OztTzTjLEyBb/5yrarIYpmnGitVGbjZqDbODyW4iK8hqw==", "dev": true, + "peer": true, "requires": { "@babel/parser": "^7.16.4", "@vue/shared": "3.2.36", @@ -1462,7 +1486,8 @@ "version": "3.2.36", "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.36.tgz", "integrity": "sha512-JtB41wXl7Au3+Nl3gD16Cfpj7k/6aCroZ6BbOiCMFCMvrOpkg/qQUXTso2XowaNqBbnkuGHurLAqkLBxNGc1hQ==", - "dev": true + "dev": true, + "peer": true } } }, @@ -1542,8 +1567,7 @@ "date-fns": { "version": "2.28.0", "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz", - "integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==", - "dev": true + "integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==" }, "debug": { "version": "4.3.2", @@ -1727,32 +1751,27 @@ "lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", - "dev": true + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" }, "lodash.capitalize": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=", - "dev": true + "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=" }, "lodash.isarray": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", - "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=", - "dev": true + "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=" }, "lodash.isboolean": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", - "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=", - "dev": true + "integrity": "sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=" }, "lodash.isdate": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", - "integrity": "sha1-NaVDZzuddhEN5BFLMsxXcEin82Y=", - "dev": true + "integrity": "sha1-NaVDZzuddhEN5BFLMsxXcEin82Y=" }, "lodash.isempty": { "version": "4.4.0", @@ -1763,38 +1782,32 @@ "lodash.isequal": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", - "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=", - "dev": true + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" }, "lodash.isnan": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", - "integrity": "sha1-gu0Epfnqi9YibQwmrwysMvRQd0U=", - "dev": true + "integrity": "sha1-gu0Epfnqi9YibQwmrwysMvRQd0U=" }, "lodash.isnil": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", - "integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=", - "dev": true + "integrity": "sha1-SeKM1VkBNFjIFMVHnTxmOiG/qmw=" }, "lodash.isnumber": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", - "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=", - "dev": true + "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" }, "lodash.isobject": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", - "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", - "dev": true + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" }, "lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", - "dev": true + "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" }, "lodash.lowercase": { "version": "4.3.0", @@ -1805,14 +1818,12 @@ "lodash.padstart": { "version": "4.6.1", "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", - "integrity": "sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs=", - "dev": true + "integrity": "sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs=" }, "lodash.round": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", - "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=", - "dev": true + "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=" }, "lodash.trim": { "version": "4.5.1", @@ -1823,14 +1834,14 @@ "lodash.upperfirst": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", - "integrity": "sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=", - "dev": true + "integrity": "sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984=" }, "magic-string": { "version": "0.25.9", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", "dev": true, + "peer": true, "requires": { "sourcemap-codec": "^1.4.8" } @@ -1869,7 +1880,8 @@ "version": "3.3.4", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "dev": true + "dev": true, + "peer": true }, "once": { "version": "1.4.0", @@ -1926,7 +1938,8 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true + "dev": true, + "peer": true }, "picomatch": { "version": "2.3.0", @@ -1948,6 +1961,7 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", "dev": true, + "peer": true, "requires": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -1981,7 +1995,6 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.56.2.tgz", "integrity": "sha512-s8H00ZsRi29M2/lGdm1u8DJpJ9ML8SUOpVVBd33XNeEeL3NVaTiUcSBHzBdF3eAyR0l7VSpsuoVUGrRHq7aPwQ==", "dev": true, - "peer": true, "requires": { "fsevents": "~2.3.2" } @@ -2063,13 +2076,15 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true + "dev": true, + "peer": true }, "sourcemap-codec": { "version": "1.4.8", "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", - "dev": true + "dev": true, + "peer": true }, "to-fast-properties": { "version": "2.0.0", @@ -2093,8 +2108,7 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true, - "peer": true + "dev": true }, "vee-validate": { "version": "4.5.11", @@ -2110,7 +2124,6 @@ "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.4.tgz", "integrity": "sha512-rNCFmoewm8IwmTK0nj3ysKq53iRpNEFKoBJ4inar6tIh7Oj7juubS39RI8UI+VE7x+Cs2z6PBsadtZu7z2qppg==", "dev": true, - "peer": true, "requires": { "@vue/compiler-dom": "3.2.4", "@vue/runtime-dom": "3.2.4", @@ -2139,4 +2152,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/pipes-angular/package-lock.json b/packages/pipes-angular/package-lock.json index f654753..5394725 100644 --- a/packages/pipes-angular/package-lock.json +++ b/packages/pipes-angular/package-lock.json @@ -50,7 +50,6 @@ "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.11.tgz", "integrity": "sha512-gPMwDYIAag1izXm2tRQ6EOIx9FVEUqLdr+qYtRVoQtoBmfkoTSLGcpeBXqqlPVxVPbA6Li1WZZT5wxLLlLAN+Q==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -67,7 +66,6 @@ "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.11.tgz", "integrity": "sha512-EV6JCBbXdHDHbPShWmymvuoxFYG0KVc8sDJpYp47WLHCY2zgZaXhvWs//Hrls3fmi+TGTekgRa2jOBBNce/Ggg==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -80,7 +78,6 @@ "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.11.tgz", "integrity": "sha512-cl+3Wzxt8NRi2WY+RdsxuQ3yQRUp8pSlfSlJJnfaKE1BEqap6uem2DovuhnIbmrLhxZ5xt7o+I1szyO6sn6+ag==", "dev": true, - "peer": true, "dependencies": { "@babel/core": "^7.17.2", "chokidar": "^3.0.0", @@ -111,7 +108,6 @@ "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.11.tgz", "integrity": "sha512-9BmE2CxyV0g+AkBeuc8IwjSOiJ8Y+kptXnqD/J8EAFT3B0/fLGVnjFdZC6Sev9L0SNZb6qdzebpfIOLqbUjReQ==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -146,7 +142,6 @@ "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.11.tgz", "integrity": "sha512-PG3chCErARb6wNzkOed2NsZmgvTmbumRx/6sMXqGkDKXYQm0JULnl4X42Rn+JCgJ9DLJi5/jrd1dbcBCrKk9Vg==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -190,7 +185,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "dev": true, - "peer": true, "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", @@ -436,6 +430,15 @@ "node": ">=6.0.0" } }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/template": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", @@ -485,6 +488,39 @@ "node": ">=6.9.0" } }, + "node_modules/@baloise/web-app-pipes": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.3.tgz", + "integrity": "sha512-PTSQXk4+qRAxWpW3MtF3+4ECdjGbdGnoYoXdCbSHJ4s2gLdWcMXNO1DhmRViG3cZciNc81HwlOqf/RL/lR/PSw==", + "license": "Apache-2.0", + "dependencies": { + "@baloise/web-app-utils": "^3.16.3", + "lodash.capitalize": "^4.2.1", + "lodash.isarray": "^4.0.0", + "lodash.isstring": "^4.0.1", + "lodash.round": "^4.0.4" + } + }, + "node_modules/@baloise/web-app-utils": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "license": "Apache-2.0", + "dependencies": { + "date-fns": "^2.28.0", + "lodash.camelcase": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isdate": "^4.0.1", + "lodash.isequal": "^4.5.0", + "lodash.isnan": "^3.0.2", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isobject": "^3.0.2", + "lodash.isstring": "^4.0.1", + "lodash.padstart": "^4.6.1", + "lodash.upperfirst": "^4.3.1" + } + }, "node_modules/@csstools/postcss-cascade-layers": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", @@ -1129,7 +1165,6 @@ "url": "https://tidelift.com/funding/github/npm/browserslist" } ], - "peer": true, "dependencies": { "caniuse-lite": "^1.0.30001400", "electron-to-chromium": "^1.4.251", @@ -1474,6 +1509,22 @@ "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", "dev": true }, + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -2450,6 +2501,92 @@ "node": ">=8" } }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" + }, + "node_modules/lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", + "license": "MIT" + }, + "node_modules/lodash.isarray": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", + "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==", + "deprecated": "This package is deprecated. Use Array.isArray.", + "license": "MIT" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" + }, + "node_modules/lodash.isdate": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==", + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", + "license": "MIT" + }, + "node_modules/lodash.isnan": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==", + "license": "MIT" + }, + "node_modules/lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==", + "license": "MIT" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "license": "MIT" + }, + "node_modules/lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", + "license": "MIT" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "license": "MIT" + }, + "node_modules/lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==", + "license": "MIT" + }, + "node_modules/lodash.round": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", + "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==", + "license": "MIT" + }, + "node_modules/lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", + "license": "MIT" + }, "node_modules/log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", @@ -3063,7 +3200,6 @@ "url": "https://tidelift.com/funding/github/npm/postcss" } ], - "peer": true, "dependencies": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -3607,7 +3743,6 @@ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "dev": true, - "peer": true, "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -3786,7 +3921,6 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "dev": true, - "peer": true, "bin": { "rollup": "dist/bin/rollup" }, @@ -3824,7 +3958,6 @@ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.1.0" } @@ -4075,15 +4208,13 @@ "node_modules/tslib": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", - "peer": true + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "node_modules/typescript": { "version": "4.6.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", "dev": true, - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -4272,7 +4403,6 @@ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.3.0" } @@ -4294,7 +4424,6 @@ "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.11.tgz", "integrity": "sha512-gPMwDYIAag1izXm2tRQ6EOIx9FVEUqLdr+qYtRVoQtoBmfkoTSLGcpeBXqqlPVxVPbA6Li1WZZT5wxLLlLAN+Q==", "dev": true, - "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4304,7 +4433,6 @@ "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.11.tgz", "integrity": "sha512-EV6JCBbXdHDHbPShWmymvuoxFYG0KVc8sDJpYp47WLHCY2zgZaXhvWs//Hrls3fmi+TGTekgRa2jOBBNce/Ggg==", "dev": true, - "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4314,7 +4442,6 @@ "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.11.tgz", "integrity": "sha512-cl+3Wzxt8NRi2WY+RdsxuQ3yQRUp8pSlfSlJJnfaKE1BEqap6uem2DovuhnIbmrLhxZ5xt7o+I1szyO6sn6+ag==", "dev": true, - "peer": true, "requires": { "@babel/core": "^7.17.2", "chokidar": "^3.0.0", @@ -4333,7 +4460,6 @@ "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.11.tgz", "integrity": "sha512-9BmE2CxyV0g+AkBeuc8IwjSOiJ8Y+kptXnqD/J8EAFT3B0/fLGVnjFdZC6Sev9L0SNZb6qdzebpfIOLqbUjReQ==", "dev": true, - "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4352,7 +4478,6 @@ "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.11.tgz", "integrity": "sha512-PG3chCErARb6wNzkOed2NsZmgvTmbumRx/6sMXqGkDKXYQm0JULnl4X42Rn+JCgJ9DLJi5/jrd1dbcBCrKk9Vg==", "dev": true, - "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4377,7 +4502,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "dev": true, - "peer": true, "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", @@ -4562,6 +4686,11 @@ "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==", "dev": true }, + "@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" + }, "@babel/template": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", @@ -4602,6 +4731,37 @@ "to-fast-properties": "^2.0.0" } }, + "@baloise/web-app-pipes": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.3.tgz", + "integrity": "sha512-PTSQXk4+qRAxWpW3MtF3+4ECdjGbdGnoYoXdCbSHJ4s2gLdWcMXNO1DhmRViG3cZciNc81HwlOqf/RL/lR/PSw==", + "requires": { + "@baloise/web-app-utils": "^3.16.3", + "lodash.capitalize": "^4.2.1", + "lodash.isarray": "^4.0.0", + "lodash.isstring": "^4.0.1", + "lodash.round": "^4.0.4" + } + }, + "@baloise/web-app-utils": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "requires": { + "date-fns": "^2.28.0", + "lodash.camelcase": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isdate": "^4.0.1", + "lodash.isequal": "^4.5.0", + "lodash.isnan": "^3.0.2", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isobject": "^3.0.2", + "lodash.isstring": "^4.0.1", + "lodash.padstart": "^4.6.1", + "lodash.upperfirst": "^4.3.1" + } + }, "@csstools/postcss-cascade-layers": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", @@ -4990,7 +5150,6 @@ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, - "peer": true, "requires": { "caniuse-lite": "^1.0.30001400", "electron-to-chromium": "^1.4.251", @@ -5219,6 +5378,14 @@ "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", "dev": true }, + "date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } + }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -5831,6 +5998,76 @@ "p-locate": "^4.1.0" } }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + }, + "lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" + }, + "lodash.isarray": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", + "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==" + }, + "lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + }, + "lodash.isdate": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "lodash.isnan": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" + }, + "lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" + }, + "lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + }, + "lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" + }, + "lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" + }, + "lodash.round": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", + "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" + }, + "lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" + }, "log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", @@ -6264,7 +6501,6 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz", "integrity": "sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==", "dev": true, - "peer": true, "requires": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -6571,7 +6807,6 @@ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "dev": true, - "peer": true, "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -6704,7 +6939,6 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "dev": true, - "peer": true, "requires": { "fsevents": "~2.3.2" } @@ -6724,7 +6958,6 @@ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "dev": true, - "peer": true, "requires": { "tslib": "^2.1.0" } @@ -6908,15 +7141,13 @@ "tslib": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", - "peer": true + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "typescript": { "version": "4.6.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", - "dev": true, - "peer": true + "dev": true }, "unique-filename": { "version": "1.1.1", @@ -7060,10 +7291,9 @@ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", "dev": true, - "peer": true, "requires": { "tslib": "^2.3.0" } } } -} \ No newline at end of file +} diff --git a/packages/pipes-vue/package-lock.json b/packages/pipes-vue/package-lock.json index fe9e9c1..65d44fe 100644 --- a/packages/pipes-vue/package-lock.json +++ b/packages/pipes-vue/package-lock.json @@ -41,6 +41,15 @@ "node": ">=6.0.0" } }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/types": { "version": "7.14.1", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.1.tgz", @@ -51,6 +60,39 @@ "to-fast-properties": "^2.0.0" } }, + "node_modules/@baloise/web-app-pipes": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.3.tgz", + "integrity": "sha512-PTSQXk4+qRAxWpW3MtF3+4ECdjGbdGnoYoXdCbSHJ4s2gLdWcMXNO1DhmRViG3cZciNc81HwlOqf/RL/lR/PSw==", + "license": "Apache-2.0", + "dependencies": { + "@baloise/web-app-utils": "^3.16.3", + "lodash.capitalize": "^4.2.1", + "lodash.isarray": "^4.0.0", + "lodash.isstring": "^4.0.1", + "lodash.round": "^4.0.4" + } + }, + "node_modules/@baloise/web-app-utils": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "license": "Apache-2.0", + "dependencies": { + "date-fns": "^2.28.0", + "lodash.camelcase": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isdate": "^4.0.1", + "lodash.isequal": "^4.5.0", + "lodash.isnan": "^3.0.2", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isobject": "^3.0.2", + "lodash.isstring": "^4.0.1", + "lodash.padstart": "^4.6.1", + "lodash.upperfirst": "^4.3.1" + } + }, "node_modules/@types/lodash": { "version": "4.14.172", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.172.tgz", @@ -196,6 +238,22 @@ "integrity": "sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A==", "dev": true }, + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, "node_modules/dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", @@ -278,6 +336,92 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" + }, + "node_modules/lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", + "license": "MIT" + }, + "node_modules/lodash.isarray": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", + "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==", + "deprecated": "This package is deprecated. Use Array.isArray.", + "license": "MIT" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" + }, + "node_modules/lodash.isdate": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==", + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", + "license": "MIT" + }, + "node_modules/lodash.isnan": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==", + "license": "MIT" + }, + "node_modules/lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==", + "license": "MIT" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "license": "MIT" + }, + "node_modules/lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", + "license": "MIT" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "license": "MIT" + }, + "node_modules/lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==", + "license": "MIT" + }, + "node_modules/lodash.round": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", + "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==", + "license": "MIT" + }, + "node_modules/lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", + "license": "MIT" + }, "node_modules/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -494,6 +638,11 @@ "integrity": "sha512-muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q==", "dev": true }, + "@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" + }, "@babel/types": { "version": "7.14.1", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.14.1.tgz", @@ -504,6 +653,37 @@ "to-fast-properties": "^2.0.0" } }, + "@baloise/web-app-pipes": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.3.tgz", + "integrity": "sha512-PTSQXk4+qRAxWpW3MtF3+4ECdjGbdGnoYoXdCbSHJ4s2gLdWcMXNO1DhmRViG3cZciNc81HwlOqf/RL/lR/PSw==", + "requires": { + "@baloise/web-app-utils": "^3.16.3", + "lodash.capitalize": "^4.2.1", + "lodash.isarray": "^4.0.0", + "lodash.isstring": "^4.0.1", + "lodash.round": "^4.0.4" + } + }, + "@baloise/web-app-utils": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "requires": { + "date-fns": "^2.28.0", + "lodash.camelcase": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isdate": "^4.0.1", + "lodash.isequal": "^4.5.0", + "lodash.isnan": "^3.0.2", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isobject": "^3.0.2", + "lodash.isstring": "^4.0.1", + "lodash.padstart": "^4.6.1", + "lodash.upperfirst": "^4.3.1" + } + }, "@types/lodash": { "version": "4.14.172", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.172.tgz", @@ -649,6 +829,14 @@ "integrity": "sha512-u1wmTI1jJGzCJzWndZo8mk4wnPTZd1eOIYTYvuEyOQGfmDl3TrabCCfKnOC86FZwW/9djqTl933UF/cS425i9A==", "dev": true }, + "date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } + }, "dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", @@ -718,6 +906,76 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + }, + "lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" + }, + "lodash.isarray": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", + "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==" + }, + "lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + }, + "lodash.isdate": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "lodash.isnan": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" + }, + "lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" + }, + "lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + }, + "lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" + }, + "lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" + }, + "lodash.round": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", + "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" + }, + "lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" + }, "lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -890,4 +1148,4 @@ "dev": true } } -} \ No newline at end of file +} diff --git a/packages/pipes/package-lock.json b/packages/pipes/package-lock.json index 4ef43d7..8d23353 100644 --- a/packages/pipes/package-lock.json +++ b/packages/pipes/package-lock.json @@ -52,7 +52,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, - "peer": true, "dependencies": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -665,9 +664,9 @@ } }, "node_modules/@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", "license": "Apache-2.0", "dependencies": { "date-fns": "^2.28.0", @@ -5741,7 +5740,6 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -6113,7 +6111,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, - "peer": true, "requires": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -6580,9 +6577,9 @@ } }, "@baloise/web-app-utils": { - "version": "3.16.1", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.1.tgz", - "integrity": "sha512-bGLwXW2VIG+n/67VihJq21xRTQGqS/n3mntiW9bKeEEkagRHRrRaJ/3sVem3yRXOHkCRqTYfByqIgsA6TiBmxg==", + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", "requires": { "date-fns": "^2.28.0", "lodash.camelcase": "^4.3.0", @@ -10621,8 +10618,7 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true, - "peer": true + "dev": true }, "union-value": { "version": "1.0.1", @@ -10900,4 +10896,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/unsupported-browsers/package-lock.json b/packages/unsupported-browsers/package-lock.json index cce3467..6b2f33e 100644 --- a/packages/unsupported-browsers/package-lock.json +++ b/packages/unsupported-browsers/package-lock.json @@ -175,7 +175,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", "dev": true, - "peer": true, "dependencies": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.7", @@ -2981,7 +2980,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz", "integrity": "sha512-aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA==", "dev": true, - "peer": true, "requires": { "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.16.7", @@ -4951,4 +4949,4 @@ "dev": true } } -} \ No newline at end of file +} diff --git a/packages/utils/package-lock.json b/packages/utils/package-lock.json index 37f2625..d8658ad 100644 --- a/packages/utils/package-lock.json +++ b/packages/utils/package-lock.json @@ -68,7 +68,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, - "peer": true, "dependencies": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -5716,7 +5715,6 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -6088,7 +6086,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, - "peer": true, "requires": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -10579,8 +10576,7 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true, - "peer": true + "dev": true }, "union-value": { "version": "1.0.1", @@ -10858,4 +10854,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/validators-angular/package-lock.json b/packages/validators-angular/package-lock.json index ca78ee1..41f3911 100644 --- a/packages/validators-angular/package-lock.json +++ b/packages/validators-angular/package-lock.json @@ -50,7 +50,6 @@ "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.11.tgz", "integrity": "sha512-gPMwDYIAag1izXm2tRQ6EOIx9FVEUqLdr+qYtRVoQtoBmfkoTSLGcpeBXqqlPVxVPbA6Li1WZZT5wxLLlLAN+Q==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -67,7 +66,6 @@ "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.11.tgz", "integrity": "sha512-EV6JCBbXdHDHbPShWmymvuoxFYG0KVc8sDJpYp47WLHCY2zgZaXhvWs//Hrls3fmi+TGTekgRa2jOBBNce/Ggg==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -80,7 +78,6 @@ "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.11.tgz", "integrity": "sha512-cl+3Wzxt8NRi2WY+RdsxuQ3yQRUp8pSlfSlJJnfaKE1BEqap6uem2DovuhnIbmrLhxZ5xt7o+I1szyO6sn6+ag==", "dev": true, - "peer": true, "dependencies": { "@babel/core": "^7.17.2", "chokidar": "^3.0.0", @@ -111,7 +108,6 @@ "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.11.tgz", "integrity": "sha512-9BmE2CxyV0g+AkBeuc8IwjSOiJ8Y+kptXnqD/J8EAFT3B0/fLGVnjFdZC6Sev9L0SNZb6qdzebpfIOLqbUjReQ==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -146,7 +142,6 @@ "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.11.tgz", "integrity": "sha512-PG3chCErARb6wNzkOed2NsZmgvTmbumRx/6sMXqGkDKXYQm0JULnl4X42Rn+JCgJ9DLJi5/jrd1dbcBCrKk9Vg==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.3.0" }, @@ -190,7 +185,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "dev": true, - "peer": true, "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", @@ -436,6 +430,15 @@ "node": ">=6.0.0" } }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/template": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", @@ -485,6 +488,42 @@ "node": ">=6.9.0" } }, + "node_modules/@baloise/web-app-utils": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "license": "Apache-2.0", + "dependencies": { + "date-fns": "^2.28.0", + "lodash.camelcase": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isdate": "^4.0.1", + "lodash.isequal": "^4.5.0", + "lodash.isnan": "^3.0.2", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isobject": "^3.0.2", + "lodash.isstring": "^4.0.1", + "lodash.padstart": "^4.6.1", + "lodash.upperfirst": "^4.3.1" + } + }, + "node_modules/@baloise/web-app-validators": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.3.tgz", + "integrity": "sha512-Lws3a9l0eb1Gq85Ek+MZPYDxLl2OnCuAq9TTUef4VLPSE6dOqFIP7IIupsTbSWzFbRAjIBY6mURP/Sp/E9i1jQ==", + "license": "Apache-2.0", + "dependencies": { + "@baloise/web-app-utils": "^3.16.3", + "date-fns": "^2.28.0", + "lodash.capitalize": "^4.2.1", + "lodash.isarray": "^4.0.0", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isstring": "^4.0.1", + "lodash.round": "^4.0.4" + } + }, "node_modules/@csstools/postcss-cascade-layers": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", @@ -1135,7 +1174,6 @@ "url": "https://tidelift.com/funding/github/npm/browserslist" } ], - "peer": true, "dependencies": { "caniuse-lite": "^1.0.30001400", "electron-to-chromium": "^1.4.251", @@ -1477,6 +1515,22 @@ "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", "dev": true }, + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -2447,6 +2501,92 @@ "node": ">=8" } }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" + }, + "node_modules/lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", + "license": "MIT" + }, + "node_modules/lodash.isarray": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", + "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==", + "deprecated": "This package is deprecated. Use Array.isArray.", + "license": "MIT" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" + }, + "node_modules/lodash.isdate": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==", + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", + "license": "MIT" + }, + "node_modules/lodash.isnan": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==", + "license": "MIT" + }, + "node_modules/lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==", + "license": "MIT" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "license": "MIT" + }, + "node_modules/lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", + "license": "MIT" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "license": "MIT" + }, + "node_modules/lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==", + "license": "MIT" + }, + "node_modules/lodash.round": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", + "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==", + "license": "MIT" + }, + "node_modules/lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", + "license": "MIT" + }, "node_modules/log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", @@ -3060,7 +3200,6 @@ "url": "https://tidelift.com/funding/github/npm/postcss" } ], - "peer": true, "dependencies": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -3604,7 +3743,6 @@ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "dev": true, - "peer": true, "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -3771,7 +3909,6 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "dev": true, - "peer": true, "bin": { "rollup": "dist/bin/rollup" }, @@ -3809,7 +3946,6 @@ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.1.0" } @@ -4065,15 +4201,13 @@ "node_modules/tslib": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", - "peer": true + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "node_modules/typescript": { "version": "4.6.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", "dev": true, - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -4262,7 +4396,6 @@ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", "dev": true, - "peer": true, "dependencies": { "tslib": "^2.3.0" } @@ -4284,7 +4417,6 @@ "resolved": "https://registry.npmjs.org/@angular/common/-/common-13.3.11.tgz", "integrity": "sha512-gPMwDYIAag1izXm2tRQ6EOIx9FVEUqLdr+qYtRVoQtoBmfkoTSLGcpeBXqqlPVxVPbA6Li1WZZT5wxLLlLAN+Q==", "dev": true, - "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4294,7 +4426,6 @@ "resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-13.3.11.tgz", "integrity": "sha512-EV6JCBbXdHDHbPShWmymvuoxFYG0KVc8sDJpYp47WLHCY2zgZaXhvWs//Hrls3fmi+TGTekgRa2jOBBNce/Ggg==", "dev": true, - "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4304,7 +4435,6 @@ "resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-13.3.11.tgz", "integrity": "sha512-cl+3Wzxt8NRi2WY+RdsxuQ3yQRUp8pSlfSlJJnfaKE1BEqap6uem2DovuhnIbmrLhxZ5xt7o+I1szyO6sn6+ag==", "dev": true, - "peer": true, "requires": { "@babel/core": "^7.17.2", "chokidar": "^3.0.0", @@ -4323,7 +4453,6 @@ "resolved": "https://registry.npmjs.org/@angular/core/-/core-13.3.11.tgz", "integrity": "sha512-9BmE2CxyV0g+AkBeuc8IwjSOiJ8Y+kptXnqD/J8EAFT3B0/fLGVnjFdZC6Sev9L0SNZb6qdzebpfIOLqbUjReQ==", "dev": true, - "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4342,7 +4471,6 @@ "resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-13.3.11.tgz", "integrity": "sha512-PG3chCErARb6wNzkOed2NsZmgvTmbumRx/6sMXqGkDKXYQm0JULnl4X42Rn+JCgJ9DLJi5/jrd1dbcBCrKk9Vg==", "dev": true, - "peer": true, "requires": { "tslib": "^2.3.0" } @@ -4367,7 +4495,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "dev": true, - "peer": true, "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.18.6", @@ -4552,6 +4679,11 @@ "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==", "dev": true }, + "@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" + }, "@babel/template": { "version": "7.18.10", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", @@ -4592,6 +4724,40 @@ "to-fast-properties": "^2.0.0" } }, + "@baloise/web-app-utils": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "requires": { + "date-fns": "^2.28.0", + "lodash.camelcase": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isdate": "^4.0.1", + "lodash.isequal": "^4.5.0", + "lodash.isnan": "^3.0.2", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isobject": "^3.0.2", + "lodash.isstring": "^4.0.1", + "lodash.padstart": "^4.6.1", + "lodash.upperfirst": "^4.3.1" + } + }, + "@baloise/web-app-validators": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.3.tgz", + "integrity": "sha512-Lws3a9l0eb1Gq85Ek+MZPYDxLl2OnCuAq9TTUef4VLPSE6dOqFIP7IIupsTbSWzFbRAjIBY6mURP/Sp/E9i1jQ==", + "requires": { + "@baloise/web-app-utils": "^3.16.3", + "date-fns": "^2.28.0", + "lodash.capitalize": "^4.2.1", + "lodash.isarray": "^4.0.0", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isstring": "^4.0.1", + "lodash.round": "^4.0.4" + } + }, "@csstools/postcss-cascade-layers": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz", @@ -4988,7 +5154,6 @@ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, - "peer": true, "requires": { "caniuse-lite": "^1.0.30001400", "electron-to-chromium": "^1.4.251", @@ -5220,6 +5385,14 @@ "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", "dev": true }, + "date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } + }, "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -5826,6 +5999,76 @@ "p-locate": "^4.1.0" } }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + }, + "lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" + }, + "lodash.isarray": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", + "integrity": "sha512-V8ViWvoNlXpCrB6Ewaj3ScRXUpmCvqp4tJUxa3dlovuJj/8lp3SND5Kw4v5OeuHgoyw4qJN+gl36qZqp6WYQ6g==" + }, + "lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + }, + "lodash.isdate": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "lodash.isnan": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" + }, + "lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" + }, + "lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + }, + "lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" + }, + "lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" + }, + "lodash.round": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", + "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" + }, + "lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" + }, "log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", @@ -6259,7 +6502,6 @@ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz", "integrity": "sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==", "dev": true, - "peer": true, "requires": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -6566,7 +6808,6 @@ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "dev": true, - "peer": true, "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" @@ -6690,7 +6931,6 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "dev": true, - "peer": true, "requires": { "fsevents": "~2.3.2" } @@ -6710,7 +6950,6 @@ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", "dev": true, - "peer": true, "requires": { "tslib": "^2.1.0" } @@ -6902,15 +7141,13 @@ "tslib": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", - "peer": true + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "typescript": { "version": "4.6.4", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz", "integrity": "sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==", - "dev": true, - "peer": true + "dev": true }, "unique-filename": { "version": "1.1.1", @@ -7054,10 +7291,9 @@ "resolved": "https://registry.npmjs.org/zone.js/-/zone.js-0.11.8.tgz", "integrity": "sha512-82bctBg2hKcEJ21humWIkXRlLBBmrc3nN7DFh5LGGhcyycO2S7FN8NmdvlcKaGFDNVL4/9kFLmwmInTavdJERA==", "dev": true, - "peer": true, "requires": { "tslib": "^2.3.0" } } } -} \ No newline at end of file +} diff --git a/packages/validators-vue/package-lock.json b/packages/validators-vue/package-lock.json index b1f68d4..c3bd913 100644 --- a/packages/validators-vue/package-lock.json +++ b/packages/validators-vue/package-lock.json @@ -53,7 +53,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, - "peer": true, "dependencies": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -856,6 +855,15 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/template": { "version": "7.16.0", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", @@ -968,6 +976,42 @@ "to-fast-properties": "^2.0.0" } }, + "node_modules/@baloise/web-app-utils": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "license": "Apache-2.0", + "dependencies": { + "date-fns": "^2.28.0", + "lodash.camelcase": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isdate": "^4.0.1", + "lodash.isequal": "^4.5.0", + "lodash.isnan": "^3.0.2", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isobject": "^3.0.2", + "lodash.isstring": "^4.0.1", + "lodash.padstart": "^4.6.1", + "lodash.upperfirst": "^4.3.1" + } + }, + "node_modules/@baloise/web-app-validators": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.3.tgz", + "integrity": "sha512-Lws3a9l0eb1Gq85Ek+MZPYDxLl2OnCuAq9TTUef4VLPSE6dOqFIP7IIupsTbSWzFbRAjIBY6mURP/Sp/E9i1jQ==", + "license": "Apache-2.0", + "dependencies": { + "@baloise/web-app-utils": "^3.16.3", + "date-fns": "^2.28.0", + "lodash.capitalize": "^4.2.1", + "lodash.isarray": "^4.0.0", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isstring": "^4.0.1", + "lodash.round": "^4.0.4" + } + }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", @@ -1345,7 +1389,6 @@ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.0.3.tgz", "integrity": "sha512-cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg==", "dev": true, - "peer": true, "dependencies": { "jest-diff": "^27.0.0", "pretty-format": "^27.0.0" @@ -2037,6 +2080,22 @@ "node": ">=10" } }, + "node_modules/date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.21.0" + }, + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, "node_modules/debug": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", @@ -3507,18 +3566,97 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" + }, + "node_modules/lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", + "license": "MIT" + }, "node_modules/lodash.isarray": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=", "deprecated": "This package is deprecated. Use Array.isArray." }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" + }, + "node_modules/lodash.isdate": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==", + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", + "license": "MIT" + }, + "node_modules/lodash.isnan": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==", + "license": "MIT" + }, + "node_modules/lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==", + "license": "MIT" + }, + "node_modules/lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==", + "license": "MIT" + }, + "node_modules/lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", + "license": "MIT" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "license": "MIT" + }, "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, + "node_modules/lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==", + "license": "MIT" + }, + "node_modules/lodash.round": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", + "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==", + "license": "MIT" + }, + "node_modules/lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", + "license": "MIT" + }, "node_modules/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -4474,7 +4612,6 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -4768,7 +4905,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, - "peer": true, "requires": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -5385,6 +5521,11 @@ "@babel/helper-plugin-utils": "^7.14.5" } }, + "@babel/runtime": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==" + }, "@babel/template": { "version": "7.16.0", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", @@ -5471,6 +5612,40 @@ "to-fast-properties": "^2.0.0" } }, + "@baloise/web-app-utils": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "requires": { + "date-fns": "^2.28.0", + "lodash.camelcase": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isdate": "^4.0.1", + "lodash.isequal": "^4.5.0", + "lodash.isnan": "^3.0.2", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isobject": "^3.0.2", + "lodash.isstring": "^4.0.1", + "lodash.padstart": "^4.6.1", + "lodash.upperfirst": "^4.3.1" + } + }, + "@baloise/web-app-validators": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.3.tgz", + "integrity": "sha512-Lws3a9l0eb1Gq85Ek+MZPYDxLl2OnCuAq9TTUef4VLPSE6dOqFIP7IIupsTbSWzFbRAjIBY6mURP/Sp/E9i1jQ==", + "requires": { + "@baloise/web-app-utils": "^3.16.3", + "date-fns": "^2.28.0", + "lodash.capitalize": "^4.2.1", + "lodash.isarray": "^4.0.0", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isstring": "^4.0.1", + "lodash.round": "^4.0.4" + } + }, "@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", @@ -5790,7 +5965,6 @@ "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.0.3.tgz", "integrity": "sha512-cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg==", "dev": true, - "peer": true, "requires": { "jest-diff": "^27.0.0", "pretty-format": "^27.0.0" @@ -6368,6 +6542,14 @@ "whatwg-url": "^8.0.0" } }, + "date-fns": { + "version": "2.30.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.30.0.tgz", + "integrity": "sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==", + "requires": { + "@babel/runtime": "^7.21.0" + } + }, "debug": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", @@ -7487,17 +7669,82 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + }, + "lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==" + }, "lodash.isarray": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=" }, + "lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + }, + "lodash.isdate": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "lodash.isnan": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" + }, + "lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" + }, + "lodash.isnumber": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", + "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" + }, + "lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" + }, + "lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" + }, "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", "dev": true }, + "lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" + }, + "lodash.round": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", + "integrity": "sha512-dzDLNwFMXbjN1pEC0LgLPKVOI5o2DOpBx+oGxWthVE+a9mlV3rEdvoz2i3se/ico4Y3G62Yg3/e1fcp/GMu2lQ==" + }, + "lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" + }, "lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", @@ -8230,8 +8477,7 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true, - "peer": true + "dev": true }, "universalify": { "version": "0.1.2", @@ -8443,4 +8689,4 @@ "dev": true } } -} \ No newline at end of file +} diff --git a/packages/validators/package-lock.json b/packages/validators/package-lock.json index 44a15e3..1adde19 100644 --- a/packages/validators/package-lock.json +++ b/packages/validators/package-lock.json @@ -56,7 +56,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, - "peer": true, "dependencies": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -659,6 +658,26 @@ "node": ">=6.9.0" } }, + "node_modules/@baloise/web-app-utils": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "license": "Apache-2.0", + "dependencies": { + "date-fns": "^2.28.0", + "lodash.camelcase": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isdate": "^4.0.1", + "lodash.isequal": "^4.5.0", + "lodash.isnan": "^3.0.2", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isobject": "^3.0.2", + "lodash.isstring": "^4.0.1", + "lodash.padstart": "^4.6.1", + "lodash.upperfirst": "^4.3.1" + } + }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", @@ -3949,6 +3968,12 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" + }, "node_modules/lodash.capitalize": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", @@ -3960,6 +3985,31 @@ "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=", "deprecated": "This package is deprecated. Use Array.isArray." }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==", + "license": "MIT" + }, + "node_modules/lodash.isdate": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==", + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", + "license": "MIT" + }, + "node_modules/lodash.isnan": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==", + "license": "MIT" + }, "node_modules/lodash.isnil": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", @@ -3970,16 +4020,34 @@ "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" }, + "node_modules/lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==", + "license": "MIT" + }, "node_modules/lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" }, + "node_modules/lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==", + "license": "MIT" + }, "node_modules/lodash.round": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=" }, + "node_modules/lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", + "license": "MIT" + }, "node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -5670,7 +5738,6 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", "dev": true, - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -6042,7 +6109,6 @@ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", "dev": true, - "peer": true, "requires": { "@babel/code-frame": "^7.16.0", "@babel/generator": "^7.16.0", @@ -6503,6 +6569,25 @@ "to-fast-properties": "^2.0.0" } }, + "@baloise/web-app-utils": { + "version": "3.16.3", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.3.tgz", + "integrity": "sha512-5JJY0mqGpkk89+byAGtnFlm3dsdmo1B5BIVGGnXEFY9snz7o0Km4vMJgHsGe9RW3z5xHNNys+JT8m53xOD3AmQ==", + "requires": { + "date-fns": "^2.28.0", + "lodash.camelcase": "^4.3.0", + "lodash.isboolean": "^3.0.3", + "lodash.isdate": "^4.0.1", + "lodash.isequal": "^4.5.0", + "lodash.isnan": "^3.0.2", + "lodash.isnil": "^4.0.0", + "lodash.isnumber": "^3.0.3", + "lodash.isobject": "^3.0.2", + "lodash.isstring": "^4.0.1", + "lodash.padstart": "^4.6.1", + "lodash.upperfirst": "^4.3.1" + } + }, "@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", @@ -9114,6 +9199,11 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==" + }, "lodash.capitalize": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", @@ -9124,6 +9214,26 @@ "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz", "integrity": "sha1-KspJayjEym1yZxUxNZDALm6jRAM=" }, + "lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + }, + "lodash.isdate": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isdate/-/lodash.isdate-4.0.1.tgz", + "integrity": "sha512-hg5B1GD+R9egsBgMwmAhk+V53Us03TVvXT4dnyKugEfsD4QKuG9Wlyvxq8OGy2nu7qVGsh4DRSnMk33hoWBq/Q==" + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==" + }, + "lodash.isnan": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isnan/-/lodash.isnan-3.0.2.tgz", + "integrity": "sha512-zduioV6njyRsie8qtuS85u7B8xJWi3HjUc1klVoRdeghA5prG13xbUNNcCJ1Cxwa4FyjJVnkL5hDopCVh2ng4g==" + }, "lodash.isnil": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", @@ -9134,16 +9244,31 @@ "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz", "integrity": "sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=" }, + "lodash.isobject": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz", + "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==" + }, "lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=" }, + "lodash.padstart": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz", + "integrity": "sha512-sW73O6S8+Tg66eY56DBk85aQzzUJDtpoXFBgELMd5P/SotAguo+1kYO6RuYgXxA4HJH3LFTFPASX6ET6bjfriw==" + }, "lodash.round": { "version": "4.0.4", "resolved": "https://registry.npmjs.org/lodash.round/-/lodash.round-4.0.4.tgz", "integrity": "sha1-EBtrpcbOzJmPKrvoC2Apr/0l0mI=" }, + "lodash.upperfirst": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", + "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==" + }, "lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", @@ -10492,8 +10617,7 @@ "version": "4.3.5", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.3.5.tgz", "integrity": "sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==", - "dev": true, - "peer": true + "dev": true }, "union-value": { "version": "1.0.1", @@ -10771,4 +10895,4 @@ } } } -} \ No newline at end of file +} From 654f9861e74ade588f3888ee81161a97f85fce91 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Tue, 9 Dec 2025 14:18:58 +0100 Subject: [PATCH 14/14] fix: [SSP-4516] node 24 instead of 18 --- .github/workflows/release.yml | 2 +- package-lock.json | 22 +++++++++++++++++++--- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2d5ce7..5a7cacd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: '18.x' + node-version: '24.x' registry-url: 'https://registry.npmjs.org' - name: Git Identity diff --git a/package-lock.json b/package-lock.json index f27c18f..73aa6e3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2122,6 +2122,7 @@ "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.1.0.tgz", "integrity": "sha512-Czz/59VefU+kKDy+ZfDwtOIYIkFjExOKf+HA92aiTZJ6EfWpFzYQWw0l54ji8bVmyhc+mGaLUbSUmXazG7z5OQ==", "dev": true, + "peer": true, "dependencies": { "@octokit/auth-token": "^3.0.0", "@octokit/graphql": "^5.0.0", @@ -2406,6 +2407,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.8.0.tgz", "integrity": "sha512-Gleacp/ZhRtJRYs5/T8KQR3pAQjQI89Dn/k+OzyCKOsLiZH2/Vh60cFBTnFsHNI6WAD+lNUo/xGZ4NeA5u0Ipw==", "dev": true, + "peer": true, "dependencies": { "@typescript-eslint/scope-manager": "5.8.0", "@typescript-eslint/types": "5.8.0", @@ -2566,6 +2568,7 @@ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", "dev": true, + "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -3788,6 +3791,7 @@ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, + "peer": true, "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -4137,6 +4141,7 @@ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.5.0.tgz", "integrity": "sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg==", "dev": true, + "peer": true, "dependencies": { "@eslint/eslintrc": "^1.0.5", "@humanwhocodes/config-array": "^0.9.2", @@ -7038,6 +7043,7 @@ "integrity": "sha512-4qmzj6wE2RJXyy3p/X33cisl4yYgUUvXZ6yUYbt1zxWdInYYse61yqyRR91jwLeKpgxL7plkIC5rPiqg4kNJDQ==", "dev": true, "hasInstallScript": true, + "peer": true, "dependencies": { "@nrwl/cli": "15.0.11", "@nrwl/tao": "15.0.11", @@ -7629,6 +7635,7 @@ "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", "dev": true, + "peer": true, "bin": { "prettier": "bin-prettier.js" }, @@ -8848,6 +8855,7 @@ "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", "dev": true, + "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -11035,6 +11043,7 @@ "resolved": "https://registry.npmjs.org/@octokit/core/-/core-4.1.0.tgz", "integrity": "sha512-Czz/59VefU+kKDy+ZfDwtOIYIkFjExOKf+HA92aiTZJ6EfWpFzYQWw0l54ji8bVmyhc+mGaLUbSUmXazG7z5OQ==", "dev": true, + "peer": true, "requires": { "@octokit/auth-token": "^3.0.0", "@octokit/graphql": "^5.0.0", @@ -11247,6 +11256,7 @@ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.8.0.tgz", "integrity": "sha512-Gleacp/ZhRtJRYs5/T8KQR3pAQjQI89Dn/k+OzyCKOsLiZH2/Vh60cFBTnFsHNI6WAD+lNUo/xGZ4NeA5u0Ipw==", "dev": true, + "peer": true, "requires": { "@typescript-eslint/scope-manager": "5.8.0", "@typescript-eslint/types": "5.8.0", @@ -11351,7 +11361,8 @@ "version": "8.6.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", - "dev": true + "dev": true, + "peer": true }, "acorn-jsx": { "version": "5.3.2", @@ -12281,6 +12292,7 @@ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", "dev": true, + "peer": true, "requires": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -12546,6 +12558,7 @@ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.5.0.tgz", "integrity": "sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg==", "dev": true, + "peer": true, "requires": { "@eslint/eslintrc": "^1.0.5", "@humanwhocodes/config-array": "^0.9.2", @@ -14754,6 +14767,7 @@ "resolved": "https://registry.npmjs.org/nx/-/nx-15.0.11.tgz", "integrity": "sha512-4qmzj6wE2RJXyy3p/X33cisl4yYgUUvXZ6yUYbt1zxWdInYYse61yqyRR91jwLeKpgxL7plkIC5rPiqg4kNJDQ==", "dev": true, + "peer": true, "requires": { "@nrwl/cli": "15.0.11", "@nrwl/tao": "15.0.11", @@ -15177,7 +15191,8 @@ "version": "2.5.1", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", - "dev": true + "dev": true, + "peer": true }, "prettier-linter-helpers": { "version": "1.0.0", @@ -16081,7 +16096,8 @@ "version": "4.5.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.2.tgz", "integrity": "sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==", - "dev": true + "dev": true, + "peer": true }, "uglify-js": { "version": "3.17.4",