@fto-consult/expo-ui 6.59.3 → 6.60.0
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.json +20 -12
- package/babel.config.js +2 -0
- package/eas.json +4 -4
- package/main.js +1 -1
- package/package.json +7 -6
- package/src/screens/Help/openLibraries.js +1 -1
- package/app.config.json +0 -11
package/app.json
CHANGED
@@ -1,12 +1,20 @@
|
|
1
|
-
{
|
2
|
-
"expo": {
|
3
|
-
"name": "
|
4
|
-
"slug": "fto-consult-expo-ui",
|
5
|
-
"version": "1.0.0",
|
6
|
-
"orientation": "portrait",
|
7
|
-
"web": {
|
8
|
-
"bundler": "webpack"
|
9
|
-
}
|
10
|
-
|
11
|
-
|
12
|
-
}
|
1
|
+
{
|
2
|
+
"expo": {
|
3
|
+
"name": "expo-ui",
|
4
|
+
"slug": "fto-consult-expo-ui",
|
5
|
+
"version": "1.0.0",
|
6
|
+
"orientation": "portrait",
|
7
|
+
"web": {
|
8
|
+
"bundler": "webpack"
|
9
|
+
},
|
10
|
+
"android": {
|
11
|
+
"package": "com.borispipo.ftoconsultexpoui"
|
12
|
+
},
|
13
|
+
"extra": {
|
14
|
+
"eas": {
|
15
|
+
"projectId": "b895ce11-4941-4ea9-80da-b24d5abb4483"
|
16
|
+
}
|
17
|
+
}
|
18
|
+
},
|
19
|
+
"userInterfaceStyle": "automatic"
|
20
|
+
}
|
package/babel.config.js
CHANGED
@@ -54,8 +54,10 @@ module.exports = function(api,opts) {
|
|
54
54
|
['babel-preset-expo']
|
55
55
|
],
|
56
56
|
plugins : [
|
57
|
+
...(Array.isArray(opts.plugins) ? options.plugins : []),
|
57
58
|
["inline-dotenv",inlineDovOptions],
|
58
59
|
["module-resolver", {"alias": alias}],
|
60
|
+
["@babel/plugin-proposal-export-namespace-from"],
|
59
61
|
['react-native-reanimated/plugin'],
|
60
62
|
],
|
61
63
|
};
|
package/eas.json
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
{
|
2
|
-
"cli": {
|
3
|
-
"version": ">= 5.4.0"
|
4
|
-
},
|
5
2
|
"build": {
|
6
3
|
"development": {
|
7
4
|
"developmentClient": true,
|
8
5
|
"distribution": "internal"
|
9
6
|
},
|
10
7
|
"preview": {
|
11
|
-
"distribution": "internal"
|
8
|
+
"distribution": "internal",
|
9
|
+
"android": {
|
10
|
+
"buildType": "apk"
|
11
|
+
}
|
12
12
|
},
|
13
13
|
"production": {}
|
14
14
|
},
|
package/main.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
require("expo/AppEntry");
|
1
|
+
module.exports = require("expo/AppEntry");
|
2
2
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@fto-consult/expo-ui",
|
3
|
-
"version": "6.
|
3
|
+
"version": "6.60.0",
|
4
4
|
"description": "Bibliothèque de composants UI Expo,react-native",
|
5
5
|
"main": "main",
|
6
6
|
"scripts": {
|
@@ -70,18 +70,18 @@
|
|
70
70
|
"@expo/html-elements": "^0.5.1",
|
71
71
|
"@expo/vector-icons": "^13.0.0",
|
72
72
|
"@faker-js/faker": "^8.0.2",
|
73
|
-
"@fto-consult/common": "^3.
|
73
|
+
"@fto-consult/common": "^3.54.0",
|
74
74
|
"@pchmn/expo-material3-theme": "^1.3.1",
|
75
75
|
"@react-native-async-storage/async-storage": "1.18.2",
|
76
76
|
"@react-native-community/datetimepicker": "7.2.0",
|
77
77
|
"@react-native-community/netinfo": "9.3.10",
|
78
78
|
"@react-native/assets-registry": "^0.72.0",
|
79
|
-
"@react-navigation/native": "^6.1.
|
80
|
-
"@react-navigation/native-stack": "^6.9.
|
81
|
-
"@react-navigation/stack": "^6.3.
|
79
|
+
"@react-navigation/native": "^6.1.9",
|
80
|
+
"@react-navigation/native-stack": "^6.9.15",
|
81
|
+
"@react-navigation/stack": "^6.3.19",
|
82
82
|
"@shopify/flash-list": "1.4.3",
|
83
83
|
"apexcharts": "^3.44.0",
|
84
|
-
"expo": "^49.0.
|
84
|
+
"expo": "^49.0.16",
|
85
85
|
"expo-camera": "~13.4.4",
|
86
86
|
"expo-clipboard": "~4.3.1",
|
87
87
|
"expo-font": "~11.4.0",
|
@@ -124,6 +124,7 @@
|
|
124
124
|
"xlsx": "^0.18.5"
|
125
125
|
},
|
126
126
|
"devDependencies": {
|
127
|
+
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
|
127
128
|
"@expo/metro-config": "^0.10.7",
|
128
129
|
"@expo/webpack-config": "^19.0.0",
|
129
130
|
"babel-plugin-inline-dotenv": "^1.7.0",
|
@@ -1 +1 @@
|
|
1
|
-
module.exports = {"@fto-consult/expo-ui":{"name":"@fto-consult/expo-ui","version":"6.59.
|
1
|
+
module.exports = {"@fto-consult/expo-ui":{"name":"@fto-consult/expo-ui","version":"6.59.4","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.53.0","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.9","url":"https://reactnavigation.org","license":"MIT"},"@react-navigation/native-stack":{"version":"6.9.15","url":"https://github.com/software-mansion/react-native-screens#readme","license":"MIT"},"@react-navigation/stack":{"version":"6.3.19","url":"https://reactnavigation.org/docs/stack-navigator/","license":"MIT"},"@shopify/flash-list":{"version":"1.4.3","url":"https://shopify.github.io/flash-list/","license":"MIT"},"apexcharts":{"version":"3.44.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.16","url":"https://github.com/expo/expo/tree/main/packages/expo","license":"MIT"},"expo-camera":{"version":"13.4.4","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.3","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"},"is-plain-obj":{"version":"4.1.0","license":"MIT"},"js-base64":{"version":"3.7.5","license":"BSD-3-Clause"},"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.6","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.11.0","url":"https://callstack.github.io/react-native-paper","license":"MIT"},"react-native-paper-dates":{"version":"0.20.1","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.9","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.6.2","url":"https://virtuoso.dev/","license":"MIT"},"sharp-cli":{"version":"2.1.0","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"}};
|
package/app.config.json
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "@FTO-CONSULT/EXPO-UI",
|
3
|
-
"version": "6.31.7",
|
4
|
-
"description": "Bibliothèque de composants UI Expo,react-native",
|
5
|
-
"bin": {
|
6
|
-
"expo-ui": "./bin/index.js"
|
7
|
-
},
|
8
|
-
"author": "Boris Fouomene",
|
9
|
-
"license": "ISC",
|
10
|
-
"homepage": "https://github.com/borispipo/expo-ui#readme"
|
11
|
-
}
|