@live-change/user-frontend 0.9.132 → 0.9.133
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/front/locales/en.json
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
"newPassword": "New password",
|
|
15
15
|
"reenterPassword": "Re-enter password",
|
|
16
16
|
"resetPassword": "Reset password",
|
|
17
|
+
"changePassword": "Change password",
|
|
18
|
+
"setPassword": "Set password",
|
|
17
19
|
"passwordChanged": "Password changed",
|
|
18
20
|
"passwordChangedSuccess": "You have successfully set your password.",
|
|
19
21
|
"passwordResetSuccess": "You have successfully changed your password.",
|
|
@@ -27,6 +29,7 @@
|
|
|
27
29
|
"suggestionLowercase": "At least one lowercase",
|
|
28
30
|
"suggestionUppercase": "At least one uppercase",
|
|
29
31
|
"suggestionNumeric": "At least one numeric",
|
|
32
|
+
"suggestionMinLength": "Minimum 8 characters",
|
|
30
33
|
"alreadyHaveAccount": "Already have an account?",
|
|
31
34
|
"signInToday": "Sign in today!",
|
|
32
35
|
"signUpWithEmail": "Sign Up with email",
|
package/front/locales/pl.json
CHANGED
|
@@ -14,6 +14,8 @@
|
|
|
14
14
|
"newPassword": "Nowe hasło",
|
|
15
15
|
"reenterPassword": "Powtórz hasło",
|
|
16
16
|
"resetPassword": "Resetuj hasło",
|
|
17
|
+
"changePassword": "Zmień hasło",
|
|
18
|
+
"setPassword": "Ustaw hasło",
|
|
17
19
|
"passwordChanged": "Hasło zmienione",
|
|
18
20
|
"passwordChangedSuccess": "Pomyślnie ustawiłeś swoje hasło.",
|
|
19
21
|
"passwordResetSuccess": "Pomyślnie zmieniłeś swoje hasło.",
|
|
@@ -27,6 +29,7 @@
|
|
|
27
29
|
"suggestionLowercase": "Co najmniej jedna mała litera",
|
|
28
30
|
"suggestionUppercase": "Co najmniej jedna wielka litera",
|
|
29
31
|
"suggestionNumeric": "Co najmniej jedna cyfra",
|
|
32
|
+
"suggestionMinLength": "Minimum 8 znaków",
|
|
30
33
|
"alreadyHaveAccount": "Masz już konto?",
|
|
31
34
|
"signInToday": "Zaloguj się dzisiaj!",
|
|
32
35
|
"signUpWithEmail": "Zarejestruj się przez email",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
const { t, availableLocales, getLocaleMessage } = useI18n()
|
|
58
58
|
|
|
59
59
|
function languageLabel(option) {
|
|
60
|
-
console.log("LANGUAGE LABEL", option)
|
|
60
|
+
//console.log("LANGUAGE LABEL", option)
|
|
61
61
|
if(!option) return `${t('settings.autoDetect')} (${navigator.language})`
|
|
62
62
|
return getLocaleMessage(option).languageName ?? option
|
|
63
63
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<div class="bg-surface-0 dark:bg-surface-900 p-6 shadow rounded-border">
|
|
5
5
|
<div class="text-center mb-8">
|
|
6
6
|
<div class="text-surface-900 dark:text-surface-0 text-3xl font-medium mb-4">
|
|
7
|
-
{{ passwordExists ? '
|
|
7
|
+
{{ passwordExists ? t('auth.changePassword') : t('auth.setPassword') }}
|
|
8
8
|
</div>
|
|
9
9
|
</div>
|
|
10
10
|
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<li>{{ t('auth.suggestionLowercase') }}</li>
|
|
39
39
|
<li>{{ t('auth.suggestionUppercase') }}</li>
|
|
40
40
|
<li>{{ t('auth.suggestionNumeric') }}</li>
|
|
41
|
-
<li>
|
|
41
|
+
<li>{{ t('auth.suggestionMinLength') }}</li>
|
|
42
42
|
</ul>
|
|
43
43
|
</template>
|
|
44
44
|
</Password>
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
|
|
58
58
|
</template>
|
|
59
59
|
|
|
60
|
-
<Button :label="passwordExists ? '
|
|
60
|
+
<Button :label="passwordExists ? t('auth.changePassword') : t('auth.setPassword')"
|
|
61
61
|
type="submit"
|
|
62
62
|
icon="pi pi-key" class="w-full"></Button>
|
|
63
63
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="flex relative lg:static bg-surface-50 dark:bg-surface-950"
|
|
3
|
-
style="height: calc(100vh - 88px)">
|
|
3
|
+
style="min-height: calc(100vh - 88px)">
|
|
4
4
|
<div id="settings-menu"
|
|
5
5
|
class="bg-surface-0 dark:bg-surface-950 flex-shrink-0 absolute left-0 h-full
|
|
6
6
|
top-0 z-1 border-r-1 border-r-surface-300 dark:border-r-surface-700 select-none
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/user-frontend",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.133",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"memDev": "tsx --inspect --expose-gc server/start.js memDev --enableSessions --initScript ./init.js --dbAccess",
|
|
6
6
|
"localDevInit": "tsx server/start.js localDev --enableSessions --initScript ./init.js --dbAccess",
|
|
@@ -36,29 +36,29 @@
|
|
|
36
36
|
},
|
|
37
37
|
"type": "module",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@live-change/cli": "^0.9.
|
|
40
|
-
"@live-change/dao": "^0.9.
|
|
41
|
-
"@live-change/dao-vue3": "^0.9.
|
|
42
|
-
"@live-change/dao-websocket": "^0.9.
|
|
43
|
-
"@live-change/email-service": "^0.9.
|
|
44
|
-
"@live-change/framework": "^0.9.
|
|
45
|
-
"@live-change/identicon-service": "^0.9.
|
|
46
|
-
"@live-change/image-frontend": "^0.9.
|
|
47
|
-
"@live-change/message-authentication-service": "^0.9.
|
|
48
|
-
"@live-change/notification-service": "^0.9.
|
|
49
|
-
"@live-change/password-authentication-service": "^0.9.
|
|
50
|
-
"@live-change/pattern": "^0.9.
|
|
51
|
-
"@live-change/secret-code-service": "^0.9.
|
|
52
|
-
"@live-change/secret-link-service": "^0.9.
|
|
53
|
-
"@live-change/security-frontend": "^0.9.
|
|
54
|
-
"@live-change/security-service": "^0.9.
|
|
55
|
-
"@live-change/session-service": "^0.9.
|
|
56
|
-
"@live-change/timer-service": "^0.9.
|
|
57
|
-
"@live-change/upload-service": "^0.9.
|
|
58
|
-
"@live-change/user-identification-service": "^0.9.
|
|
59
|
-
"@live-change/user-service": "^0.9.
|
|
60
|
-
"@live-change/vue3-components": "^0.9.
|
|
61
|
-
"@live-change/vue3-ssr": "^0.9.
|
|
39
|
+
"@live-change/cli": "^0.9.133",
|
|
40
|
+
"@live-change/dao": "^0.9.133",
|
|
41
|
+
"@live-change/dao-vue3": "^0.9.133",
|
|
42
|
+
"@live-change/dao-websocket": "^0.9.133",
|
|
43
|
+
"@live-change/email-service": "^0.9.133",
|
|
44
|
+
"@live-change/framework": "^0.9.133",
|
|
45
|
+
"@live-change/identicon-service": "^0.9.133",
|
|
46
|
+
"@live-change/image-frontend": "^0.9.133",
|
|
47
|
+
"@live-change/message-authentication-service": "^0.9.133",
|
|
48
|
+
"@live-change/notification-service": "^0.9.133",
|
|
49
|
+
"@live-change/password-authentication-service": "^0.9.133",
|
|
50
|
+
"@live-change/pattern": "^0.9.133",
|
|
51
|
+
"@live-change/secret-code-service": "^0.9.133",
|
|
52
|
+
"@live-change/secret-link-service": "^0.9.133",
|
|
53
|
+
"@live-change/security-frontend": "^0.9.133",
|
|
54
|
+
"@live-change/security-service": "^0.9.133",
|
|
55
|
+
"@live-change/session-service": "^0.9.133",
|
|
56
|
+
"@live-change/timer-service": "^0.9.133",
|
|
57
|
+
"@live-change/upload-service": "^0.9.133",
|
|
58
|
+
"@live-change/user-identification-service": "^0.9.133",
|
|
59
|
+
"@live-change/user-service": "^0.9.133",
|
|
60
|
+
"@live-change/vue3-components": "^0.9.133",
|
|
61
|
+
"@live-change/vue3-ssr": "^0.9.133",
|
|
62
62
|
"@vueuse/core": "^12.3.0",
|
|
63
63
|
"codeceptjs-assert": "^0.0.5",
|
|
64
64
|
"codeceptjs-video-helper": "0.1.3",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"wtfnode": "^0.9.1"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@live-change/codeceptjs-helper": "^0.9.
|
|
82
|
+
"@live-change/codeceptjs-helper": "^0.9.133",
|
|
83
83
|
"codeceptjs": "^3.6.10",
|
|
84
84
|
"generate-password": "1.7.1",
|
|
85
85
|
"playwright": "1.49.1",
|
|
@@ -90,5 +90,5 @@
|
|
|
90
90
|
"author": "Michał Łaszczewski <michal@laszczewski.pl>",
|
|
91
91
|
"license": "BSD-3-Clause",
|
|
92
92
|
"description": "",
|
|
93
|
-
"gitHead": "
|
|
93
|
+
"gitHead": "455a7c9d204a89196f6599c42acd8eaeb45532e1"
|
|
94
94
|
}
|