@fto-consult/expo-ui 2.12.7 → 2.12.8
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 +4 -3
- package/readMe.md +4 -1
- package/src/components/Countries/resources/countries-normalized.json +1987 -1987
- package/src/components/Countries/resources/countries-with-not-extra.json +1211 -1211
- package/src/components/Countries/resources/countries.sql +243 -243
- package/src/media/file-system/exports.js +16 -0
- package/src/media/file-system/index.js +6 -17
- package/src/media/file-system/utils/index.js +3 -1
- package/src/media/file-system/utils/write.js +30 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fto-consult/expo-ui",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.8",
|
|
4
4
|
"description": "Bibliothèque de composants UI Expo,react-native",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@emotion/native": "^11.10.0",
|
|
62
62
|
"@expo/html-elements": "^0.2.0",
|
|
63
63
|
"@expo/vector-icons": "^13.0.0",
|
|
64
|
-
"@fto-consult/common": "^1.20.
|
|
64
|
+
"@fto-consult/common": "^1.20.10",
|
|
65
65
|
"@gorhom/portal": "^1.0.14",
|
|
66
66
|
"@react-native-async-storage/async-storage": "~1.17.3",
|
|
67
67
|
"@react-native-community/datetimepicker": "6.5.2",
|
|
@@ -102,7 +102,8 @@
|
|
|
102
102
|
"react-native-web": "~0.18.7",
|
|
103
103
|
"react-native-webview": "11.23.1",
|
|
104
104
|
"sharp-cli": "^2.1.0",
|
|
105
|
-
"tippy.js": "^6.3.7"
|
|
105
|
+
"tippy.js": "^6.3.7",
|
|
106
|
+
"xlsx": "^0.18.5"
|
|
106
107
|
},
|
|
107
108
|
"devDependencies": {
|
|
108
109
|
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
|
package/readMe.md
CHANGED
|
@@ -5,4 +5,7 @@
|
|
|
5
5
|
-->
|
|
6
6
|
|
|
7
7
|
## Installation des dépendences, packages de dévéloppement
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
npm i --D @babel/plugin-proposal-export-namespace-from @babel/preset-react babel-plugin-inline-dotenv babel-plugin-module-resolver babel-plugin-transform-inline-environment-variables @expo/metro-config @expo/webpack-config
|
|
11
|
+
```
|