mg-library 1.0.433 → 1.0.434

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.
Files changed (2) hide show
  1. package/blocks.js +2 -2
  2. package/package.json +1 -1
package/blocks.js CHANGED
@@ -172,7 +172,7 @@ export function MGLogin(props) {
172
172
  />
173
173
  )}
174
174
  name="userName" />
175
- {useNumericKeyboardOnPassword &&
175
+ {props.useNumericKeyboardOnPassword &&
176
176
  <Controller
177
177
  control={control}
178
178
  rules={{ maxLength: 50 }}
@@ -189,7 +189,7 @@ export function MGLogin(props) {
189
189
  )}
190
190
  name="password" />
191
191
  }
192
- {!useNumericKeyboardOnPassword &&
192
+ {!props.useNumericKeyboardOnPassword &&
193
193
  <Controller
194
194
  control={control}
195
195
  rules={{ maxLength: 50 }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mg-library",
3
- "version": "1.0.433",
3
+ "version": "1.0.434",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {