Skip to content

Commit 8c92a11

Browse files
committed
update version to 0.1.7
1 parent 2c67c54 commit 8c92a11

21 files changed

Lines changed: 125 additions & 28 deletions

locales/de-DE.arb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,14 @@
184184
"@email": {
185185
"description": "Label für E-Mail Eingabefeld"
186186
},
187+
"firstName": "Vorname",
188+
"@firstName": {
189+
"description": "Label für Vorname Eingabefeld"
190+
},
191+
"lastName": "Nachname",
192+
"@lastName": {
193+
"description": "Label für Nachname Eingabefeld"
194+
},
187195
"oauthGrantTitle": "Zugriff gewähren",
188196
"@oauthGrantTitle": {
189197
"description": "OAuth-Gewährung Titel"

locales/en-US.arb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,14 @@
184184
"@email": {
185185
"description": "Label for email input field"
186186
},
187+
"firstName": "First name",
188+
"@firstName": {
189+
"description": "Label for first name input field"
190+
},
191+
"lastName": "Last name",
192+
"@lastName": {
193+
"description": "Label for last name input field"
194+
},
187195
"oauthGrantTitle": "Grant Access",
188196
"@oauthGrantTitle": {
189197
"description": "OAuth grant title"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "id.helpwave.de",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"repository": {
55
"type": "git",
66
"url": "git://github.com/helpwave/id.helpwave.de.git"

src/i18n/translations.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,15 @@ export type HelpwaveIdTranslationEntries = {
4242
'errorInvalidUsername': string,
4343
'errorInvalidUsernameOrPassword': string,
4444
'errorPasswordMismatch': string,
45+
'firstName': string,
4546
'forgotPassword': string,
4647
'frontchannelLogoutMessage': string,
4748
'helpwaveId': string,
4849
'identity-provider-redirector': string,
4950
'idpLinkConfirmMessage': string,
5051
'idpLinkConfirmOverrideMessage': string,
5152
'imprint': string,
53+
'lastName': string,
5254
'linkIdpMessage': string,
5355
'loginOtp': string,
5456
'loginTotpOneTime': string,
@@ -120,13 +122,15 @@ export const helpwaveIdTranslation: Translation<HelpwaveIdTranslationLocales, Pa
120122
'errorInvalidUsername': `Ungültiger Benutzername`,
121123
'errorInvalidUsernameOrPassword': `Ungültiger Benutzername oder Passwort`,
122124
'errorPasswordMismatch': `Passwörter stimmen nicht überein`,
125+
'firstName': `Vorname`,
123126
'forgotPassword': `Passwort vergessen?`,
124127
'frontchannelLogoutMessage': `Abmelden...`,
125128
'helpwaveId': `helpwave id`,
126129
'identity-provider-redirector': `Oder anmelden mit`,
127130
'idpLinkConfirmMessage': `Möchten Sie diesen Identitätsanbieter mit Ihrem Konto verknüpfen?`,
128131
'idpLinkConfirmOverrideMessage': `Dieser Identitätsanbieter ist bereits mit einem anderen Konto verknüpft. Möchten Sie dies überschreiben?`,
129132
'imprint': `Impressum`,
133+
'lastName': `Nachname`,
130134
'linkIdpMessage': `Identitätsanbieter verknüpfen...`,
131135
'loginOtp': `Bestätigungscode`,
132136
'loginTotpOneTime': `Einmalcode`,
@@ -201,13 +205,15 @@ export const helpwaveIdTranslation: Translation<HelpwaveIdTranslationLocales, Pa
201205
'errorInvalidUsername': `Invalid username`,
202206
'errorInvalidUsernameOrPassword': `Invalid username or password`,
203207
'errorPasswordMismatch': `Passwords do not match`,
208+
'firstName': `First name`,
204209
'forgotPassword': `Forgot Password?`,
205210
'frontchannelLogoutMessage': `Logging out...`,
206211
'helpwaveId': `helpwave id`,
207212
'identity-provider-redirector': `Or sign in with`,
208213
'idpLinkConfirmMessage': `Do you want to link this identity provider to your account?`,
209214
'idpLinkConfirmOverrideMessage': `This identity provider is already linked to another account. Do you want to override it?`,
210215
'imprint': `Imprint`,
216+
'lastName': `Last name`,
211217
'linkIdpMessage': `Linking identity provider...`,
212218
'loginOtp': `Verification Code`,
213219
'loginTotpOneTime': `One-time code`,

src/login/components/Branding.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { HelpwaveLogo } from '@helpwave/hightide'
22

33
export function Branding() {
44
return (
5-
<div className="flex flex-col items-center gap-4 mb-8 sm:gap-3 sm:mb-6">
5+
<div className="flex flex-col items-center gap-4 mb-8 sm:gap-3 sm:mb-4">
66
<HelpwaveLogo height={64} width={64} />
77
<div className="font-space text-2xl font-bold tracking-[-0.5px] sm:text-xl">
88
helpwave id

src/login/pages/Code.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default function Code({ kcContext }: CodeProps) {
5656
method="post"
5757
style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}
5858
>
59-
<div className="mb-6">
59+
<div className="mb-4">
6060
<FormFieldLayout
6161
label={t('loginOtp') || t('otp')}
6262
invalidDescription={translateError(codeError)}

src/login/pages/ForgotPassword.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export default function ForgotPassword({ kcContext }: ForgotPasswordProps) {
6464
method="post"
6565
style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}
6666
>
67-
<div className="mb-6">
67+
<div className="mb-4">
6868
<FormFieldLayout
6969
label={t(
7070
kcContext.realm?.loginWithEmailAllowed

src/login/pages/IdpReviewUserProfile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default function IdpReviewUserProfile({ kcContext }: IdpReviewUserProfile
4343
const inputType = fieldType === 'email' ? 'email' : 'text'
4444

4545
return (
46-
<div key={attrName} className="mb-6">
46+
<div key={attrName} className="mb-4">
4747
<FormFieldLayout
4848
label={attr.displayName ?? attrName}
4949
invalidDescription={translateError(getFieldError(attrName))}

src/login/pages/Login.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default function Login({ kcContext }: LoginProps) {
7777
}}
7878
style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}
7979
>
80-
<div className="mb-6">
80+
<div className="mb-4">
8181
<FormFieldLayout
8282
label={t(
8383
kcContext.realm?.loginWithEmailAllowed
@@ -104,7 +104,7 @@ export default function Login({ kcContext }: LoginProps) {
104104
</FormFieldLayout>
105105
</div>
106106

107-
<div className="mb-6">
107+
<div className="mb-4">
108108
<FormFieldLayout
109109
label={t('password')}
110110
invalidDescription={translateError(passwordError)}

src/login/pages/LoginConfigTotp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export default function LoginConfigTotp({ kcContext }: LoginConfigTotpProps) {
6767
method="post"
6868
style={{ display: 'flex', flexDirection: 'column', gap: '1rem' }}
6969
>
70-
<div className="mb-6">
70+
<div className="mb-4">
7171
<FormFieldLayout
7272
label={t('loginTotpOneTime')}
7373
invalidDescription={translateError(totpError)}

0 commit comments

Comments
 (0)