3 Commits

Author SHA1 Message Date
philkunz c8b8013200 1.4.3
Docker (tags) / security (push) Failing after 1s
Docker (tags) / test (push) Has been skipped
Docker (tags) / release (push) Has been skipped
Docker (tags) / metadata (push) Has been skipped
2025-04-03 18:35:38 +00:00
philkunz 0b8639b033 fix(website): Update packageManager configuration in package.json and refine view container background styling 2025-04-03 18:35:38 +00:00
philkunz 08828d6771 update 2024-12-11 01:19:54 +01:00
6 changed files with 23 additions and 4 deletions
+16
View File
@@ -1,5 +1,21 @@
# 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)
Added 'Learn more about idp.global' button
- Added a new button for learning more about idp.global in the welcome component
## 2024-12-11 - 1.5.0 - feat(UI)
Added 'Learn more about idp.global' button
- Added a new button for learning more about idp.global in the welcome component
## 2024-10-12 - 1.4.2 - fix(UI) ## 2024-10-12 - 1.4.2 - fix(UI)
Improve text rendering in account navigation. Improve text rendering in account navigation.
+3 -2
View File
@@ -1,6 +1,6 @@
{ {
"name": "@idp.global/idp.global", "name": "@idp.global/idp.global",
"version": "1.4.2", "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.",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts", "typings": "dist_ts/index.d.ts",
@@ -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.4.2', 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.4.2', 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
@@ -99,6 +99,7 @@ export class IdpWelcome extends DeesElement {
> >
`; `;
})} })}
<dees-button @click=${() => {}}>Learn more about idp.global</dees-button>
<dees-button @click=${() => {}}>Open Developer Dashboard</dees-button> <dees-button @click=${() => {}}>Open Developer Dashboard</dees-button>
<dees-button <dees-button
@click=${() => { @click=${() => {
+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;
} }
`, `,
]; ];