@tempots/beatui 0.10.0 → 0.11.0
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/dist/beatui.css +1 -1
- package/dist/de-O2DMrfiH.js +37 -0
- package/dist/es-CsNVN5AY.js +37 -0
- package/dist/fr-CJjx2YoL.js +37 -0
- package/dist/index.es.js +4817 -2930
- package/dist/index.umd.js +52 -52
- package/dist/it-BKzoVost.js +37 -0
- package/dist/ja-ZBFmK5Uj.js +37 -0
- package/dist/pt-DumIX3mi.js +37 -0
- package/dist/ru-_EKfu_bO.js +37 -0
- package/dist/types/auth-i18n/default.d.ts +30 -0
- package/dist/types/auth-i18n/index.d.ts +2 -0
- package/dist/types/auth-i18n/locales/de.d.ts +29 -0
- package/dist/types/auth-i18n/locales/en.d.ts +29 -0
- package/dist/types/auth-i18n/locales/es.d.ts +29 -0
- package/dist/types/auth-i18n/locales/fr.d.ts +29 -0
- package/dist/types/auth-i18n/locales/it.d.ts +29 -0
- package/dist/types/auth-i18n/locales/ja.d.ts +29 -0
- package/dist/types/auth-i18n/locales/pt.d.ts +29 -0
- package/dist/types/auth-i18n/locales/ru.d.ts +29 -0
- package/dist/types/auth-i18n/locales/zh.d.ts +29 -0
- package/dist/types/auth-i18n/translations.d.ts +28 -0
- package/dist/types/components/auth/auth-container.d.ts +10 -0
- package/dist/types/components/auth/auth-divider.d.ts +8 -0
- package/dist/types/components/auth/index.d.ts +10 -0
- package/dist/types/components/auth/password-strength-indicator.d.ts +5 -0
- package/dist/types/components/auth/reset-password-form.d.ts +3 -0
- package/dist/types/components/auth/schemas.d.ts +32 -0
- package/dist/types/components/auth/signin-form.d.ts +3 -0
- package/dist/types/components/auth/signup-form.d.ts +3 -0
- package/dist/types/components/auth/social-login-button.d.ts +47 -0
- package/dist/types/components/auth/types.d.ts +166 -0
- package/dist/types/components/auth/utils.d.ts +23 -0
- package/dist/types/components/beatui.d.ts +4 -1
- package/dist/types/components/button/button.d.ts +1 -1
- package/dist/types/components/form/input/input-container.d.ts +2 -1
- package/dist/types/components/form/schema/custom-validation.d.ts +75 -0
- package/dist/types/components/form/schema/index.d.ts +1 -0
- package/dist/types/components/navigation/sidebar/sidebar-group.d.ts +2 -1
- package/dist/types/components/navigation/sidebar/sidebar-link.d.ts +3 -0
- package/dist/types/components/theme/types.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/zh-DEZH0fdq.js +37 -0
- package/package.json +2 -3
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
const r = {
|
|
2
|
+
// Sign In
|
|
3
|
+
signInTitle: () => "Anmelden",
|
|
4
|
+
signInButton: () => "Anmelden",
|
|
5
|
+
emailLabel: () => "E-Mail",
|
|
6
|
+
passwordLabel: () => "Passwort",
|
|
7
|
+
rememberMeLabel: () => "Angemeldet bleiben",
|
|
8
|
+
forgotPasswordLink: () => "Passwort vergessen?",
|
|
9
|
+
noAccountLink: () => "Noch kein Konto? Registrieren",
|
|
10
|
+
// Sign Up
|
|
11
|
+
signUpTitle: () => "Registrieren",
|
|
12
|
+
signUpButton: () => "Registrieren",
|
|
13
|
+
nameLabel: () => "Name",
|
|
14
|
+
confirmPasswordLabel: () => "Passwort bestätigen",
|
|
15
|
+
acceptTermsLabel: () => "Ich akzeptiere die Allgemeinen Geschäftsbedingungen",
|
|
16
|
+
hasAccountLink: () => "Bereits ein Konto? Anmelden",
|
|
17
|
+
// Reset Password
|
|
18
|
+
resetPasswordTitle: () => "Passwort zurücksetzen",
|
|
19
|
+
resetPasswordButton: () => "Passwort zurücksetzen",
|
|
20
|
+
resetPasswordDescription: () => "Geben Sie Ihre E-Mail-Adresse ein, um Ihr Passwort zurückzusetzen.",
|
|
21
|
+
backToSignInLink: () => "Zurück zur Anmeldung",
|
|
22
|
+
// Social Login
|
|
23
|
+
continueWithProvider: (e) => `Mit ${e} fortfahren`,
|
|
24
|
+
// Password Strength
|
|
25
|
+
passwordStrengthWeak: () => "Schwach",
|
|
26
|
+
passwordStrengthFair: () => "Ausreichend",
|
|
27
|
+
passwordStrengthGood: () => "Gut",
|
|
28
|
+
passwordStrengthStrong: () => "Stark",
|
|
29
|
+
// Common
|
|
30
|
+
orDivider: () => "oder",
|
|
31
|
+
loading: () => "Laden...",
|
|
32
|
+
error: () => "Ein Fehler ist aufgetreten",
|
|
33
|
+
required: () => "Erforderlich"
|
|
34
|
+
};
|
|
35
|
+
export {
|
|
36
|
+
r as default
|
|
37
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
const r = {
|
|
2
|
+
// Sign In
|
|
3
|
+
signInTitle: () => "Iniciar Sesión",
|
|
4
|
+
signInButton: () => "Iniciar Sesión",
|
|
5
|
+
emailLabel: () => "Correo Electrónico",
|
|
6
|
+
passwordLabel: () => "Contraseña",
|
|
7
|
+
rememberMeLabel: () => "Recordarme",
|
|
8
|
+
forgotPasswordLink: () => "¿Olvidaste tu contraseña?",
|
|
9
|
+
noAccountLink: () => "¿No tienes una cuenta? Regístrate",
|
|
10
|
+
// Sign Up
|
|
11
|
+
signUpTitle: () => "Registrarse",
|
|
12
|
+
signUpButton: () => "Registrarse",
|
|
13
|
+
nameLabel: () => "Nombre",
|
|
14
|
+
confirmPasswordLabel: () => "Confirmar Contraseña",
|
|
15
|
+
acceptTermsLabel: () => "Acepto los términos y condiciones",
|
|
16
|
+
hasAccountLink: () => "¿Ya tienes una cuenta? Inicia sesión",
|
|
17
|
+
// Reset Password
|
|
18
|
+
resetPasswordTitle: () => "Restablecer Contraseña",
|
|
19
|
+
resetPasswordButton: () => "Restablecer Contraseña",
|
|
20
|
+
resetPasswordDescription: () => "Ingresa tu correo electrónico para restablecer tu contraseña.",
|
|
21
|
+
backToSignInLink: () => "Volver a iniciar sesión",
|
|
22
|
+
// Social Login
|
|
23
|
+
continueWithProvider: (e) => `Continuar con ${e}`,
|
|
24
|
+
// Password Strength
|
|
25
|
+
passwordStrengthWeak: () => "Débil",
|
|
26
|
+
passwordStrengthFair: () => "Regular",
|
|
27
|
+
passwordStrengthGood: () => "Buena",
|
|
28
|
+
passwordStrengthStrong: () => "Fuerte",
|
|
29
|
+
// Common
|
|
30
|
+
orDivider: () => "o",
|
|
31
|
+
loading: () => "Cargando...",
|
|
32
|
+
error: () => "Ocurrió un error",
|
|
33
|
+
required: () => "Requerido"
|
|
34
|
+
};
|
|
35
|
+
export {
|
|
36
|
+
r as default
|
|
37
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
const r = {
|
|
2
|
+
// Sign In
|
|
3
|
+
signInTitle: () => "Se Connecter",
|
|
4
|
+
signInButton: () => "Se Connecter",
|
|
5
|
+
emailLabel: () => "Email",
|
|
6
|
+
passwordLabel: () => "Mot de Passe",
|
|
7
|
+
rememberMeLabel: () => "Se souvenir de moi",
|
|
8
|
+
forgotPasswordLink: () => "Mot de passe oublié ?",
|
|
9
|
+
noAccountLink: () => "Vous n'avez pas de compte ? Inscrivez-vous",
|
|
10
|
+
// Sign Up
|
|
11
|
+
signUpTitle: () => "S'Inscrire",
|
|
12
|
+
signUpButton: () => "S'Inscrire",
|
|
13
|
+
nameLabel: () => "Nom",
|
|
14
|
+
confirmPasswordLabel: () => "Confirmer le Mot de Passe",
|
|
15
|
+
acceptTermsLabel: () => "J'accepte les termes et conditions",
|
|
16
|
+
hasAccountLink: () => "Vous avez déjà un compte ? Connectez-vous",
|
|
17
|
+
// Reset Password
|
|
18
|
+
resetPasswordTitle: () => "Réinitialiser le Mot de Passe",
|
|
19
|
+
resetPasswordButton: () => "Réinitialiser le Mot de Passe",
|
|
20
|
+
resetPasswordDescription: () => "Entrez votre email pour réinitialiser votre mot de passe.",
|
|
21
|
+
backToSignInLink: () => "Retour à la connexion",
|
|
22
|
+
// Social Login
|
|
23
|
+
continueWithProvider: (e) => `Continuer avec ${e}`,
|
|
24
|
+
// Password Strength
|
|
25
|
+
passwordStrengthWeak: () => "Faible",
|
|
26
|
+
passwordStrengthFair: () => "Correct",
|
|
27
|
+
passwordStrengthGood: () => "Bon",
|
|
28
|
+
passwordStrengthStrong: () => "Fort",
|
|
29
|
+
// Common
|
|
30
|
+
orDivider: () => "ou",
|
|
31
|
+
loading: () => "Chargement...",
|
|
32
|
+
error: () => "Une erreur est survenue",
|
|
33
|
+
required: () => "Requis"
|
|
34
|
+
};
|
|
35
|
+
export {
|
|
36
|
+
r as default
|
|
37
|
+
};
|