From 0b8639b033f1d78b990cf4d931bf01d195387d9a Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Thu, 3 Apr 2025 18:35:38 +0000 Subject: [PATCH] fix(website): Update packageManager configuration in package.json and refine view container background styling --- changelog.md | 6 ++++++ package.json | 3 ++- ts/00_commitinfo_data.ts | 2 +- ts_web/00_commitinfo_data.ts | 2 +- ts_web/views/viewcontainer.ts | 1 + 5 files changed, 11 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 551671f..00d7fd7 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-04-03 - 1.4.3 - fix(website) +Update packageManager configuration in package.json and refine view container background styling + +- Add 'packageManager' field in package.json to pin pnpm version +- Adjust background style in ts_web/views/viewcontainer.ts for improved UI consistency + ## 2024-12-11 - 1.5.0 - feat(UI) Added 'Learn more about idp.global' button diff --git a/package.json b/package.json index 247a2de..e467739 100644 --- a/package.json +++ b/package.json @@ -101,5 +101,6 @@ "API", "user data", "user sessions" - ] + ], + "packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6" } diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index a0ee570..2ee5539 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@idp.global/idp.global', - version: '1.5.0', + version: '1.4.3', description: 'An identity provider software managing user authentications, registrations, and sessions.' } diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index a0ee570..2ee5539 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@idp.global/idp.global', - version: '1.5.0', + version: '1.4.3', description: 'An identity provider software managing user authentications, registrations, and sessions.' } diff --git a/ts_web/views/viewcontainer.ts b/ts_web/views/viewcontainer.ts index 6a7278e..ad6d0ff 100644 --- a/ts_web/views/viewcontainer.ts +++ b/ts_web/views/viewcontainer.ts @@ -33,6 +33,7 @@ export class IdpViewcontainer extends DeesElement { .viewContainer { min-width: 100vh; min-height: 100vh; + background: linear-gradient(-255deg,#06152280 -3.35%,#939eff38 32.79%,#22578480 67.41%,#06152280 97.48%),#212121; } `, ];