@fto-consult/expo-ui 6.53.2 → 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.2",
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",
@@ -2904,7 +2904,7 @@ export default class CommonDatagridComponent extends AppComponent {
2904
2904
  return this.getSectionListHeaderProp(args);
2905
2905
  }
2906
2906
  const config = isObj(args.config) && Object.size(args.config,true)? args.config : this.getConfig();
2907
- const displayGroupLabels = "displayGroupLabels" in config? config.displayGroupLabels : true;
2907
+ const displayGroupLabels = "displayGroupLabels" in config? config.displayGroupLabels : false;
2908
2908
  const displayGroupLabelsSeparator = typeof config.displayGroupLabelsSeparator =='string'? config.displayGroupLabelsSeparator : arrayValueSeparator;
2909
2909
  const {fields} = args;
2910
2910
  const d = [];