@fto-consult/expo-ui 2.23.10 → 2.23.11
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
|
@@ -1245,6 +1245,7 @@ export default class CommonDatagridComponent extends AppComponent {
|
|
|
1245
1245
|
m.unshift({
|
|
1246
1246
|
text : "Fonctions d'aggrégation",
|
|
1247
1247
|
icon : "material-functions",
|
|
1248
|
+
style : [{fontWeight:'bold'}],
|
|
1248
1249
|
//divider : true,
|
|
1249
1250
|
});
|
|
1250
1251
|
if(withDivider !== false){
|
|
@@ -284,14 +284,13 @@ const DatagridFactory = (Factory)=>{
|
|
|
284
284
|
,icon : showFooters?'view-column':'view-module'
|
|
285
285
|
,text : (showFooters?'Masquer/Ligne des totaux':'Afficher/Ligne des totaux')
|
|
286
286
|
} : null,
|
|
287
|
-
...this.getAggregatorFunctionsMenuItems(),
|
|
288
287
|
...(selectableMultiple ? restItems : [])
|
|
289
288
|
] : visibleColumns}
|
|
290
289
|
|
|
291
290
|
/>
|
|
292
291
|
{this.renderSectionListMenu()}
|
|
293
292
|
{this.renderDisplayTypes()}
|
|
294
|
-
{
|
|
293
|
+
{this.renderAggregatorFunctionsMenu()}
|
|
295
294
|
<View testID={testID+"_HeaderPagination"} style = {styles.paginationItem}>
|
|
296
295
|
<BottomSheetMenu
|
|
297
296
|
testID={testID+"_HeaderMenus"}
|