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 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
@@ -7,6 +7,7 @@ export const strings = {
7
7
  credentials: 'Credentials',
8
8
  userName: 'User Name',
9
9
  password: 'Password',
10
+ passwordAlphanumeric: 'Alphanumeric Password',
10
11
  welcome: 'Welcome!',
11
12
  personalData: 'Personal Data',
12
13
  personalDataEdit: 'Personal Data Edition',
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',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mg-library",
3
- "version": "1.0.758",
3
+ "version": "1.0.760",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "react-native": "index.js",