@fto-consult/expo-ui 2.23.6 → 2.23.7

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": "2.23.6",
3
+ "version": "2.23.7",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -349,8 +349,12 @@ export default class TableDataScreenComponent extends FormDataScreen{
349
349
  rActionsArg.formProps = formProps;
350
350
  return rActionsArg;
351
351
  }
352
- renderTabs(){
353
- return null;
352
+ renderTabs(args){
353
+ const tabs = this.getMainProps().tabs;
354
+ if(typeof tabs =='function'){
355
+ return tabs(args);
356
+ }
357
+ return tabs;
354
358
  }
355
359
  handleCustomRender(){
356
360
  return true;