mg-library 1.0.430 → 1.0.432
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 -2
- package/mg-library.rar +0 -0
- package/package.json +1 -1
package/blocks.js
CHANGED
@@ -181,8 +181,7 @@ export function MGLogin(props) {
|
|
181
181
|
placeholder={mgFunctionsLib.i18nString('password', props.language)}
|
182
182
|
onChangeText={onChange}
|
183
183
|
secureTextEntry={true}
|
184
|
-
maxLength={12}
|
185
|
-
keyboardType='numeric'
|
184
|
+
maxLength={12}
|
186
185
|
value={value}
|
187
186
|
/>
|
188
187
|
)}
|
@@ -577,4 +576,16 @@ export function MGActivityIndicator(props) {
|
|
577
576
|
<ActivityIndicator size="large" color={props.theme['color-primary-500']} />
|
578
577
|
</View>
|
579
578
|
)
|
579
|
+
}
|
580
|
+
|
581
|
+
export function MGCardHeader(props) {
|
582
|
+
return (
|
583
|
+
<>
|
584
|
+
<View style={{ flexDirection: 'row', marginVertical: 10, marginLeft: 10 }}>
|
585
|
+
<View style={{ flexGrow: 0.95 }}>
|
586
|
+
<Text category='h6'>{props.title}</Text>
|
587
|
+
</View>
|
588
|
+
</View>
|
589
|
+
</>
|
590
|
+
);
|
580
591
|
}
|
package/mg-library.rar
CHANGED
Binary file
|