From 8afb03cd23100a45dd88bf44c2e678746409d08a Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Wed, 10 Dec 2025 08:19:05 +0100 Subject: [PATCH 1/9] fix: [SSP-4516] handle also 0 values --- packages/pipes/src/balClaimNumber.spec.ts | 3 +++ packages/pipes/src/balClaimNumber.ts | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/pipes/src/balClaimNumber.spec.ts b/packages/pipes/src/balClaimNumber.spec.ts index d4af84d..f322f27 100644 --- a/packages/pipes/src/balClaimNumber.spec.ts +++ b/packages/pipes/src/balClaimNumber.spec.ts @@ -25,4 +25,7 @@ describe('balClaimNumber', () => { test('should format claimcenter claim number with zeros correctly', () => { expect(balClaimNumber(400045678020)).toBe('4.45678.2.0') }) + test('should format claimcenter claim number with zeros correctly', () => { + expect(balClaimNumber(100000000000)).toBe('1.0.0.0') + }) }) diff --git a/packages/pipes/src/balClaimNumber.ts b/packages/pipes/src/balClaimNumber.ts index 91ba18f..61789a1 100644 --- a/packages/pipes/src/balClaimNumber.ts +++ b/packages/pipes/src/balClaimNumber.ts @@ -42,5 +42,6 @@ function handleClaimCenterClaimNumber(value: string): string { } function removeLeadingZeros(str: string): string { - return str.replace(/^0+/, '') + const formatedValue = str.replace(/^0+/, '') + return formatedValue.length == 0 ? '0' : formatedValue } From b26fcac51e5214932f135591e7f8709be2caf7b3 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Wed, 10 Dec 2025 07:21:33 +0000 Subject: [PATCH 2/9] chore(): update build artifacts From cd6b3907bab7e00e6bc3d6664f41a4e4234e01fd Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Wed, 10 Dec 2025 07:21:40 +0000 Subject: [PATCH 3/9] chore(release): publish v3.16.6 --- 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 0bc870e..dc2fa52 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.16.5", + "version": "3.16.6", "granularPathspec": false, "packages": [ "packages/*" diff --git a/packages/clean-architecture/package-lock.json b/packages/clean-architecture/package-lock.json index c2e503d..8d892a8 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-clean-architecture", - "version": "3.16.5", + "version": "3.16.6", "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 90156d4..a0649e6 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.5", + "version": "3.16.6", "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 31d559a..3be22d6 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-form-vue", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.5" + "@baloise/web-app-validators": "^3.16.6" }, "devDependencies": { "@baloise/design-system-components": "^10.12.0", @@ -2124,4 +2124,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/form-vue/package.json b/packages/form-vue/package.json index 1a3d186..fe85340 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.5", + "version": "3.16.6", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -50,6 +50,6 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-validators": "^3.16.5" + "@baloise/web-app-validators": "^3.16.6" } } diff --git a/packages/pipes-angular/package-lock.json b/packages/pipes-angular/package-lock.json index 578ae27..6e61eeb 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes-angular", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.5", + "@baloise/web-app-pipes": "^3.16.6", "tslib": "^2.2.0" }, "devDependencies": { @@ -7324,4 +7324,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/pipes-angular/package.json b/packages/pipes-angular/package.json index 16fbb17..82fbd69 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.5", + "version": "3.16.6", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -29,7 +29,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.5", + "@baloise/web-app-pipes": "^3.16.6", "tslib": "^2.2.0" }, "peerDependencies": { diff --git a/packages/pipes-vue/package-lock.json b/packages/pipes-vue/package-lock.json index 1aaf7de..7c34728 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes-vue", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.5" + "@baloise/web-app-pipes": "^3.16.6" }, "devDependencies": { "@types/lodash": "^4.14.172", @@ -1148,4 +1148,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/packages/pipes-vue/package.json b/packages/pipes-vue/package.json index 5c55370..4429674 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.5", + "version": "3.16.6", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -48,6 +48,6 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-pipes": "^3.16.5" + "@baloise/web-app-pipes": "^3.16.6" } } diff --git a/packages/pipes/package-lock.json b/packages/pipes/package-lock.json index b6458d1..b191bb2 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "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 9a43252..592e642 100644 --- a/packages/pipes/package.json +++ b/packages/pipes/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-pipes", - "version": "3.16.5", + "version": "3.16.6", "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.5", + "@baloise/web-app-utils": "^3.16.6", "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 b901859..7755aca 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-unsupported-browsers", - "version": "3.16.5", + "version": "3.16.6", "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 88947e7..e13af33 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.5", + "version": "3.16.6", "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 e3422b6..2522ac6 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-utils", - "version": "3.16.5", + "version": "3.16.6", "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 997baea..20004e1 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-utils", - "version": "3.16.5", + "version": "3.16.6", "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 0b4a375..3d5cd2f 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators-angular", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.5", + "@baloise/web-app-validators": "^3.16.6", "tslib": "^2.2.0" }, "devDependencies": { @@ -7324,4 +7324,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/validators-angular/package.json b/packages/validators-angular/package.json index 0e3eb31..7f2c4a1 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.5", + "version": "3.16.6", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -29,7 +29,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.5", + "@baloise/web-app-validators": "^3.16.6", "tslib": "^2.2.0" }, "peerDependencies": { diff --git a/packages/validators-vue/package-lock.json b/packages/validators-vue/package-lock.json index d501d5d..465ae5f 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators-vue", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.5", + "@baloise/web-app-validators": "^3.16.6", "lodash.isarray": "^4.0.0" }, "devDependencies": { @@ -8695,4 +8695,4 @@ "dev": true } } -} +} \ No newline at end of file diff --git a/packages/validators-vue/package.json b/packages/validators-vue/package.json index 9e367c3..3aa2c42 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.5", + "version": "3.16.6", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -52,7 +52,7 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-validators": "^3.16.5", + "@baloise/web-app-validators": "^3.16.6", "lodash.isarray": "^4.0.0" } } diff --git a/packages/validators/package-lock.json b/packages/validators/package-lock.json index bb1b9cd..1143129 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", @@ -10899,4 +10899,4 @@ } } } -} +} \ No newline at end of file diff --git a/packages/validators/package.json b/packages/validators/package.json index c444d3a..823bab6 100644 --- a/packages/validators/package.json +++ b/packages/validators/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-validators", - "version": "3.16.5", + "version": "3.16.6", "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.5", + "@baloise/web-app-utils": "^3.16.6", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", From 05bc9fc7bda3c1cb812c8befdb238421b560128f Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Wed, 10 Dec 2025 07:24:52 +0000 Subject: [PATCH 4/9] chore(): update build artifacts From fd81997bf8b5dc045c0e0662683e08f544c67289 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Wed, 10 Dec 2025 07:45:59 +0000 Subject: [PATCH 5/9] chore(): update build artifacts From 39a9d69b92a412ad747dc6aefd420331b69cdd78 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Wed, 10 Dec 2025 08:47:39 +0100 Subject: [PATCH 6/9] fix: [SSP-4516] 3.16.5 --- lerna.json | 4 ++-- 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, 56 insertions(+), 56 deletions(-) diff --git a/lerna.json b/lerna.json index dc2fa52..7eb6809 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.16.6", + "version": "3.16.5", "granularPathspec": false, "packages": [ "packages/*" @@ -20,4 +20,4 @@ "**/*.e2e.ts", "**/*.md" ] -} \ No newline at end of file +} diff --git a/packages/clean-architecture/package-lock.json b/packages/clean-architecture/package-lock.json index 8d892a8..c2e503d 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.6", + "version": "3.16.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-clean-architecture", - "version": "3.16.6", + "version": "3.16.5", "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 a0649e6..90156d4 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.6", + "version": "3.16.5", "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 3be22d6..31d559a 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.6", + "version": "3.16.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-form-vue", - "version": "3.16.6", + "version": "3.16.5", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.6" + "@baloise/web-app-validators": "^3.16.5" }, "devDependencies": { "@baloise/design-system-components": "^10.12.0", @@ -2124,4 +2124,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/form-vue/package.json b/packages/form-vue/package.json index fe85340..1a3d186 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.6", + "version": "3.16.5", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -50,6 +50,6 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-validators": "^3.16.6" + "@baloise/web-app-validators": "^3.16.5" } } diff --git a/packages/pipes-angular/package-lock.json b/packages/pipes-angular/package-lock.json index 6e61eeb..578ae27 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.6", + "version": "3.16.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes-angular", - "version": "3.16.6", + "version": "3.16.5", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.6", + "@baloise/web-app-pipes": "^3.16.5", "tslib": "^2.2.0" }, "devDependencies": { @@ -7324,4 +7324,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/pipes-angular/package.json b/packages/pipes-angular/package.json index 82fbd69..16fbb17 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.6", + "version": "3.16.5", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -29,7 +29,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.6", + "@baloise/web-app-pipes": "^3.16.5", "tslib": "^2.2.0" }, "peerDependencies": { diff --git a/packages/pipes-vue/package-lock.json b/packages/pipes-vue/package-lock.json index 7c34728..1aaf7de 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.6", + "version": "3.16.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes-vue", - "version": "3.16.6", + "version": "3.16.5", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.6" + "@baloise/web-app-pipes": "^3.16.5" }, "devDependencies": { "@types/lodash": "^4.14.172", @@ -1148,4 +1148,4 @@ "dev": true } } -} \ No newline at end of file +} diff --git a/packages/pipes-vue/package.json b/packages/pipes-vue/package.json index 4429674..5c55370 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.6", + "version": "3.16.5", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -48,6 +48,6 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-pipes": "^3.16.6" + "@baloise/web-app-pipes": "^3.16.5" } } diff --git a/packages/pipes/package-lock.json b/packages/pipes/package-lock.json index b191bb2..b6458d1 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.6", + "version": "3.16.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes", - "version": "3.16.6", + "version": "3.16.5", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.6", + "@baloise/web-app-utils": "^3.16.5", "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 592e642..9a43252 100644 --- a/packages/pipes/package.json +++ b/packages/pipes/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-pipes", - "version": "3.16.6", + "version": "3.16.5", "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.6", + "@baloise/web-app-utils": "^3.16.5", "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 7755aca..b901859 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.6", + "version": "3.16.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-unsupported-browsers", - "version": "3.16.6", + "version": "3.16.5", "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 e13af33..88947e7 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.6", + "version": "3.16.5", "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 2522ac6..e3422b6 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.6", + "version": "3.16.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-utils", - "version": "3.16.6", + "version": "3.16.5", "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 20004e1..997baea 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-utils", - "version": "3.16.6", + "version": "3.16.5", "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 3d5cd2f..0b4a375 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.6", + "version": "3.16.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators-angular", - "version": "3.16.6", + "version": "3.16.5", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.6", + "@baloise/web-app-validators": "^3.16.5", "tslib": "^2.2.0" }, "devDependencies": { @@ -7324,4 +7324,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/validators-angular/package.json b/packages/validators-angular/package.json index 7f2c4a1..0e3eb31 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.6", + "version": "3.16.5", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -29,7 +29,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.6", + "@baloise/web-app-validators": "^3.16.5", "tslib": "^2.2.0" }, "peerDependencies": { diff --git a/packages/validators-vue/package-lock.json b/packages/validators-vue/package-lock.json index 465ae5f..d501d5d 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.6", + "version": "3.16.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators-vue", - "version": "3.16.6", + "version": "3.16.5", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.6", + "@baloise/web-app-validators": "^3.16.5", "lodash.isarray": "^4.0.0" }, "devDependencies": { @@ -8695,4 +8695,4 @@ "dev": true } } -} \ No newline at end of file +} diff --git a/packages/validators-vue/package.json b/packages/validators-vue/package.json index 3aa2c42..9e367c3 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.6", + "version": "3.16.5", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -52,7 +52,7 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-validators": "^3.16.6", + "@baloise/web-app-validators": "^3.16.5", "lodash.isarray": "^4.0.0" } } diff --git a/packages/validators/package-lock.json b/packages/validators/package-lock.json index 1143129..bb1b9cd 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.6", + "version": "3.16.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators", - "version": "3.16.6", + "version": "3.16.5", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.6", + "@baloise/web-app-utils": "^3.16.5", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", @@ -10899,4 +10899,4 @@ } } } -} \ No newline at end of file +} diff --git a/packages/validators/package.json b/packages/validators/package.json index 823bab6..c444d3a 100644 --- a/packages/validators/package.json +++ b/packages/validators/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-validators", - "version": "3.16.6", + "version": "3.16.5", "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.6", + "@baloise/web-app-utils": "^3.16.5", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", From 45ef540d836bf38b970e05cf692384bde388827c Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Wed, 10 Dec 2025 07:50:48 +0000 Subject: [PATCH 7/9] chore(): update build artifacts From 838177d14cd72abfb4f892646b87074ea9e89302 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Wed, 10 Dec 2025 08:55:19 +0100 Subject: [PATCH 8/9] fix: [SSP-4516] 3.16.6 --- lerna.json | 2 +- packages/clean-architecture/package-lock.json | 4 +-- packages/clean-architecture/package.json | 2 +- packages/form-vue/package-lock.json | 26 +++++++++---------- packages/form-vue/package.json | 4 +-- packages/pipes-angular/package-lock.json | 26 +++++++++---------- packages/pipes-angular/package.json | 4 +-- packages/pipes-vue/package-lock.json | 26 +++++++++---------- packages/pipes-vue/package.json | 4 +-- packages/pipes/package-lock.json | 14 +++++----- packages/pipes/package.json | 4 +-- .../unsupported-browsers/package-lock.json | 4 +-- packages/unsupported-browsers/package.json | 2 +- packages/utils/package-lock.json | 4 +-- packages/utils/package.json | 2 +- packages/validators-angular/package-lock.json | 26 +++++++++---------- packages/validators-angular/package.json | 4 +-- packages/validators-vue/package-lock.json | 26 +++++++++---------- packages/validators-vue/package.json | 4 +-- packages/validators/package-lock.json | 14 +++++----- packages/validators/package.json | 4 +-- 21 files changed, 103 insertions(+), 103 deletions(-) diff --git a/lerna.json b/lerna.json index 7eb6809..b4d9695 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "3.16.5", + "version": "3.16.6", "granularPathspec": false, "packages": [ "packages/*" diff --git a/packages/clean-architecture/package-lock.json b/packages/clean-architecture/package-lock.json index c2e503d..4739290 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-clean-architecture", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { "@types/lodash.clonedeep": "^4.5.7", diff --git a/packages/clean-architecture/package.json b/packages/clean-architecture/package.json index 90156d4..a0649e6 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.5", + "version": "3.16.6", "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 31d559a..9c3699d 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-form-vue", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.5" + "@baloise/web-app-validators": "^3.16.6" }, "devDependencies": { "@baloise/design-system-components": "^10.12.0", @@ -115,8 +115,8 @@ "dev": true }, "node_modules/@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "license": "Apache-2.0", "dependencies": { @@ -135,12 +135,12 @@ } }, "node_modules/@baloise/web-app-validators": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.6.tgz", "integrity": "sha512-KhPkTsTkmQMFXShLCPOoNFjtCWZH8UMeAsVPAVYHuIKwZaA8V0igugg/pHtft2gmoeIF2egSCKchbbni4GZAOw==", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", @@ -1240,8 +1240,8 @@ "dev": true }, "@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "requires": { "date-fns": "^2.28.0", @@ -1259,11 +1259,11 @@ } }, "@baloise/web-app-validators": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.6.tgz", "integrity": "sha512-KhPkTsTkmQMFXShLCPOoNFjtCWZH8UMeAsVPAVYHuIKwZaA8V0igugg/pHtft2gmoeIF2egSCKchbbni4GZAOw==", "requires": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", diff --git a/packages/form-vue/package.json b/packages/form-vue/package.json index 1a3d186..fe85340 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.5", + "version": "3.16.6", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -50,6 +50,6 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-validators": "^3.16.5" + "@baloise/web-app-validators": "^3.16.6" } } diff --git a/packages/pipes-angular/package-lock.json b/packages/pipes-angular/package-lock.json index 578ae27..972bc42 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes-angular", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.5", + "@baloise/web-app-pipes": "^3.16.6", "tslib": "^2.2.0" }, "devDependencies": { @@ -495,12 +495,12 @@ } }, "node_modules/@baloise/web-app-pipes": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.6.tgz", "integrity": "sha512-sH5RHPdb8S//flUD5quB1eaYduAWJus++cst6LTFb0UGW+bQOZ2hUyIHF2HskS7KtwtrBgpSanHI+4CffkcmFA==", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", "lodash.isstring": "^4.0.1", @@ -508,8 +508,8 @@ } }, "node_modules/@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "license": "Apache-2.0", "dependencies": { @@ -4752,11 +4752,11 @@ } }, "@baloise/web-app-pipes": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.6.tgz", "integrity": "sha512-sH5RHPdb8S//flUD5quB1eaYduAWJus++cst6LTFb0UGW+bQOZ2hUyIHF2HskS7KtwtrBgpSanHI+4CffkcmFA==", "requires": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", "lodash.isstring": "^4.0.1", @@ -4764,8 +4764,8 @@ } }, "@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "requires": { "date-fns": "^2.28.0", diff --git a/packages/pipes-angular/package.json b/packages/pipes-angular/package.json index 16fbb17..82fbd69 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.5", + "version": "3.16.6", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -29,7 +29,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.5", + "@baloise/web-app-pipes": "^3.16.6", "tslib": "^2.2.0" }, "peerDependencies": { diff --git a/packages/pipes-vue/package-lock.json b/packages/pipes-vue/package-lock.json index 1aaf7de..118cf08 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes-vue", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-pipes": "^3.16.5" + "@baloise/web-app-pipes": "^3.16.6" }, "devDependencies": { "@types/lodash": "^4.14.172", @@ -61,12 +61,12 @@ } }, "node_modules/@baloise/web-app-pipes": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.6.tgz", "integrity": "sha512-sH5RHPdb8S//flUD5quB1eaYduAWJus++cst6LTFb0UGW+bQOZ2hUyIHF2HskS7KtwtrBgpSanHI+4CffkcmFA==", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", "lodash.isstring": "^4.0.1", @@ -74,8 +74,8 @@ } }, "node_modules/@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "license": "Apache-2.0", "dependencies": { @@ -654,11 +654,11 @@ } }, "@baloise/web-app-pipes": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-pipes/-/web-app-pipes-3.16.6.tgz", "integrity": "sha512-sH5RHPdb8S//flUD5quB1eaYduAWJus++cst6LTFb0UGW+bQOZ2hUyIHF2HskS7KtwtrBgpSanHI+4CffkcmFA==", "requires": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", "lodash.isstring": "^4.0.1", @@ -666,8 +666,8 @@ } }, "@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "requires": { "date-fns": "^2.28.0", diff --git a/packages/pipes-vue/package.json b/packages/pipes-vue/package.json index 5c55370..4429674 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.5", + "version": "3.16.6", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -48,6 +48,6 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-pipes": "^3.16.5" + "@baloise/web-app-pipes": "^3.16.6" } } diff --git a/packages/pipes/package-lock.json b/packages/pipes/package-lock.json index b6458d1..391039c 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-pipes", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", "lodash.isstring": "^4.0.1", @@ -665,8 +665,8 @@ } }, "node_modules/@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "license": "Apache-2.0", "dependencies": { @@ -6580,8 +6580,8 @@ } }, "@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "requires": { "date-fns": "^2.28.0", diff --git a/packages/pipes/package.json b/packages/pipes/package.json index 9a43252..592e642 100644 --- a/packages/pipes/package.json +++ b/packages/pipes/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-pipes", - "version": "3.16.5", + "version": "3.16.6", "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.5", + "@baloise/web-app-utils": "^3.16.6", "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 b901859..2d4f58b 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-unsupported-browsers", - "version": "3.16.5", + "version": "3.16.6", "hasInstallScript": true, "license": "Apache-2.0", "devDependencies": { diff --git a/packages/unsupported-browsers/package.json b/packages/unsupported-browsers/package.json index 88947e7..e13af33 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.5", + "version": "3.16.6", "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 e3422b6..106e0c6 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-utils", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { "date-fns": "^2.28.0", diff --git a/packages/utils/package.json b/packages/utils/package.json index 997baea..20004e1 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-utils", - "version": "3.16.5", + "version": "3.16.6", "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 0b4a375..e5c3d01 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators-angular", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.5", + "@baloise/web-app-validators": "^3.16.6", "tslib": "^2.2.0" }, "devDependencies": { @@ -495,8 +495,8 @@ } }, "node_modules/@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "license": "Apache-2.0", "dependencies": { @@ -515,12 +515,12 @@ } }, "node_modules/@baloise/web-app-validators": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.6.tgz", "integrity": "sha512-KhPkTsTkmQMFXShLCPOoNFjtCWZH8UMeAsVPAVYHuIKwZaA8V0igugg/pHtft2gmoeIF2egSCKchbbni4GZAOw==", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", @@ -4745,8 +4745,8 @@ } }, "@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "requires": { "date-fns": "^2.28.0", @@ -4764,11 +4764,11 @@ } }, "@baloise/web-app-validators": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.6.tgz", "integrity": "sha512-KhPkTsTkmQMFXShLCPOoNFjtCWZH8UMeAsVPAVYHuIKwZaA8V0igugg/pHtft2gmoeIF2egSCKchbbni4GZAOw==", "requires": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", diff --git a/packages/validators-angular/package.json b/packages/validators-angular/package.json index 0e3eb31..7f2c4a1 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.5", + "version": "3.16.6", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -29,7 +29,7 @@ }, "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.5", + "@baloise/web-app-validators": "^3.16.6", "tslib": "^2.2.0" }, "peerDependencies": { diff --git a/packages/validators-vue/package-lock.json b/packages/validators-vue/package-lock.json index d501d5d..3be357e 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators-vue", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-validators": "^3.16.5", + "@baloise/web-app-validators": "^3.16.6", "lodash.isarray": "^4.0.0" }, "devDependencies": { @@ -978,8 +978,8 @@ } }, "node_modules/@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "license": "Apache-2.0", "dependencies": { @@ -998,12 +998,12 @@ } }, "node_modules/@baloise/web-app-validators": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.6.tgz", "integrity": "sha512-KhPkTsTkmQMFXShLCPOoNFjtCWZH8UMeAsVPAVYHuIKwZaA8V0igugg/pHtft2gmoeIF2egSCKchbbni4GZAOw==", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", @@ -5617,8 +5617,8 @@ } }, "@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "requires": { "date-fns": "^2.28.0", @@ -5636,11 +5636,11 @@ } }, "@baloise/web-app-validators": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-validators/-/web-app-validators-3.16.6.tgz", "integrity": "sha512-KhPkTsTkmQMFXShLCPOoNFjtCWZH8UMeAsVPAVYHuIKwZaA8V0igugg/pHtft2gmoeIF2egSCKchbbni4GZAOw==", "requires": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", diff --git a/packages/validators-vue/package.json b/packages/validators-vue/package.json index 9e367c3..3aa2c42 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.5", + "version": "3.16.6", "description": "Utilities for Baloise Web Applications", "repository": { "type": "git", @@ -52,7 +52,7 @@ }, "gitHead": "6bc39fcc60a2294d11940527d9a051f21ca01e42", "dependencies": { - "@baloise/web-app-validators": "^3.16.5", + "@baloise/web-app-validators": "^3.16.6", "lodash.isarray": "^4.0.0" } } diff --git a/packages/validators/package-lock.json b/packages/validators/package-lock.json index bb1b9cd..9428318 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.5", + "version": "3.16.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@baloise/web-app-validators", - "version": "3.16.5", + "version": "3.16.6", "license": "Apache-2.0", "dependencies": { - "@baloise/web-app-utils": "^3.16.5", + "@baloise/web-app-utils": "^3.16.6", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", @@ -660,8 +660,8 @@ } }, "node_modules/@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "license": "Apache-2.0", "dependencies": { @@ -6573,8 +6573,8 @@ } }, "@baloise/web-app-utils": { - "version": "3.16.5", - "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.5.tgz", + "version": "3.16.6", + "resolved": "https://registry.npmjs.org/@baloise/web-app-utils/-/web-app-utils-3.16.6.tgz", "integrity": "sha512-r7oSVB5Cv22wyyZ3/x44++WLjI/RCs5JWqciLO8hWMi74IXwsvs9kolWDv2a7/caCOEbDpdRf4L58JEymx/x9g==", "requires": { "date-fns": "^2.28.0", diff --git a/packages/validators/package.json b/packages/validators/package.json index c444d3a..823bab6 100644 --- a/packages/validators/package.json +++ b/packages/validators/package.json @@ -1,6 +1,6 @@ { "name": "@baloise/web-app-validators", - "version": "3.16.5", + "version": "3.16.6", "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.5", + "@baloise/web-app-utils": "^3.16.6", "date-fns": "^2.28.0", "lodash.capitalize": "^4.2.1", "lodash.isarray": "^4.0.0", From 829a8240b63ec084180df511c629718055dd0ad4 Mon Sep 17 00:00:00 2001 From: Dominic Steger Date: Wed, 10 Dec 2025 09:00:34 +0100 Subject: [PATCH 9/9] fix: [SSP-4516] optimization --- packages/pipes/src/balClaimNumber.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/pipes/src/balClaimNumber.ts b/packages/pipes/src/balClaimNumber.ts index 61789a1..4324bfe 100644 --- a/packages/pipes/src/balClaimNumber.ts +++ b/packages/pipes/src/balClaimNumber.ts @@ -10,6 +10,7 @@ const CLAIM_CENTER_CLAIM_NUMBER = 12 * balClaimNumber('400045678221') // 4.45678.22.1 * balClaimNumber('400045678021') // 4.45678.2.1 * balClaimNumber('400045678020') // 4.45678.2.0 + * balClaimNumber('400000000000') // 4.0.0.0 * ``` */ export function balClaimNumber(value: string | undefined | null | number): string {