@fto-consult/expo-ui 6.34.1 → 6.34.3
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 +1 -3
- package/src/context/Provider.js +1 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fto-consult/expo-ui",
|
3
|
-
"version": "6.34.
|
3
|
+
"version": "6.34.3",
|
4
4
|
"description": "Bibliothèque de composants UI Expo,react-native",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
@@ -78,7 +78,6 @@
|
|
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
|
-
"@realm/react": "^0.6.0",
|
82
81
|
"@shopify/flash-list": "1.4.3",
|
83
82
|
"apexcharts": "^3.42.0",
|
84
83
|
"expo": "^49.0.9",
|
@@ -116,7 +115,6 @@
|
|
116
115
|
"react-native-web": "~0.19.6",
|
117
116
|
"react-native-webview": "13.2.2",
|
118
117
|
"react-virtuoso": "^4.5.1",
|
119
|
-
"realm": "^12.1.0",
|
120
118
|
"sharp-cli": "^4.1.1",
|
121
119
|
"tippy.js": "^6.3.7",
|
122
120
|
"websql": "^2.0.3",
|
package/src/context/Provider.js
CHANGED
@@ -10,7 +10,6 @@ import Login from "$eauth/Login";
|
|
10
10
|
import {modes} from "$ecomponents/TextField";
|
11
11
|
import {isMobileMedia} from "$cdimensions";
|
12
12
|
import { prepareScreens } from "./TableData";
|
13
|
-
import ERealmProvider from "$erealmProvider";
|
14
13
|
|
15
14
|
|
16
15
|
/*****
|
@@ -151,7 +150,7 @@ const Provider = ({children,getTableData,handleHelpScreen,navigation,components,
|
|
151
150
|
structsData,
|
152
151
|
appConfig
|
153
152
|
}}
|
154
|
-
children={
|
153
|
+
children={children}
|
155
154
|
/>;
|
156
155
|
}
|
157
156
|
const getTableOrStructDataCall = (tablesOrStructDatas,getTableOrStructDataFunc)=>{
|