@fto-consult/expo-ui 6.73.3 → 6.73.4

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.73.3",
3
+ "version": "6.73.4",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "main",
6
6
  "scripts": {
@@ -69,7 +69,6 @@ const useGetItems = (options)=>{
69
69
  if(!isObj(table) || !isNonNullString(table.drawerSection)) return null;
70
70
  const tableName = defaultStr(table.table,table.tableName,index).trim();
71
71
  if(typeof table.showInDrawer =='function' && table.showInDrawer() === false) return;
72
- console.log(Auth.isTableDataAllowed({table:tableName})," is table data allowed ",tableDataPerms)
73
72
  if(!tableName || table.showInDrawer === false || !Auth.isTableDataAllowed({table:tableName})){
74
73
  return;
75
74
  }
@@ -9,6 +9,7 @@ import appConfig from "$capp/config";
9
9
  import Table from "$ecomponents/Table";
10
10
  import React from "$react";
11
11
  import AutoLink from "$ecomponents/AutoLink";
12
+ import {Vertical} from "$ecomponents/AutoSizer";
12
13
 
13
14
  const openLibraries = require("./openLibraries");
14
15
 
@@ -52,7 +53,7 @@ export default function OpenLibrariesScreen({testID,...props}){
52
53
  <Label testID={testID+"_OpenLibraries_HeaderLabel"} primary textBold>{appConfig.name+" "}</Label>
53
54
  <Label>est bâti sur un ensemble d'outils et librairies open Source</Label>
54
55
  </View>
55
- <View testID={testID+"_OpenLibrariesContent"} style={[theme.styles.w100,theme.styles.pv1]}>
56
+ <Vertical testID={testID+"_OpenLibrariesContent"} style={[theme.styles.w100,theme.styles.pv1]}>
56
57
  <Table
57
58
  sortable = {false}
58
59
  columns = {columns}
@@ -79,7 +80,7 @@ export default function OpenLibrariesScreen({testID,...props}){
79
80
  return null;
80
81
  }}
81
82
  />
82
- </View>
83
+ </Vertical>
83
84
  </Screen>
84
85
  }
85
86