@fto-consult/expo-ui 6.31.7 → 6.31.9
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/app.config.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fto-consult/expo-ui",
|
|
3
|
-
"version": "6.31.
|
|
3
|
+
"version": "6.31.9",
|
|
4
4
|
"description": "Bibliothèque de composants UI Expo,react-native",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -105,14 +105,14 @@
|
|
|
105
105
|
"react-native-iphone-x-helper": "^1.3.1",
|
|
106
106
|
"react-native-mime-types": "^2.4.0",
|
|
107
107
|
"react-native-paper": "^5.10.4",
|
|
108
|
-
"react-native-paper-dates": "^0.18.
|
|
108
|
+
"react-native-paper-dates": "^0.18.26",
|
|
109
109
|
"react-native-reanimated": "~3.3.0",
|
|
110
110
|
"react-native-safe-area-context": "4.6.3",
|
|
111
111
|
"react-native-screens": "~3.22.0",
|
|
112
112
|
"react-native-svg": "13.9.0",
|
|
113
113
|
"react-native-web": "~0.19.6",
|
|
114
114
|
"react-native-webview": "13.2.2",
|
|
115
|
-
"react-virtuoso": "^4.5.
|
|
115
|
+
"react-virtuoso": "^4.5.1",
|
|
116
116
|
"sharp-cli": "^4.1.1",
|
|
117
117
|
"tippy.js": "^6.3.7",
|
|
118
118
|
"websql": "^2.0.3",
|
package/src/context/Provider.js
CHANGED
|
@@ -36,7 +36,8 @@ import { prepareScreens } from "./TableData";
|
|
|
36
36
|
},
|
|
37
37
|
navigation : {
|
|
38
38
|
screens : {Array}, les écrans de navigation,
|
|
39
|
-
drawerItems : {object|array|function}, la fonction permettant d'obtenir les items du drawer principal de l'application
|
|
39
|
+
drawerItems : {object|array|function}, la fonction permettant d'obtenir les items du drawer principal de l'application,
|
|
40
|
+
containerProps : {object}, les props à passer au composant NavigationContainer de react-navigation
|
|
40
41
|
}
|
|
41
42
|
*/
|
|
42
43
|
const Provider = ({children,getTableData,handleHelpScreen,navigation,components,convertFiltersToSQL,getStructData,tablesData,structsData,...props})=>{
|
|
@@ -124,6 +125,8 @@ const Provider = ({children,getTableData,handleHelpScreen,navigation,components,
|
|
|
124
125
|
});
|
|
125
126
|
return [...r,...getMainScreens(handleHelpScreen)];
|
|
126
127
|
},[]);
|
|
128
|
+
navigation.containerProps = defaultObj(navigation.containerProps);
|
|
129
|
+
const {linking} = navigation;
|
|
127
130
|
return <ExpoUIContext.Provider
|
|
128
131
|
value={{
|
|
129
132
|
...props,
|
package/src/index.js
CHANGED
|
@@ -40,6 +40,7 @@ import FontIcon from "$ecomponents/Icon/Font";
|
|
|
40
40
|
import useContext from "$econtext/hooks";
|
|
41
41
|
import { GestureHandlerRootView } from 'react-native-gesture-handler';
|
|
42
42
|
import { StyleSheet } from "react-native";
|
|
43
|
+
import Logo from "$ecomponents/Logo";
|
|
43
44
|
export * from "./context";
|
|
44
45
|
|
|
45
46
|
let MAX_BACK_COUNT = 1;
|
|
@@ -60,7 +61,8 @@ const NAVIGATION_PERSISTENCE_KEY = 'NAVIGATION_STATE';
|
|
|
60
61
|
*/
|
|
61
62
|
function App({init:initApp,initialRouteName:appInitialRouteName,render,onMount}) {
|
|
62
63
|
AppStateService.init();
|
|
63
|
-
const {FontsIconsFilter,beforeExit,preferences:appPreferences,getStartedRouteName} = useContext();
|
|
64
|
+
const {FontsIconsFilter,beforeExit,preferences:appPreferences,navigation,getStartedRouteName} = useContext();
|
|
65
|
+
const {containerProps} = navigation;
|
|
64
66
|
const [initialState, setInitialState] = React.useState(undefined);
|
|
65
67
|
const appReadyRef = React.useRef(true);
|
|
66
68
|
const [state,setState] = React.useState({
|
|
@@ -256,10 +258,14 @@ function App({init:initApp,initialRouteName:appInitialRouteName,render,onMount})
|
|
|
256
258
|
const child = isLoaded ? <NavigationContainer
|
|
257
259
|
ref={navigationRef}
|
|
258
260
|
initialState={initialState}
|
|
259
|
-
|
|
261
|
+
{...containerProps}
|
|
262
|
+
onStateChange={(state,...rest) =>{
|
|
260
263
|
setSession(NAVIGATION_PERSISTENCE_KEY,decycle(state),false);
|
|
261
|
-
|
|
262
|
-
|
|
264
|
+
if(typeof containerProps.onStateChange =='function'){
|
|
265
|
+
containerProps.onStateChange(state,...rest);
|
|
266
|
+
}
|
|
267
|
+
}}
|
|
268
|
+
fallback = {React.isValidElement(containerProps.fallback) ? containerProps.fallback : <Logo.Progress/>}
|
|
263
269
|
>
|
|
264
270
|
<Navigation
|
|
265
271
|
initialRouteName = {defaultStr(hasGetStarted ? appInitialRouteName : getStartedRouteName,"Home")}
|
|
@@ -258,7 +258,7 @@ export default class TableDataScreenComponent extends FormDataScreen{
|
|
|
258
258
|
prepareField,
|
|
259
259
|
prepareComponentProps,
|
|
260
260
|
...rest
|
|
261
|
-
} = this.prepareComponentProps({...props,tableName,context:this,fields:extendObj({},
|
|
261
|
+
} = this.prepareComponentProps({...props,tableName,context:this,fields:extendObj(true,{},this.fields,props.fields),isUpdated,isUpdate:isUpdated,data,datas,currentIndex});
|
|
262
262
|
const sessionName = this.getSessionName();
|
|
263
263
|
///on effectue une mutator sur le champ en cours de modification
|
|
264
264
|
Object.map(preparedFields,(field,i,counterIndex)=>{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
module.exports = {"@fto-consult/expo-ui":{"name":"@fto-consult/expo-ui","version":"6.31.2","repository":{"type":"git","url":"git+https://github.com/borispipo/expo-ui.git"},"homepage":"https://github.com/borispipo/expo-ui#readme"},"@emotion/native":{"version":"11.11.0","url":"https://emotion.sh","license":"MIT"},"@emotion/react":{"version":"11.11.1","url":"https://github.com/emotion-js/emotion/tree/main/packages/react","license":"MIT"},"@expo/html-elements":{"version":"0.5.1","url":"https://github.com/expo/expo/tree/main/packages/html-elements","license":"MIT"},"@expo/metro-config":{"version":"0.10.7","url":"https://github.com/expo/expo.git","license":"MIT"},"@expo/vector-icons":{"version":"13.0.0","url":"https://expo.github.io/vector-icons","license":"MIT"},"@expo/webpack-config":{"version":"19.0.0","url":"https://github.com/expo/expo-cli.git","license":"MIT"},"@faker-js/faker":{"version":"8.0.2","url":"https://github.com/faker-js/faker.git","license":"MIT"},"@fto-consult/common":{"version":"3.
|
|
1
|
+
module.exports = {"@fto-consult/expo-ui":{"name":"@fto-consult/expo-ui","version":"6.31.2","repository":{"type":"git","url":"git+https://github.com/borispipo/expo-ui.git"},"homepage":"https://github.com/borispipo/expo-ui#readme"},"@emotion/native":{"version":"11.11.0","url":"https://emotion.sh","license":"MIT"},"@emotion/react":{"version":"11.11.1","url":"https://github.com/emotion-js/emotion/tree/main/packages/react","license":"MIT"},"@expo/html-elements":{"version":"0.5.1","url":"https://github.com/expo/expo/tree/main/packages/html-elements","license":"MIT"},"@expo/metro-config":{"version":"0.10.7","url":"https://github.com/expo/expo.git","license":"MIT"},"@expo/vector-icons":{"version":"13.0.0","url":"https://expo.github.io/vector-icons","license":"MIT"},"@expo/webpack-config":{"version":"19.0.0","url":"https://github.com/expo/expo-cli.git","license":"MIT"},"@faker-js/faker":{"version":"8.0.2","url":"https://github.com/faker-js/faker.git","license":"MIT"},"@fto-consult/common":{"version":"3.32.9","url":"https://github.com/borispipo/common#readme","license":"ISC"},"@pchmn/expo-material3-theme":{"version":"1.3.1","url":"https://github.com/pchmn/expo-material3-theme#readme","license":"MIT"},"@react-native-async-storage/async-storage":{"version":"1.18.2","url":"https://github.com/react-native-async-storage/async-storage#readme","license":"MIT"},"@react-native-community/datetimepicker":{"version":"7.2.0","url":"https://github.com/react-native-community/datetimepicker#readme","license":"MIT"},"@react-native-community/netinfo":{"version":"9.3.10","url":"https://github.com/react-native-netinfo/react-native-netinfo#readme","license":"MIT"},"@react-native/assets-registry":{"version":"0.72.0","url":"git@github.com:facebook/react-native.git","license":"MIT"},"@react-navigation/native":{"version":"6.1.7","url":"https://reactnavigation.org","license":"MIT"},"@react-navigation/native-stack":{"version":"6.9.13","url":"https://github.com/software-mansion/react-native-screens#readme","license":"MIT"},"@shopify/flash-list":{"version":"1.4.3","url":"https://shopify.github.io/flash-list/","license":"MIT"},"apexcharts":{"version":"3.42.0","url":"https://apexcharts.com","license":"MIT"},"babel-plugin-inline-dotenv":{"version":"1.7.0","url":"https://github.com/brysgo/babel-plugin-inline-dotenv#readme","license":"ISC"},"babel-plugin-module-resolver":{"version":"5.0.0","url":"https://github.com/tleunen/babel-plugin-module-resolver.git","license":"MIT"},"expo":{"version":"49.0.9","url":"https://github.com/expo/expo/tree/main/packages/expo","license":"MIT"},"expo-camera":{"version":"13.4.2","url":"https://docs.expo.dev/versions/latest/sdk/camera/","license":"MIT"},"expo-clipboard":{"version":"4.3.1","url":"https://docs.expo.dev/versions/latest/sdk/clipboard","license":"MIT"},"expo-font":{"version":"11.4.0","url":"https://docs.expo.dev/versions/latest/sdk/font/","license":"MIT"},"expo-image-picker":{"version":"14.3.2","url":"https://docs.expo.dev/versions/latest/sdk/imagepicker/","license":"MIT"},"expo-linking":{"version":"5.0.2","url":"https://docs.expo.dev/versions/latest/sdk/linking","license":"MIT"},"expo-sqlite":{"version":"11.3.2","url":"https://docs.expo.dev/versions/latest/sdk/sqlite/","license":"MIT"},"expo-status-bar":{"version":"1.6.0","url":"https://docs.expo.dev/versions/latest/sdk/status-bar/","license":"MIT"},"expo-system-ui":{"version":"2.4.0","url":"https://docs.expo.dev/versions/latest/sdk/system-ui","license":"MIT"},"expo-web-browser":{"version":"12.3.2","url":"https://docs.expo.dev/versions/latest/sdk/webbrowser/","license":"MIT"},"file-saver":{"version":"2.0.5","url":"https://github.com/eligrey/FileSaver.js#readme","license":"MIT"},"fs-extra":{"version":"11.1.1","url":"https://github.com/jprichardson/node-fs-extra","license":"MIT"},"google-libphonenumber":{"version":"3.2.33","url":"https://ruimarinho.github.io/google-libphonenumber/","license":"(MIT AND Apache-2.0)"},"htmlparser2-without-node-native":{"version":"3.9.2","url":"git://github.com/fb55/htmlparser2.git","license":"MIT"},"pdfmake":{"version":"0.2.7","url":"http://pdfmake.org","license":"MIT"},"process":{"version":"0.11.10","url":"git://github.com/shtylman/node-process.git","license":"MIT"},"prop-types":{"version":"15.8.1","url":"https://facebook.github.io/react/","license":"MIT"},"react":{"version":"18.2.0","url":"https://reactjs.org/","license":"MIT"},"react-content-loader":{"version":"6.2.1","url":"https://github.com/danilowoz/react-content-loader","license":"MIT"},"react-dom":{"version":"18.2.0","url":"https://reactjs.org/","license":"MIT"},"react-native":{"version":"0.72.4","license":"MIT"},"react-native-big-list":{"version":"1.6.1","url":"https://marcocesarato.github.io/react-native-big-list-docs/","license":"GPL-3.0-or-later"},"react-native-blob-util":{"version":"0.18.6","url":"https://github.com/RonRadtke/react-native-blob-util","license":"MIT"},"react-native-gesture-handler":{"version":"2.12.1","url":"https://github.com/software-mansion/react-native-gesture-handler#readme","license":"MIT"},"react-native-iphone-x-helper":{"version":"1.3.1","url":"https://github.com/ptelad/react-native-iphone-x-helper#readme","license":"MIT"},"react-native-mime-types":{"version":"2.4.0","license":"MIT"},"react-native-paper":{"version":"5.10.4","url":"https://callstack.github.io/react-native-paper","license":"MIT"},"react-native-paper-dates":{"version":"0.18.26","url":"https://github.com/web-ridge/react-native-paper-dates#readme","license":"MIT"},"react-native-reanimated":{"version":"3.3.0","url":"https://github.com/software-mansion/react-native-reanimated#readme","license":"MIT"},"react-native-safe-area-context":{"version":"4.6.3","url":"https://github.com/th3rdwave/react-native-safe-area-context#readme","license":"MIT"},"react-native-screens":{"version":"3.22.1","url":"https://github.com/software-mansion/react-native-screens#readme","license":"MIT"},"react-native-svg":{"version":"13.9.0","url":"https://github.com/react-native-community/react-native-svg","license":"MIT"},"react-native-web":{"version":"0.19.7","url":"git://github.com/necolas/react-native-web.git","license":"MIT"},"react-native-webview":{"version":"13.2.2","url":"https://github.com/react-native-webview/react-native-webview#readme","license":"MIT"},"react-virtuoso":{"version":"4.5.1","url":"https://virtuoso.dev/","license":"MIT"},"sharp-cli":{"version":"4.1.1","url":"https://github.com/vseventer/sharp-cli","license":"MIT"},"tippy.js":{"version":"6.3.7","url":"https://atomiks.github.io/tippyjs/","license":"MIT"},"uninstall":{"version":"0.0.0","license":"MIT"},"websql":{"version":"2.0.3","url":"git://github.com/nolanlawson/node-websql.git","license":"Apache-2.0"},"xlsx":{"version":"0.18.5","url":"https://sheetjs.com/","license":"Apache-2.0"}};
|