mg-library 1.0.630 → 1.0.631
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 +3 -21
- package/package.json +1 -1
package/blocks.js
CHANGED
|
@@ -252,6 +252,7 @@ export function MGLogin(props) {
|
|
|
252
252
|
placeholder={mgFunctionsLib.i18nString('userName', props.language)}
|
|
253
253
|
onChangeText={onChange}
|
|
254
254
|
value={value}
|
|
255
|
+
style={{ outlineWidth: 0 }}
|
|
255
256
|
/>
|
|
256
257
|
)}
|
|
257
258
|
name="userName" />
|
|
@@ -269,6 +270,7 @@ export function MGLogin(props) {
|
|
|
269
270
|
secureTextEntry
|
|
270
271
|
maxLength={12}
|
|
271
272
|
keyboardType='numeric'
|
|
273
|
+
style={{ outlineWidth: 0 }}
|
|
272
274
|
/>
|
|
273
275
|
)}
|
|
274
276
|
name='password' />
|
|
@@ -286,6 +288,7 @@ export function MGLogin(props) {
|
|
|
286
288
|
value={value}
|
|
287
289
|
secureTextEntry
|
|
288
290
|
maxLength={12}
|
|
291
|
+
style={{ outlineWidth: 0 }}
|
|
289
292
|
/>
|
|
290
293
|
)}
|
|
291
294
|
name="password" />
|
|
@@ -657,27 +660,6 @@ export function MGPressable({ children, style, activeOpacity, ...otherProps }) {
|
|
|
657
660
|
);
|
|
658
661
|
}
|
|
659
662
|
|
|
660
|
-
/* export function MGFlatListHeader(props) {
|
|
661
|
-
return (
|
|
662
|
-
<View style={{ flex: 1 }}>
|
|
663
|
-
{props.sessionHeader}
|
|
664
|
-
{props.goBack}
|
|
665
|
-
{props.beforeTitle != undefined &&
|
|
666
|
-
props.beforeTitle
|
|
667
|
-
}
|
|
668
|
-
<View style={{ marginHorizontal: 10, marginBottom: 20, paddingHorizontal: 10, paddingVertical: 10, borderColor: props.colors.primary['500'], borderRadius: 10, borderStyle: 'solid', borderWidth: 1 }}>
|
|
669
|
-
<MGText category='h6' style={{ marginLeft: 10 }}>{props.title}</MGText>
|
|
670
|
-
{props.subTitle != undefined &&
|
|
671
|
-
props.subTitle
|
|
672
|
-
}
|
|
673
|
-
</View>
|
|
674
|
-
{props.afterTitle != undefined &&
|
|
675
|
-
props.afterTitle
|
|
676
|
-
}
|
|
677
|
-
</View>
|
|
678
|
-
)
|
|
679
|
-
} */
|
|
680
|
-
|
|
681
663
|
export function MGFlatListHeader(props) {
|
|
682
664
|
return (
|
|
683
665
|
<View style={[{ flex: 1 }, props.containerStyle]}>
|