Skip to content

Commit ab3010a

Browse files
authored
Merge pull request #10 from helpwave/patch/upgrade-0.1.12
upgrade version to v0.1.12
2 parents 3c7f821 + 910d068 commit ab3010a

9 files changed

Lines changed: 11 additions & 133 deletions

File tree

locales/de-DE.arb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,6 @@
430430
"pageTitleUpdateProfile": "Kontoinformationen aktualisieren",
431431
"pageTitleLoginUsername": "Anmelden",
432432
"pageTitleX509Info": "X.509-Zertifikat",
433-
"pageTitleSamlPostForm": "Weiterleitung",
434433
"pageTitleSelectAuthenticator": "Authentifikator auswählen",
435434
"pageTitleSelectOrganization": "Organisation auswählen",
436435
"pageTitleUpdateEmail": "E-Mail aktualisieren",

locales/en-US.arb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,6 @@
430430
"pageTitleUpdateProfile": "Update Account Information",
431431
"pageTitleLoginUsername": "Log In",
432432
"pageTitleX509Info": "X.509 Certificate",
433-
"pageTitleSamlPostForm": "Redirecting",
434433
"pageTitleSelectAuthenticator": "Select Authenticator",
435434
"pageTitleSelectOrganization": "Select Organization",
436435
"pageTitleUpdateEmail": "Update Email",

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "id.helpwave.de",
3-
"version": "0.1.11",
3+
"version": "0.1.12",
44
"repository": {
55
"type": "git",
66
"url": "git://github.com/helpwave/id.helpwave.de.git"
@@ -21,7 +21,7 @@
2121
"license": "MPL-2",
2222
"keywords": [],
2323
"dependencies": {
24-
"@helpwave/hightide": "^0.8.1",
24+
"@helpwave/hightide": "^0.8.8",
2525
"@keycloakify/email-native": "~260007.0.0",
2626
"keycloakify": "^11.14.2",
2727
"lucide-react": "^0.563.0",

src/i18n/translations.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ export type HelpwaveIdTranslationEntries = {
120120
'pageTitleRecoveryCodeInput': string,
121121
'pageTitleRegister': string,
122122
'pageTitleResetOtp': string,
123-
'pageTitleSamlPostForm': string,
124123
'pageTitleSelectAuthenticator': string,
125124
'pageTitleSelectOrganization': string,
126125
'pageTitleTerms': string,
@@ -284,7 +283,6 @@ export const helpwaveIdTranslation: Translation<HelpwaveIdTranslationLocales, Pa
284283
'pageTitleRecoveryCodeInput': `Wiederherstellungscode`,
285284
'pageTitleRegister': `Registrieren`,
286285
'pageTitleResetOtp': `Authentifikator zurücksetzen`,
287-
'pageTitleSamlPostForm': `Weiterleitung`,
288286
'pageTitleSelectAuthenticator': `Authentifikator auswählen`,
289287
'pageTitleSelectOrganization': `Organisation auswählen`,
290288
'pageTitleTerms': `Allgemeine Geschäftsbedingungen`,
@@ -447,7 +445,6 @@ Der Anmeldevorgang wird von vorne begonnen.`,
447445
'pageTitleRecoveryCodeInput': `Recovery Code`,
448446
'pageTitleRegister': `Register`,
449447
'pageTitleResetOtp': `Reset Authenticator`,
450-
'pageTitleSamlPostForm': `Redirecting`,
451448
'pageTitleSelectAuthenticator': `Select Authenticator`,
452449
'pageTitleSelectOrganization': `Select Organization`,
453450
'pageTitleTerms': `Terms and Conditions`,

src/login/KcPage.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ import LoginResetOtp from './pages/LoginResetOtp'
3131
import LoginUpdateProfile from './pages/LoginUpdateProfile'
3232
import LoginUsername from './pages/LoginUsername'
3333
import LoginX509Info from './pages/LoginX509Info'
34-
import SamlPostForm from './pages/SamlPostForm'
3534
import SelectAuthenticator from './pages/SelectAuthenticator'
3635
import SelectOrganization from './pages/SelectOrganization'
3736
import UpdateEmail from './pages/UpdateEmail'
@@ -115,8 +114,6 @@ export default function KcPage(props: { kcContext: KcContext }) {
115114
return <LoginUsername kcContext={kcContext} />
116115
case 'login-x509-info.ftl':
117116
return <LoginX509Info kcContext={kcContext} />
118-
case 'saml-post-form.ftl':
119-
return <SamlPostForm kcContext={kcContext} />
120117
case 'select-authenticator.ftl':
121118
return <SelectAuthenticator kcContext={kcContext} />
122119
case 'select-organization.ftl':

src/login/pages/SamlPostForm.stories.tsx

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/login/pages/SamlPostForm.tsx

Lines changed: 0 additions & 96 deletions
This file was deleted.

src/login/utils/pageTitles.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ const PAGE_TITLE_BY_PAGE_ID: Partial<Record<KcContext['pageId'], keyof HelpwaveI
3333
'login-update-profile.ftl': 'pageTitleUpdateProfile',
3434
'login-username.ftl': 'pageTitleLoginUsername',
3535
'login-x509-info.ftl': 'pageTitleX509Info',
36-
'saml-post-form.ftl': 'pageTitleSamlPostForm',
3736
'select-authenticator.ftl': 'pageTitleSelectAuthenticator',
3837
'select-organization.ftl': 'pageTitleSelectOrganization',
3938
'update-email.ftl': 'pageTitleUpdateEmail',

0 commit comments

Comments
 (0)