@fto-consult/expo-ui 8.61.11 → 8.62.0

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": "8.61.11",
3
+ "version": "8.62.0",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "react-native-paper-doc": "https://github.com/callstack/react-native-paper/tree/main/docs/docs/guides",
6
6
  "scripts": {
@@ -374,7 +374,7 @@ const DatagridFactory = (Factory)=>{
374
374
  const showFooters = this.canShowFooters();
375
375
  let restItems = [];
376
376
  let max = this.getMaxSelectableRows();
377
- if(max && this.isSelectableMultiple()){
377
+ if(max && this.isSelectableMultiple() && this.canRenderActions()){
378
378
  max = max.formatNumber();
379
379
  restItems = [
380
380
  {
@@ -165,7 +165,7 @@ const DatagridFactory = (Factory)=>{
165
165
  let max = this.getMaxSelectableRows();
166
166
  if(selectableMultiple && max){
167
167
  max = max.formatNumber();
168
- if(selectableMultiple && !canRenderChart){
168
+ if(selectableMultiple && !canRenderChart && this.canRenderActions()){
169
169
  restItems.push({
170
170
  label : "Sélectionner "+max.formatNumber(),
171
171
  icon : "select-all",