@fto-consult/expo-ui 6.34.0 → 6.34.2
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": "6.34.
|
|
3
|
+
"version": "6.34.2",
|
|
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",
|
|
@@ -2,6 +2,7 @@ import useExpoUI from "$econtext";
|
|
|
2
2
|
import React from "$react";
|
|
3
3
|
|
|
4
4
|
export default function ExpoUIRealmProvider({children,...props}){
|
|
5
|
+
return children;
|
|
5
6
|
const {realm:{RealmProvider,Provider}} = useExpoUI();
|
|
6
7
|
RealmProvider = React.isComponent(RealmProvider)? RealmProvider : React.isComponent(Provider)?Provider : null;
|
|
7
8
|
if(!RealmProvider){
|