@fto-consult/expo-ui 6.76.1 → 6.76.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "6.76.1",
3
+ "version": "6.76.2",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "main",
6
6
  "scripts": {
@@ -655,12 +655,12 @@ export default class TableDataScreenComponent extends FormDataScreen{
655
655
  return this.props.newAction !== false ? true : false;
656
656
  }
657
657
  isMobileOrTabletMedia(){
658
- const r = this.getRenderType();
658
+ const r = this.getRenderTabsType();
659
659
  if(r =="mobile") return true;
660
660
  if(r =="desktop") return false;
661
661
  return isMobileOrTabletMedia();
662
662
  }
663
- getRenderType (){
663
+ getRenderTabsType (){
664
664
  const r = defaultStr(this.props.renderTabsType).toLowerCase();
665
665
  if(!r || !(defaultRendersTypes.includes(r))) return "responsive";
666
666
  return r;