mg-library 1.0.758 → 1.0.760
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/blocks.js +1 -3
- package/i18n/english.js +1 -0
- package/i18n/spanish.js +1 -0
- package/package.json +1 -1
package/blocks.js
CHANGED
|
@@ -276,7 +276,7 @@ export function MGLogin(props) {
|
|
|
276
276
|
borderColor="$gray300"
|
|
277
277
|
>
|
|
278
278
|
<InputField
|
|
279
|
-
placeholder={mgFunctionsLib.i18nString('password', props.language)}
|
|
279
|
+
placeholder={isKeyboardNumericForPassword ? mgFunctionsLib.i18nString('password', props.language) : mgFunctionsLib.i18nString('passwordAlphanumeric', props.language)}
|
|
280
280
|
placeholderTextColor="$gray300"
|
|
281
281
|
value={value}
|
|
282
282
|
onChangeText={onChange}
|
|
@@ -295,8 +295,6 @@ export function MGLogin(props) {
|
|
|
295
295
|
<Button
|
|
296
296
|
action="primary"
|
|
297
297
|
variant="outline"
|
|
298
|
-
w={80}
|
|
299
|
-
h={50}
|
|
300
298
|
onPress={() => {
|
|
301
299
|
setIsKeyboardNumericForPassword(!isKeyboardNumericForPassword)
|
|
302
300
|
}}
|
package/i18n/english.js
CHANGED
package/i18n/spanish.js
CHANGED
|
@@ -7,6 +7,7 @@ export const strings = {
|
|
|
7
7
|
credentials: 'Credenciales de Acceso',
|
|
8
8
|
userName: 'Usuario',
|
|
9
9
|
password: 'Contraseña',
|
|
10
|
+
passwordAlphanumeric: 'Contraseña Alfanumérica',
|
|
10
11
|
welcome: 'Bienvenido!',
|
|
11
12
|
personalData: 'Datos Personales',
|
|
12
13
|
personalDataEdit: 'Modificaciòn de Datos Personales',
|