@fto-consult/expo-ui 6.64.20 → 6.64.21

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.64.20",
3
+ "version": "6.64.21",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "main",
6
6
  "scripts": {
@@ -71,7 +71,7 @@
71
71
  "@expo/html-elements": "^0.5.1",
72
72
  "@expo/vector-icons": "^13.0.0",
73
73
  "@faker-js/faker": "^8.0.2",
74
- "@fto-consult/common": "^3.54.3",
74
+ "@fto-consult/common": "^3.55.1",
75
75
  "@pchmn/expo-material3-theme": "^1.3.1",
76
76
  "@react-native-async-storage/async-storage": "1.18.2",
77
77
  "@react-native-community/datetimepicker": "7.2.0",
@@ -56,6 +56,7 @@ const DrawerNavigator = React.forwardRef(({content,children:customChildren,state
56
56
  if(prevIsLoggedIn === isLoggedIn) return;
57
57
  navigate("Home");
58
58
  },[isLoggedIn]);
59
+ console.log(isLoggedIn," is loggged in heeeinddddd ",Auth.isLoggedIn(),Auth.isMultiUsersAllowed());
59
60
  if(!isLoggedIn) {
60
61
  return <Login withPortal
61
62
  onSuccess = {(data)=>{
@@ -64,6 +64,7 @@ export default function ScreenWrapperNavComponent(_props){
64
64
  setScreenOptions(options);
65
65
  const allowDrawer = typeof options.allowDrawer ==='boolean'? options.allowDrawer : typeof options.withDrawer =='boolean'? options.withDrawer : typeof Screen.allowDrawer =='boolean'? Screen.allowDrawer : typeof Screen.withDrawer =='boolean' ? Screen.withDrawer : Screen.isModalScreen == true ? false : true;
66
66
  const withFab = typeof options.withFab ==='boolean' ? options.withFab : typeof Screen.withFab =='boolean'? Screen.withFab : allowDrawer;
67
+ console.log(props," ddddd is props of screeens ",authRequired,Screen,allowDrawer,options,rest)
67
68
  return <Screen
68
69
  withFab = {withFab}
69
70
  groupName = {groupName}