@fto-consult/expo-ui 6.79.0 → 6.79.2
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
@@ -408,7 +408,7 @@ const DatagridFactory = (Factory)=>{
|
|
408
408
|
const hasFootersFields = this.hasFootersFields();
|
409
409
|
const datagridHeader = <View testID={testID+"_HeaderContainer"} pointerEvents={pointerEvents} style={[styles.datagridHeader]}>
|
410
410
|
<ScrollView testID={testID+"_HeaderScrollView"} horizontal contentContainerStyle={StyleSheet.flatten([styles.contentContainerStyle,styles.minW100])}>
|
411
|
-
<View testID={testID+"_HeaderContentContainer"} style={[styles.table,styles.pullRight]}>
|
411
|
+
<View testID={testID+"_HeaderContentContainer"} style={[styles.table,theme.styles.ph1,styles.pullRight]}>
|
412
412
|
{/*this.renderDataSourceSelector()*/}
|
413
413
|
<View testID={testID+"_HeaderQueryLimit"} style={[styles.paginationItem]}>
|
414
414
|
{this.renderQueryLimit(this.getStateDataSize().formatNumber())}
|
@@ -2430,6 +2430,7 @@ export default class CommonDatagridComponent extends AppComponent {
|
|
2430
2430
|
/>
|
2431
2431
|
}
|
2432
2432
|
canShowFooters(){
|
2433
|
+
if(!this.hasFootersFields()) return false;
|
2433
2434
|
return this.state.showFooters || this.hasSectionListData() && this.state.displayOnlySectionListHeaders;
|
2434
2435
|
}
|
2435
2436
|
canShowFilters(){
|