@fto-consult/expo-ui 1.0.31 → 1.0.32

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": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -3,7 +3,7 @@ import { AppState,Linking,BackHandler,} from "react-native"
3
3
  import APP from "$capp";
4
4
  import {AppStateService,trackIDLE,stop as stopIDLE} from "$capp/idle";
5
5
  import { NavigationContainer} from '@react-navigation/native';
6
- import {navigationRef} from "$cnavigation/utils"
6
+ import {navigationRef} from "$cnavigation"
7
7
  import NetInfo from '$utils/NetInfo';
8
8
  import Auth from "$cauth";
9
9
  import {isNativeMobile} from "$cplatform";
@@ -5,9 +5,8 @@ import PropTypes from "prop-types";
5
5
  import {defaultObj,defaultStr,defaultNumber,defaultBool} from "$utils";
6
6
  import ScrollView from '$ecomponents/ScrollView';
7
7
  import View from "$ecomponents/View";
8
- import { useNavigation } from '$enavigation/utils';
8
+ import { useNavigation,getScreenProps } from '$cnavigation';
9
9
  import Fab from "$elayouts/Fab";
10
- import {getScreenProps} from '$enavigation/utils';
11
10
  import APP from "$capp";
12
11
  import AppBar,{createAppBarRef} from "$elayouts/AppBar";
13
12
  import ErrorBoundary from "$ecomponents/ErrorBoundary";
@@ -2,7 +2,7 @@
2
2
  // Use of this source code is governed by a BSD-style
3
3
  // license that can be found in the LICENSE file.
4
4
 
5
- import { isRouteActive} from "$enavigation/utils";
5
+ import { isRouteActive} from "$cnavigation";
6
6
  import "$cutils";
7
7
  import APP from "$capp";
8
8
  ///les items du drawer
@@ -3,7 +3,7 @@ import {SIGN_IN} from "./routes"
3
3
  import Screen from "$escreen";
4
4
  import {GROUP_NAMES} from "$escreens/utils";
5
5
  import Login from "$eauth/Login";
6
- import {getScreenProps} from "$enavigation/utils";
6
+ import {getScreenProps} from "$cnavigation";
7
7
  import {getTitle} from "./utils";
8
8
 
9
9
 
@@ -5,7 +5,7 @@ import React from "$react";
5
5
  import { BackHandler } from "react-native";
6
6
  import APP from "$capp";
7
7
  import {useDrawer} from "$ecomponents/Drawer";
8
- import {navigationRef,getScreenProps,setRoute,setActiveNavigation,setScreenOptions,goBack} from "$enavigation/utils";
8
+ import {navigationRef,getScreenProps,setRoute,setActiveNavigation,setScreenOptions,goBack} from "$cnavigation";
9
9
 
10
10
  export * from "./utils";
11
11