mg-library 1.0.427 → 1.0.429
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 +5 -0
- package/package.json +1 -1
package/blocks.js
CHANGED
@@ -194,6 +194,8 @@ export function MGLogin(props) {
|
|
194
194
|
placeholder={mgFunctionsLib.i18nString('password', props.language)}
|
195
195
|
onChangeText={onChange}
|
196
196
|
secureTextEntry={true}
|
197
|
+
maxLength={12}
|
198
|
+
keyboardType='numeric'
|
197
199
|
value={value}
|
198
200
|
/>
|
199
201
|
)}
|
@@ -540,6 +542,9 @@ export function MGFlatListHeader(props) {
|
|
540
542
|
}
|
541
543
|
<View style={{ marginHorizontal: 10, marginBottom: 20, paddingHorizontal: 10, paddingVertical: 10, borderColor: props.theme['color-primary-500'], borderRadius: 10, borderStyle: 'solid', borderWidth: 1 }}>
|
542
544
|
<Text category='h6' style={{ marginLeft: 10 }}>{props.title}</Text>
|
545
|
+
{props.subTitle != undefined &&
|
546
|
+
props.subTitle
|
547
|
+
}
|
543
548
|
</View>
|
544
549
|
{props.afterTitle != undefined &&
|
545
550
|
props.afterTitle
|