@fto-consult/expo-ui 6.53.1 → 6.53.3

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "6.53.1",
3
+ "version": "6.53.3",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "main",
6
6
  "scripts": {
@@ -1489,7 +1489,7 @@ export default class CommonDatagridComponent extends AppComponent {
1489
1489
  type : "switch",
1490
1490
  text : "Afficher les libelés de groupées",
1491
1491
  tooltip : "Afficher/Masquer les noms de colonnes sur les entêtes des valeurs groupées",
1492
- defaultValue : 1,
1492
+ defaultValue : 0,
1493
1493
  },
1494
1494
  displayGroupLabelsSeparator : {
1495
1495
  type : "text",
@@ -2552,7 +2552,8 @@ export default class CommonDatagridComponent extends AppComponent {
2552
2552
  },100);
2553
2553
  return false;
2554
2554
  },
2555
- title : title,
2555
+ title,
2556
+ label,
2556
2557
  icon : visible?CHECKED_ICON_NAME : null,
2557
2558
  right : false ? (p)=><Icon {...p} icon="material-gear"
2558
2559
  onPress = {(e)=>{console.log(e," is pressed toddd config")}}
@@ -2903,7 +2904,7 @@ export default class CommonDatagridComponent extends AppComponent {
2903
2904
  return this.getSectionListHeaderProp(args);
2904
2905
  }
2905
2906
  const config = isObj(args.config) && Object.size(args.config,true)? args.config : this.getConfig();
2906
- const displayGroupLabels = "displayGroupLabels" in config? config.displayGroupLabels : true;
2907
+ const displayGroupLabels = "displayGroupLabels" in config? config.displayGroupLabels : false;
2907
2908
  const displayGroupLabelsSeparator = typeof config.displayGroupLabelsSeparator =='string'? config.displayGroupLabelsSeparator : arrayValueSeparator;
2908
2909
  const {fields} = args;
2909
2910
  const d = [];