@alfadocs/ui-kit 0.7.2 → 0.8.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/_chunks/use-password-requirements-DgEYdN4H.js +446 -0
- package/dist/agent-catalog.json +1 -1
- package/dist/components/password-input/index.d.ts +3 -1
- package/dist/components/password-input/index.js +3 -2
- package/dist/components/password-input/password-input.d.ts +31 -0
- package/dist/components/password-input/use-password-requirements.d.ts +39 -0
- package/dist/i18n/config.js +32 -2
- package/dist/i18n/resources.d.ts +30 -0
- package/dist/index.js +389 -388
- package/dist/locales/de.json +10 -0
- package/dist/locales/en.json +10 -0
- package/dist/locales/it.json +10 -0
- package/dist/tokens.css +1 -1
- package/package.json +1 -1
- package/dist/_chunks/password-input-C4LmjIH1.js +0 -301
package/dist/locales/de.json
CHANGED
|
@@ -51,6 +51,16 @@
|
|
|
51
51
|
"toggleHide": "Passwort verbergen",
|
|
52
52
|
"capsLock": "Feststelltaste ist aktiviert",
|
|
53
53
|
"strengthLabel": "Passwortstärke",
|
|
54
|
+
"requirements": {
|
|
55
|
+
"length_one": "Mindestens {{count}} Zeichen",
|
|
56
|
+
"length_other": "Mindestens {{count}} Zeichen",
|
|
57
|
+
"uppercase": "Ein Großbuchstabe",
|
|
58
|
+
"lowercase": "Ein Kleinbuchstabe",
|
|
59
|
+
"digit": "Eine Zahl",
|
|
60
|
+
"symbol": "Ein Sonderzeichen",
|
|
61
|
+
"met": "erfüllt",
|
|
62
|
+
"unmet": "noch nicht erfüllt"
|
|
63
|
+
},
|
|
54
64
|
"strength": {
|
|
55
65
|
"weak": "Schwach",
|
|
56
66
|
"fair": "Mittel",
|
package/dist/locales/en.json
CHANGED
|
@@ -63,6 +63,16 @@
|
|
|
63
63
|
"fair": "Fair",
|
|
64
64
|
"good": "Good",
|
|
65
65
|
"strong": "Strong"
|
|
66
|
+
},
|
|
67
|
+
"requirements": {
|
|
68
|
+
"length_one": "At least {{count}} character",
|
|
69
|
+
"length_other": "At least {{count}} characters",
|
|
70
|
+
"uppercase": "One uppercase letter",
|
|
71
|
+
"lowercase": "One lowercase letter",
|
|
72
|
+
"digit": "One number",
|
|
73
|
+
"symbol": "One symbol",
|
|
74
|
+
"met": "met",
|
|
75
|
+
"unmet": "not yet met"
|
|
66
76
|
}
|
|
67
77
|
},
|
|
68
78
|
"textarea": {
|
package/dist/locales/it.json
CHANGED
|
@@ -56,6 +56,16 @@
|
|
|
56
56
|
"fair": "Discreta",
|
|
57
57
|
"good": "Buona",
|
|
58
58
|
"strong": "Forte"
|
|
59
|
+
},
|
|
60
|
+
"requirements": {
|
|
61
|
+
"length_one": "Almeno {{count}} carattere",
|
|
62
|
+
"length_other": "Almeno {{count}} caratteri",
|
|
63
|
+
"uppercase": "Una lettera maiuscola",
|
|
64
|
+
"lowercase": "Una lettera minuscola",
|
|
65
|
+
"digit": "Un numero",
|
|
66
|
+
"symbol": "Un simbolo",
|
|
67
|
+
"met": "soddisfatto",
|
|
68
|
+
"unmet": "non ancora soddisfatto"
|
|
59
69
|
}
|
|
60
70
|
},
|
|
61
71
|
"textarea": {
|