mg-library 1.0.754 → 1.0.756
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 +13 -12
- package/package.json +1 -1
package/blocks.js
CHANGED
|
@@ -322,18 +322,19 @@ export function MGLogin(props) {
|
|
|
322
322
|
name="password" />
|
|
323
323
|
}
|
|
324
324
|
</MGCard>
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
325
|
+
<View style={{ flex: 1, alignItems: 'center' }}>
|
|
326
|
+
<Button
|
|
327
|
+
action="primary"
|
|
328
|
+
variant="outline"
|
|
329
|
+
w={50}
|
|
330
|
+
h={50}
|
|
331
|
+
onPress={() => {
|
|
332
|
+
setIsKeyboardNumericForPassword(!isKeyboardNumericForPassword)
|
|
333
|
+
}}
|
|
334
|
+
>
|
|
335
|
+
<Icon as={MaterialCommunityIcons} name="keyboard" mr="$2" color="$primary500" />
|
|
336
|
+
</Button>
|
|
337
|
+
</View>
|
|
337
338
|
</View>
|
|
338
339
|
</View>
|
|
339
340
|
</Box>
|