@alfadocs/ui-kit 0.18.1 → 0.19.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/email-input-DKN5JERd.js +396 -0
- package/dist/_chunks/{public-header.agent-BIBQzkeV.js → public-header.agent-BQ3r6Hgq.js} +6 -4
- package/dist/_chunks/{use-password-requirements-BOgFsoIe.js → use-password-requirements-C9vKBSVn.js} +92 -81
- package/dist/agent-catalog.json +31 -1
- package/dist/components/email-input/email-input.agent.d.ts +13 -0
- package/dist/components/email-input/email-input.d.ts +28 -0
- package/dist/components/email-input/index.d.ts +5 -0
- package/dist/components/email-input/index.js +6 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/password-input/index.js +1 -1
- package/dist/components/password-input/use-password-requirements.d.ts +9 -1
- package/dist/components/public-header/index.js +1 -1
- package/dist/i18n/config.js +12 -0
- package/dist/i18n/resources.d.ts +12 -0
- package/dist/index.js +448 -445
- package/dist/locales/de.json +4 -0
- package/dist/locales/en.json +4 -0
- package/dist/locales/it.json +4 -0
- package/dist/tokens.css +1 -1
- package/package.json +8 -2
package/dist/locales/de.json
CHANGED
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
"lowercase": "Ein Kleinbuchstabe",
|
|
83
83
|
"digit": "Eine Zahl",
|
|
84
84
|
"symbol": "Ein Sonderzeichen",
|
|
85
|
+
"noSpaces": "Keine Leerzeichen",
|
|
85
86
|
"met": "erfüllt",
|
|
86
87
|
"unmet": "noch nicht erfüllt"
|
|
87
88
|
},
|
|
@@ -157,6 +158,9 @@
|
|
|
157
158
|
"popularCountries": "Häufig verwendet",
|
|
158
159
|
"allCountries": "Alle Länder"
|
|
159
160
|
},
|
|
161
|
+
"email": {
|
|
162
|
+
"invalid": "Ungültige E-Mail-Adresse"
|
|
163
|
+
},
|
|
160
164
|
"colorPicker": {
|
|
161
165
|
"hex": "Hex",
|
|
162
166
|
"hue": "Farbton",
|
package/dist/locales/en.json
CHANGED
|
@@ -95,6 +95,7 @@
|
|
|
95
95
|
"lowercase": "One lowercase letter",
|
|
96
96
|
"digit": "One number",
|
|
97
97
|
"symbol": "One symbol",
|
|
98
|
+
"noSpaces": "No spaces",
|
|
98
99
|
"met": "met",
|
|
99
100
|
"unmet": "not yet met"
|
|
100
101
|
}
|
|
@@ -164,6 +165,9 @@
|
|
|
164
165
|
"popularCountries": "Popular",
|
|
165
166
|
"allCountries": "All countries"
|
|
166
167
|
},
|
|
168
|
+
"email": {
|
|
169
|
+
"invalid": "Invalid email"
|
|
170
|
+
},
|
|
167
171
|
"colorPicker": {
|
|
168
172
|
"hex": "Hex",
|
|
169
173
|
"hue": "Hue",
|
package/dist/locales/it.json
CHANGED
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
"lowercase": "Una lettera minuscola",
|
|
89
89
|
"digit": "Un numero",
|
|
90
90
|
"symbol": "Un simbolo",
|
|
91
|
+
"noSpaces": "Nessuno spazio",
|
|
91
92
|
"met": "soddisfatto",
|
|
92
93
|
"unmet": "non ancora soddisfatto"
|
|
93
94
|
}
|
|
@@ -157,6 +158,9 @@
|
|
|
157
158
|
"popularCountries": "Più usati",
|
|
158
159
|
"allCountries": "Tutti i paesi"
|
|
159
160
|
},
|
|
161
|
+
"email": {
|
|
162
|
+
"invalid": "Indirizzo email non valido"
|
|
163
|
+
},
|
|
160
164
|
"colorPicker": {
|
|
161
165
|
"hex": "Hex",
|
|
162
166
|
"hue": "Tonalità",
|