@fto-consult/expo-ui 6.12.0 → 6.12.1

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/babel.config.js CHANGED
@@ -53,7 +53,7 @@ module.exports = function(api,opts) {
53
53
  if(!indexContent || (!indexContent.includes("table") && !indexContent.includes("tableName"))){
54
54
  return;
55
55
  }
56
- getTableJSContent+=`\tif(tableName === "${tableName}"){return require("./${table}").default;}\n`;
56
+ getTableJSContent+=`\t\tif(tableName === "${tableName}"){return require("./${table}").default;}\n`;
57
57
  });
58
58
  //on génère le fichier getTable des tables data de l'application
59
59
  if(getTableJSContent){
@@ -61,8 +61,7 @@ module.exports = function(api,opts) {
61
61
  module.exports = function(tableName){
62
62
  \tif(!tableName || typeof tableName !=="string") return null;
63
63
  \ttableName = tableName.toUpperCase().trim();
64
- ${getTableJSContent}
65
- \treturn null;
64
+ \t${getTableJSContent}\treturn null;
66
65
  }
67
66
  `);
68
67
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "6.12.0",
3
+ "version": "6.12.1",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -72,7 +72,7 @@
72
72
  "@react-navigation/native": "^6.1.7",
73
73
  "@react-navigation/native-stack": "^6.9.13",
74
74
  "@shopify/flash-list": "1.4.3",
75
- "apexcharts": "^3.41.0",
75
+ "apexcharts": "^3.41.1",
76
76
  "expo": "^49.0.6",
77
77
  "expo-camera": "~13.4.2",
78
78
  "expo-clipboard": "~4.3.0",
@@ -95,7 +95,7 @@
95
95
  "react-native": "0.72.3",
96
96
  "react-native-big-list": "^1.6.1",
97
97
  "react-native-blob-util": "^0.18.6",
98
- "react-native-gesture-handler": "^2.12.0",
98
+ "react-native-gesture-handler": "^2.12.1",
99
99
  "react-native-iphone-x-helper": "^1.3.1",
100
100
  "react-native-mime-types": "^2.4.0",
101
101
  "react-native-paper": "^5.9.1",
@@ -32,7 +32,7 @@ const DrawerNavigator = React.forwardRef(({content,children:customChildren,state
32
32
  refreshItemsRef.current = false;
33
33
  };
34
34
  const onResizePage = ()=>{
35
- forceRender();
35
+ //forceRender();
36
36
  }
37
37
  APP.on(APP.EVENTS.AUTH_LOGOUT_USER,onLogoutUser);
38
38
  const bindResize = Dimensions.addEventListener("change",()=>{