@fto-consult/expo-ui 6.40.5 → 6.41.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/bin/create-app.js +1 -0
- package/package.json +2 -2
- package/src/navigation/Stack.js +4 -4
- package/src/navigation/index.js +1 -1
package/bin/create-app.js
CHANGED
@@ -34,6 +34,7 @@ module.exports = function(parsedArgs,{projectRoot:root}){
|
|
34
34
|
"main": "node_modules/expo/AppEntry.js",
|
35
35
|
"scripts" : {
|
36
36
|
start : "npx expo start -c",
|
37
|
+
"dev" : "npx expo start --no-dev --minify -c",
|
37
38
|
"serve-web" : "npx serve web-build --single",
|
38
39
|
"build-web" : "npx expo export:web",
|
39
40
|
"build-android" : "npx eas build --platform android",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fto-consult/expo-ui",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.41.1",
|
4
4
|
"description": "Bibliothèque de composants UI Expo,react-native",
|
5
5
|
"main": "main",
|
6
6
|
"scripts": {
|
@@ -8,7 +8,6 @@
|
|
8
8
|
"publish1": "npm publish --access=public",
|
9
9
|
"unpublish": "npm -f unpublish @fto-consult/expo-ui",
|
10
10
|
"build-web": "",
|
11
|
-
"dev": "npx expo start -c --no-minify",
|
12
11
|
"start": "npx expo start --dev --no-minify",
|
13
12
|
"start-d": "npx expo start -c --no-dev --no-minify",
|
14
13
|
"start-p": "npm run start-d",
|
@@ -44,6 +43,7 @@
|
|
44
43
|
"update-apexchart": "node ./bin/update-appex-chart.js",
|
45
44
|
"update-appexchart": "npm run update-apexchart",
|
46
45
|
"delete-node-modules": "rimraf ./**/node_modules",
|
46
|
+
"dev" : "npx expo start --no-dev --minify -c",
|
47
47
|
"modifier-url-remote-git": "git remote set-url origin 'https://borispipo@github.com/borispipo/smart-eneo.git'",
|
48
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 && npm run find-licenses"
|
49
49
|
},
|
package/src/navigation/Stack.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
import { createNativeStackNavigator } from '@react-navigation/native-stack';
|
2
|
-
|
1
|
+
//import { createNativeStackNavigator } from '@react-navigation/native-stack';
|
2
|
+
import { createStackNavigator } from '@react-navigation/stack';
|
3
3
|
|
4
|
-
|
5
|
-
export const Stack = createNativeStackNavigator();
|
4
|
+
export const Stack = createStackNavigator()
|
5
|
+
//export const Stack = createNativeStackNavigator();
|
6
6
|
|
7
7
|
export default Stack;
|
package/src/navigation/index.js
CHANGED
@@ -36,7 +36,7 @@ export default function NavigationComponent (props){
|
|
36
36
|
header : ()=> null,
|
37
37
|
headerStyle: { backgroundColor: theme.colors.primary},
|
38
38
|
presentation : isAndroid() || isWeb()? "modal":"default",
|
39
|
-
animationEnabled :
|
39
|
+
animationEnabled : !isWeb(),
|
40
40
|
...Object.assign({},screenOptions)
|
41
41
|
}
|
42
42
|
const cardStyle = { backgroundColor: 'transparent' };
|