mg-library 1.0.631 → 1.0.633
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 +7 -7
- package/package.json +1 -1
package/blocks.js
CHANGED
|
@@ -246,17 +246,19 @@ export function MGLogin(props) {
|
|
|
246
246
|
control={control}
|
|
247
247
|
rules={{ maxLength: 50 }}
|
|
248
248
|
render={({ field: { onChange, value } }) => (
|
|
249
|
-
|
|
249
|
+
|
|
250
|
+
<NBInput placeholder="Test" />
|
|
251
|
+
|
|
252
|
+
/* <NBInput
|
|
250
253
|
size="lg"
|
|
251
254
|
py={3}
|
|
252
255
|
placeholder={mgFunctionsLib.i18nString('userName', props.language)}
|
|
253
256
|
onChangeText={onChange}
|
|
254
257
|
value={value}
|
|
255
|
-
|
|
256
|
-
/>
|
|
258
|
+
/> */
|
|
257
259
|
)}
|
|
258
260
|
name="userName" />
|
|
259
|
-
|
|
261
|
+
{/* {props.useNumericKeyboardOnPassword &&
|
|
260
262
|
<Controller
|
|
261
263
|
control={control}
|
|
262
264
|
rules={{ maxLength: 50 }}
|
|
@@ -270,7 +272,6 @@ export function MGLogin(props) {
|
|
|
270
272
|
secureTextEntry
|
|
271
273
|
maxLength={12}
|
|
272
274
|
keyboardType='numeric'
|
|
273
|
-
style={{ outlineWidth: 0 }}
|
|
274
275
|
/>
|
|
275
276
|
)}
|
|
276
277
|
name='password' />
|
|
@@ -288,11 +289,10 @@ export function MGLogin(props) {
|
|
|
288
289
|
value={value}
|
|
289
290
|
secureTextEntry
|
|
290
291
|
maxLength={12}
|
|
291
|
-
style={{ outlineWidth: 0 }}
|
|
292
292
|
/>
|
|
293
293
|
)}
|
|
294
294
|
name="password" />
|
|
295
|
-
}
|
|
295
|
+
} */}
|
|
296
296
|
</MGCard>
|
|
297
297
|
</View>
|
|
298
298
|
</View>
|