mg-library 1.0.433 → 1.0.435
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 +2 -2
- package/mg-library.rar +0 -0
- package/package.json +6 -3
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/mg-library.rar
CHANGED
Binary file
|
package/package.json
CHANGED
@@ -1,11 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "mg-library",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.435",
|
4
4
|
"description": "",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1"
|
8
8
|
},
|
9
9
|
"author": "",
|
10
|
-
"license": "ISC"
|
11
|
-
|
10
|
+
"license": "ISC",
|
11
|
+
"dependencies": {
|
12
|
+
"expo": "^52.0.23"
|
13
|
+
}
|
14
|
+
}
|