fix(website): Update packageManager configuration in package.json and refine view container background styling

This commit is contained in:
2025-04-03 18:35:38 +00:00
parent 08828d6771
commit 0b8639b033
5 changed files with 11 additions and 3 deletions
+6
View File
@@ -1,5 +1,11 @@
# Changelog # 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) ## 2024-12-11 - 1.5.0 - feat(UI)
Added 'Learn more about idp.global' button Added 'Learn more about idp.global' button
+2 -1
View File
@@ -101,5 +101,6 @@
"API", "API",
"user data", "user data",
"user sessions" "user sessions"
] ],
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
} }
+1 -1
View File
@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@idp.global/idp.global', name: '@idp.global/idp.global',
version: '1.5.0', version: '1.4.3',
description: 'An identity provider software managing user authentications, registrations, and sessions.' description: 'An identity provider software managing user authentications, registrations, and sessions.'
} }
+1 -1
View File
@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@idp.global/idp.global', name: '@idp.global/idp.global',
version: '1.5.0', version: '1.4.3',
description: 'An identity provider software managing user authentications, registrations, and sessions.' description: 'An identity provider software managing user authentications, registrations, and sessions.'
} }
+1
View File
@@ -33,6 +33,7 @@ export class IdpViewcontainer extends DeesElement {
.viewContainer { .viewContainer {
min-width: 100vh; min-width: 100vh;
min-height: 100vh; min-height: 100vh;
background: linear-gradient(-255deg,#06152280 -3.35%,#939eff38 32.79%,#22578480 67.41%,#06152280 97.48%),#212121;
} }
`, `,
]; ];