@fto-consult/expo-ui 6.37.10 → 6.38.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.alias.js
CHANGED
@@ -15,10 +15,7 @@ module.exports = (opts)=>{
|
|
15
15
|
const expoUI = require("./expo-ui-path")();
|
16
16
|
const euCommon = path.resolve(expoUI,"node_modules","@fto-consult","common");
|
17
17
|
const cpath = fs.existsSync(euCommon)? path.resolve(euCommon,"babel.config.alias") : "@fto-consult/common/babel.config.alias";
|
18
|
-
|
19
|
-
if(fs.existsSync(mainPackageJSON)){
|
20
|
-
opts.$packageJSON = mainPackageJSON;
|
21
|
-
}
|
18
|
+
|
22
19
|
const r = require(`${cpath}`)(opts);
|
23
20
|
const expo = path.resolve(expoUI,"src");
|
24
21
|
r["$ecomponents"] = r["$expo-components"] = path.resolve(expo,"components");
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fto-consult/expo-ui",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.38.1",
|
4
4
|
"description": "Bibliothèque de composants UI Expo,react-native",
|
5
5
|
"main": "main",
|
6
6
|
"scripts": {
|
@@ -45,7 +45,7 @@
|
|
45
45
|
"update-appexchart": "npm run update-apexchart",
|
46
46
|
"delete-node-modules": "rimraf ./**/node_modules",
|
47
47
|
"modifier-url-remote-git": "git remote set-url origin 'https://borispipo@github.com/borispipo/smart-eneo.git'",
|
48
|
-
"update": "npm i expo @emotion/native@latest react-native-big-list@latest apexcharts@latest file-saver@latest fs-extra@latest google-libphonenumber@latest @pchmn/expo-material3-theme@latest @emotion/native@latest @fto-consult/common@latest react-native-blob-util react-native-gesture-handler@latest react-native-iphone-x-helper@latest react-native-mime-types@latest react-native-paper@latest react-native-paper-dates@latest @react-navigation/native@latest @react-navigation/native-stack@latest react-virtuoso@latest tippy.js@latest websql@latest xlsx@latest && npx expo install --fix && npm run update-apexchart"
|
48
|
+
"update": "npm i expo @emotion/native@latest react-native-big-list@latest apexcharts@latest file-saver@latest fs-extra@latest google-libphonenumber@latest @pchmn/expo-material3-theme@latest @emotion/native@latest @fto-consult/common@latest @react-navigation/stack react-native-blob-util react-native-gesture-handler@latest react-native-iphone-x-helper@latest react-native-mime-types@latest react-native-paper@latest react-native-paper-dates@latest @react-navigation/native@latest @react-navigation/native-stack@latest react-virtuoso@latest tippy.js@latest websql@latest xlsx@latest && npx expo install --fix && npm run update-apexchart"
|
49
49
|
},
|
50
50
|
"bin": {
|
51
51
|
"expo-ui": "./bin/index.js"
|
@@ -70,7 +70,7 @@
|
|
70
70
|
"@expo/html-elements": "^0.5.1",
|
71
71
|
"@expo/vector-icons": "^13.0.0",
|
72
72
|
"@faker-js/faker": "^8.0.2",
|
73
|
-
"@fto-consult/common": "^3.
|
73
|
+
"@fto-consult/common": "^3.39.1",
|
74
74
|
"@pchmn/expo-material3-theme": "^1.3.1",
|
75
75
|
"@react-native-async-storage/async-storage": "1.18.2",
|
76
76
|
"@react-native-community/datetimepicker": "7.2.0",
|
@@ -78,6 +78,7 @@
|
|
78
78
|
"@react-native/assets-registry": "^0.72.0",
|
79
79
|
"@react-navigation/native": "^6.1.7",
|
80
80
|
"@react-navigation/native-stack": "^6.9.13",
|
81
|
+
"@react-navigation/stack": "^6.3.17",
|
81
82
|
"@shopify/flash-list": "1.4.3",
|
82
83
|
"apexcharts": "^3.42.0",
|
83
84
|
"expo": "^49.0.11",
|
@@ -108,7 +109,7 @@
|
|
108
109
|
"react-native-iphone-x-helper": "^1.3.1",
|
109
110
|
"react-native-mime-types": "^2.4.0",
|
110
111
|
"react-native-paper": "^5.10.4",
|
111
|
-
"react-native-paper-dates": "^0.19.
|
112
|
+
"react-native-paper-dates": "^0.19.3",
|
112
113
|
"react-native-reanimated": "~3.3.0",
|
113
114
|
"react-native-safe-area-context": "4.6.3",
|
114
115
|
"react-native-screens": "~3.22.0",
|
package/src/navigation/index.js
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
import initScreens from "$escreens";
|
2
2
|
import {handleContent,sanitizeName} from '$escreens';
|
3
|
-
import {
|
3
|
+
import {setInitialRouteName } from "$cnavigation";
|
4
4
|
import React from "$react";
|
5
5
|
import DrawerNavigator from "./Drawer";
|
6
6
|
import useContext from "$econtext/hooks";
|
7
7
|
import { MainNavigationProvider } from "./hooks";
|
8
8
|
import {isWeb,isAndroid} from "$cplatform";
|
9
|
+
import Stack from "./Stack";
|
9
10
|
|
10
11
|
export * from "./hooks";
|
11
12
|
|