@fto-consult/expo-ui 8.24.1 → 8.24.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/babel.config.js CHANGED
@@ -13,7 +13,7 @@ module.exports = function(api,opts) {
13
13
  }
14
14
  /*** par défaut, les variables d'environnements sont stockés dans le fichier .env situé à la racine du projet, référencée par la prop base */
15
15
  const alias = require("./babel.config.alias")(options);
16
- if(!isWeb){
16
+ if(false && !isWeb){
17
17
  alias.uuid = path.resolve(__dirname,"src","uuid");
18
18
  }
19
19
  if(typeof options.aliasMutator =="function"){
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fto-consult/expo-ui",
3
- "version": "8.24.1",
3
+ "version": "8.24.2",
4
4
  "description": "Bibliothèque de composants UI Expo,react-native",
5
5
  "scripts": {
6
6
  "clear-npx-cache": "npx clear-npx-cache",
@@ -86,7 +86,6 @@
86
86
  "react-native-mime-types": "^2.4.0",
87
87
  "react-native-paper": "^5.12.3",
88
88
  "react-native-paper-dates": "^0.21.8",
89
- "react-native-uuid": "^2.0.1",
90
89
  "react-native-web": "^0.19.10",
91
90
  "react-virtuoso": "^4.6.3",
92
91
  "readable-stream": "^4.5.2",
package/src/App.js CHANGED
@@ -1,4 +1,5 @@
1
1
  import session from "$session";
2
+ import './uuid/deps';
2
3
  import {useState,useEffect} from "$react";
3
4
  import Provider from "$econtext/Provider";
4
5
  import {isMobileNative} from "$cplatform";