@alfadocs/ui-kit-debug 0.7.3 → 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/_chunks/use-password-requirements-DgEYdN4H.js.map +1 -0
- package/dist/agent-catalog.json +1 -1
- package/dist/components/password-input/index.d.ts +3 -1
- package/dist/components/password-input/index.d.ts.map +1 -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/password-input.d.ts.map +1 -1
- package/dist/components/password-input/use-password-requirements.d.ts +39 -0
- package/dist/components/password-input/use-password-requirements.d.ts.map +1 -0
- package/dist/i18n/config.js +32 -2
- package/dist/i18n/config.js.map +1 -1
- package/dist/i18n/resources.d.ts +30 -0
- package/dist/i18n/resources.d.ts.map +1 -1
- 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/_chunks/password-input-C4LmjIH1.js.map +0 -1
package/dist/i18n/config.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import n from "i18next";
|
|
2
|
-
import { default as
|
|
2
|
+
import { default as g } from "i18next";
|
|
3
3
|
import { initReactI18next as i } from "react-i18next";
|
|
4
4
|
const e = {
|
|
5
5
|
common: {
|
|
@@ -66,6 +66,16 @@ const e = {
|
|
|
66
66
|
fair: "Fair",
|
|
67
67
|
good: "Good",
|
|
68
68
|
strong: "Strong"
|
|
69
|
+
},
|
|
70
|
+
requirements: {
|
|
71
|
+
length_one: "At least {{count}} character",
|
|
72
|
+
length_other: "At least {{count}} characters",
|
|
73
|
+
uppercase: "One uppercase letter",
|
|
74
|
+
lowercase: "One lowercase letter",
|
|
75
|
+
digit: "One number",
|
|
76
|
+
symbol: "One symbol",
|
|
77
|
+
met: "met",
|
|
78
|
+
unmet: "not yet met"
|
|
69
79
|
}
|
|
70
80
|
},
|
|
71
81
|
textarea: {
|
|
@@ -1028,6 +1038,16 @@ const e = {
|
|
|
1028
1038
|
fair: "Discreta",
|
|
1029
1039
|
good: "Buona",
|
|
1030
1040
|
strong: "Forte"
|
|
1041
|
+
},
|
|
1042
|
+
requirements: {
|
|
1043
|
+
length_one: "Almeno {{count}} carattere",
|
|
1044
|
+
length_other: "Almeno {{count}} caratteri",
|
|
1045
|
+
uppercase: "Una lettera maiuscola",
|
|
1046
|
+
lowercase: "Una lettera minuscola",
|
|
1047
|
+
digit: "Un numero",
|
|
1048
|
+
symbol: "Un simbolo",
|
|
1049
|
+
met: "soddisfatto",
|
|
1050
|
+
unmet: "non ancora soddisfatto"
|
|
1031
1051
|
}
|
|
1032
1052
|
},
|
|
1033
1053
|
textarea: {
|
|
@@ -1958,6 +1978,16 @@ const e = {
|
|
|
1958
1978
|
toggleHide: "Passwort verbergen",
|
|
1959
1979
|
capsLock: "Feststelltaste ist aktiviert",
|
|
1960
1980
|
strengthLabel: "Passwortstärke",
|
|
1981
|
+
requirements: {
|
|
1982
|
+
length_one: "Mindestens {{count}} Zeichen",
|
|
1983
|
+
length_other: "Mindestens {{count}} Zeichen",
|
|
1984
|
+
uppercase: "Ein Großbuchstabe",
|
|
1985
|
+
lowercase: "Ein Kleinbuchstabe",
|
|
1986
|
+
digit: "Eine Zahl",
|
|
1987
|
+
symbol: "Ein Sonderzeichen",
|
|
1988
|
+
met: "erfüllt",
|
|
1989
|
+
unmet: "noch nicht erfüllt"
|
|
1990
|
+
},
|
|
1961
1991
|
strength: {
|
|
1962
1992
|
weak: "Schwach",
|
|
1963
1993
|
fair: "Mittel",
|
|
@@ -2874,7 +2904,7 @@ n.use(i).init({
|
|
|
2874
2904
|
export {
|
|
2875
2905
|
u as LOCALES_WITH_BUNDLES,
|
|
2876
2906
|
t as arUi,
|
|
2877
|
-
|
|
2907
|
+
g as default,
|
|
2878
2908
|
e as enUi,
|
|
2879
2909
|
d as uiResources
|
|
2880
2910
|
};
|