@fto-consult/expo-ui 2.9.0 → 2.9.1
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/package.json
CHANGED
|
@@ -1458,7 +1458,7 @@ export default class CommonDatagridComponent extends AppComponent {
|
|
|
1458
1458
|
onPress = {sortMe}
|
|
1459
1459
|
primary
|
|
1460
1460
|
/>: null}
|
|
1461
|
-
<Label primary={isColumnSorted}>{ret}</Label>
|
|
1461
|
+
<Label textBold style={[{fontSize:13}]} primary={isColumnSorted}>{ret}</Label>
|
|
1462
1462
|
</>
|
|
1463
1463
|
</TouchableRipple>
|
|
1464
1464
|
}
|
|
@@ -213,7 +213,7 @@ const TableComponent = React.forwardRef(({containerProps,renderEmpty,isRowSelect
|
|
|
213
213
|
React.setRef(tableRef,context);
|
|
214
214
|
const cStyle = {width:listWidth}
|
|
215
215
|
const absoluteScrollViewRef = React.useRef(null);
|
|
216
|
-
return <View testID= {testID+"_Container"} {...containerProps} style={[styles.container,{alignItems:'stretch'},containerProps.style
|
|
216
|
+
return <View testID= {testID+"_Container"} {...containerProps} style={[styles.container,{alignItems:'stretch'},containerProps.style]}>
|
|
217
217
|
<RNView style={[cStyle]} testID={testID+"_Headers_ScrollViewContainer"}>
|
|
218
218
|
<ScrollView
|
|
219
219
|
testID={testID+"_HeaderScrollView"}
|
|
@@ -352,7 +352,8 @@ const styles = StyleSheet.create({
|
|
|
352
352
|
width : '100%',
|
|
353
353
|
minHeight : 300,
|
|
354
354
|
paddingBottom : 50,
|
|
355
|
-
|
|
355
|
+
paddingLeft : 10,
|
|
356
|
+
paddingRight : 10,
|
|
356
357
|
flex : 1,
|
|
357
358
|
position : 'relative',
|
|
358
359
|
},
|
|
@@ -107,8 +107,8 @@ const UserProfileAvatarComponent = React.forwardRef(({drawerRef,...props},ref)=>
|
|
|
107
107
|
}}
|
|
108
108
|
>
|
|
109
109
|
<View style={styles.labelContainer}>
|
|
110
|
-
<Label splitText style={{color:theme.colors.primaryOnSurface}}>{pseudo}</Label>
|
|
111
|
-
<Label splitText style={{fontSize:12,color:theme.colors.secondaryOnSurface,marginTop:6}}>
|
|
110
|
+
<Label splitText numberOfLines={1} style={{color:theme.colors.primaryOnSurface,fontSize:14}}>{pseudo}</Label>
|
|
111
|
+
<Label splitText numberOfLines={1} style={{fontSize:12,color:theme.colors.secondaryOnSurface,marginTop:6}}>
|
|
112
112
|
{label}
|
|
113
113
|
</Label>
|
|
114
114
|
{deviceName && <Label.withRef textBold splitText title={"Identifiant unique de l'application, installé sur cet appareil"} ref={deviceNameRef} secondary style={{fontSize:10}}>
|