mg-library 1.0.632 → 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 -4
- package/package.json +1 -1
package/blocks.js
CHANGED
|
@@ -246,16 +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
|
-
/>
|
|
258
|
+
/> */
|
|
256
259
|
)}
|
|
257
260
|
name="userName" />
|
|
258
|
-
|
|
261
|
+
{/* {props.useNumericKeyboardOnPassword &&
|
|
259
262
|
<Controller
|
|
260
263
|
control={control}
|
|
261
264
|
rules={{ maxLength: 50 }}
|
|
@@ -289,7 +292,7 @@ export function MGLogin(props) {
|
|
|
289
292
|
/>
|
|
290
293
|
)}
|
|
291
294
|
name="password" />
|
|
292
|
-
}
|
|
295
|
+
} */}
|
|
293
296
|
</MGCard>
|
|
294
297
|
</View>
|
|
295
298
|
</View>
|