@fto-consult/expo-ui 6.37.3 → 6.37.5

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.
Files changed (114) hide show
  1. package/App.js +0 -1
  2. package/node_modules/.package-lock.json +26218 -26188
  3. package/node_modules/@fto-consult/common/babel.config.alias.js +18 -1
  4. package/node_modules/@fto-consult/common/package.json +1 -1
  5. package/node_modules/@react-native-async-storage/async-storage/LICENSE +21 -0
  6. package/node_modules/@react-native-async-storage/async-storage/README.md +27 -0
  7. package/node_modules/@react-native-async-storage/async-storage/RNCAsyncStorage.podspec +19 -0
  8. package/node_modules/@react-native-async-storage/async-storage/android/build.gradle +142 -0
  9. package/node_modules/@react-native-async-storage/async-storage/android/src/main/AndroidManifest.xml +6 -0
  10. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncLocalStorageUtil.java +178 -0
  11. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncStorageErrorUtil.java +45 -0
  12. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncStorageExpoMigration.java +154 -0
  13. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncStorageModule.java +424 -0
  14. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncStoragePackage.java +58 -0
  15. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/ReactDatabaseSupplier.java +163 -0
  16. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/SerialExecutor.java +40 -0
  17. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/next/ArgumentHelpers.kt +86 -0
  18. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/next/ErrorHelpers.kt +39 -0
  19. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/next/StorageModule.kt +90 -0
  20. package/node_modules/@react-native-async-storage/async-storage/android/src/main/java/com/reactnativecommunity/asyncstorage/next/StorageSupplier.kt +161 -0
  21. package/node_modules/@react-native-async-storage/async-storage/android/src/test/java/com/reactnativecommunity/asyncstorage/next/ArgumentHelpersTest.kt +93 -0
  22. package/node_modules/@react-native-async-storage/async-storage/android/src/test/java/com/reactnativecommunity/asyncstorage/next/StorageTest.kt +141 -0
  23. package/node_modules/@react-native-async-storage/async-storage/android/testresults.gradle +38 -0
  24. package/node_modules/@react-native-async-storage/async-storage/ios/RNCAsyncStorage.h +51 -0
  25. package/node_modules/@react-native-async-storage/async-storage/ios/RNCAsyncStorage.m +898 -0
  26. package/node_modules/@react-native-async-storage/async-storage/ios/RNCAsyncStorage.xcodeproj/project.pbxproj +283 -0
  27. package/node_modules/@react-native-async-storage/async-storage/ios/RNCAsyncStorageDelegate.h +73 -0
  28. package/node_modules/@react-native-async-storage/async-storage/jest/async-storage-mock.d.ts +9 -0
  29. package/node_modules/@react-native-async-storage/async-storage/jest/async-storage-mock.js +109 -0
  30. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/AsyncStorage.js +164 -0
  31. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/AsyncStorage.js.map +1 -0
  32. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/AsyncStorage.native.js +366 -0
  33. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/AsyncStorage.native.js.map +1 -0
  34. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/RCTAsyncStorage.js +30 -0
  35. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/RCTAsyncStorage.js.map +1 -0
  36. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/helpers.js +69 -0
  37. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/helpers.js.map +1 -0
  38. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/hooks.js +44 -0
  39. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/hooks.js.map +1 -0
  40. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/index.js +22 -0
  41. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/index.js.map +1 -0
  42. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/shouldFallbackToLegacyNativeModule.js +39 -0
  43. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/shouldFallbackToLegacyNativeModule.js.map +1 -0
  44. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/types.js +2 -0
  45. package/node_modules/@react-native-async-storage/async-storage/lib/commonjs/types.js.map +1 -0
  46. package/node_modules/@react-native-async-storage/async-storage/lib/module/AsyncStorage.js +153 -0
  47. package/node_modules/@react-native-async-storage/async-storage/lib/module/AsyncStorage.js.map +1 -0
  48. package/node_modules/@react-native-async-storage/async-storage/lib/module/AsyncStorage.native.js +348 -0
  49. package/node_modules/@react-native-async-storage/async-storage/lib/module/AsyncStorage.native.js.map +1 -0
  50. package/node_modules/@react-native-async-storage/async-storage/lib/module/RCTAsyncStorage.js +20 -0
  51. package/node_modules/@react-native-async-storage/async-storage/lib/module/RCTAsyncStorage.js.map +1 -0
  52. package/node_modules/@react-native-async-storage/async-storage/lib/module/helpers.js +56 -0
  53. package/node_modules/@react-native-async-storage/async-storage/lib/module/helpers.js.map +1 -0
  54. package/node_modules/@react-native-async-storage/async-storage/lib/module/hooks.js +34 -0
  55. package/node_modules/@react-native-async-storage/async-storage/lib/module/hooks.js.map +1 -0
  56. package/node_modules/@react-native-async-storage/async-storage/lib/module/index.js +4 -0
  57. package/node_modules/@react-native-async-storage/async-storage/lib/module/index.js.map +1 -0
  58. package/node_modules/@react-native-async-storage/async-storage/lib/module/shouldFallbackToLegacyNativeModule.js +31 -0
  59. package/node_modules/@react-native-async-storage/async-storage/lib/module/shouldFallbackToLegacyNativeModule.js.map +1 -0
  60. package/node_modules/@react-native-async-storage/async-storage/lib/module/types.js +2 -0
  61. package/node_modules/@react-native-async-storage/async-storage/lib/module/types.js.map +1 -0
  62. package/node_modules/@react-native-async-storage/async-storage/lib/typescript/AsyncStorage.d.ts +10 -0
  63. package/node_modules/@react-native-async-storage/async-storage/lib/typescript/AsyncStorage.native.d.ts +16 -0
  64. package/node_modules/@react-native-async-storage/async-storage/lib/typescript/RCTAsyncStorage.d.ts +2 -0
  65. package/node_modules/@react-native-async-storage/async-storage/lib/typescript/helpers.d.ts +5 -0
  66. package/node_modules/@react-native-async-storage/async-storage/lib/typescript/hooks.d.ts +2 -0
  67. package/node_modules/@react-native-async-storage/async-storage/lib/typescript/index.d.ts +4 -0
  68. package/node_modules/@react-native-async-storage/async-storage/lib/typescript/shouldFallbackToLegacyNativeModule.d.ts +1 -0
  69. package/node_modules/@react-native-async-storage/async-storage/lib/typescript/types.d.ts +113 -0
  70. package/node_modules/@react-native-async-storage/async-storage/macos/RNCAsyncStorage.xcodeproj/project.pbxproj +385 -0
  71. package/node_modules/@react-native-async-storage/async-storage/macos/RNCAsyncStorage.xcodeproj/xcshareddata/xcschemes/RNCAsyncStorage-macOS.xcscheme +67 -0
  72. package/node_modules/@react-native-async-storage/async-storage/macos/RNCAsyncStorage.xcodeproj/xcshareddata/xcschemes/RNCAsyncStorage.xcscheme +67 -0
  73. package/node_modules/@react-native-async-storage/async-storage/package.json +197 -0
  74. package/node_modules/@react-native-async-storage/async-storage/src/AsyncStorage.native.ts +356 -0
  75. package/node_modules/@react-native-async-storage/async-storage/src/AsyncStorage.ts +173 -0
  76. package/node_modules/@react-native-async-storage/async-storage/src/RCTAsyncStorage.ts +28 -0
  77. package/node_modules/@react-native-async-storage/async-storage/src/helpers.ts +74 -0
  78. package/node_modules/@react-native-async-storage/async-storage/src/hooks.ts +11 -0
  79. package/node_modules/@react-native-async-storage/async-storage/src/index.ts +7 -0
  80. package/node_modules/@react-native-async-storage/async-storage/src/shouldFallbackToLegacyNativeModule.ts +34 -0
  81. package/node_modules/@react-native-async-storage/async-storage/src/types.ts +155 -0
  82. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage/PropertySheet.props +16 -0
  83. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage/ReactNativeAsyncStorage.vcxproj +172 -0
  84. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage/ReactNativeAsyncStorage.vcxproj.filters +34 -0
  85. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage/packages.config +4 -0
  86. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage.sln +172 -0
  87. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage61/PropertySheet.props +16 -0
  88. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage61/ReactNativeAsyncStorage61.vcxproj +157 -0
  89. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage61/ReactNativeAsyncStorage61.vcxproj.filters +34 -0
  90. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage61/packages.config +4 -0
  91. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage61.sln +195 -0
  92. package/node_modules/@react-native-async-storage/async-storage/windows/ReactNativeAsyncStorage62.sln +192 -0
  93. package/node_modules/@react-native-async-storage/async-storage/windows/code/DBStorage.cpp +599 -0
  94. package/node_modules/@react-native-async-storage/async-storage/windows/code/DBStorage.h +162 -0
  95. package/node_modules/@react-native-async-storage/async-storage/windows/code/RNCAsyncStorage.h +118 -0
  96. package/node_modules/@react-native-async-storage/async-storage/windows/code/ReactNativeAsyncStorage.def +3 -0
  97. package/node_modules/@react-native-async-storage/async-storage/windows/code/ReactPackageProvider.cpp +20 -0
  98. package/node_modules/@react-native-async-storage/async-storage/windows/code/ReactPackageProvider.h +23 -0
  99. package/node_modules/@react-native-async-storage/async-storage/windows/code/ReactPackageProvider.idl +7 -0
  100. package/node_modules/@react-native-async-storage/async-storage/windows/code/pch.cpp +3 -0
  101. package/node_modules/@react-native-async-storage/async-storage/windows/code/pch.h +15 -0
  102. package/node_modules/merge-options/index.d.ts +2 -0
  103. package/node_modules/merge-options/index.js +171 -0
  104. package/node_modules/merge-options/index.mjs +8 -0
  105. package/node_modules/merge-options/license +21 -0
  106. package/node_modules/merge-options/node_modules/is-plain-obj/index.d.ts +29 -0
  107. package/node_modules/merge-options/node_modules/is-plain-obj/index.js +10 -0
  108. package/node_modules/merge-options/node_modules/is-plain-obj/license +9 -0
  109. package/node_modules/merge-options/node_modules/is-plain-obj/package.json +38 -0
  110. package/node_modules/merge-options/node_modules/is-plain-obj/readme.md +54 -0
  111. package/node_modules/merge-options/package.json +59 -0
  112. package/node_modules/merge-options/readme.md +130 -0
  113. package/package.json +131 -130
  114. package/src/components/Chart/appexChart/appexChart.html +23 -23
@@ -0,0 +1,54 @@
1
+ # is-plain-obj [![Build Status](https://travis-ci.org/sindresorhus/is-plain-obj.svg?branch=master)](https://travis-ci.org/sindresorhus/is-plain-obj)
2
+
3
+ > Check if a value is a plain object
4
+
5
+ An object is plain if it's created by either `{}`, `new Object()`, or `Object.create(null)`.
6
+
7
+
8
+ ## Install
9
+
10
+ ```
11
+ $ npm install is-plain-obj
12
+ ```
13
+
14
+
15
+ ## Usage
16
+
17
+ ```js
18
+ const isPlainObject = require('is-plain-obj');
19
+
20
+ isPlainObject({foo: 'bar'});
21
+ //=> true
22
+
23
+ isPlainObject(new Object());
24
+ //=> true
25
+
26
+ isPlainObject(Object.create(null));
27
+ //=> true
28
+
29
+ isPlainObject([1, 2, 3]);
30
+ //=> false
31
+
32
+ class Unicorn {}
33
+ isPlainObject(new Unicorn());
34
+ //=> false
35
+ ```
36
+
37
+
38
+ ## Related
39
+
40
+ - [is-obj](https://github.com/sindresorhus/is-obj) - Check if a value is an object
41
+ - [is](https://github.com/sindresorhus/is) - Type check values
42
+
43
+
44
+ ---
45
+
46
+ <div align="center">
47
+ <b>
48
+ <a href="https://tidelift.com/subscription/pkg/npm-is-plain-obj?utm_source=npm-is-plain-obj&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
49
+ </b>
50
+ <br>
51
+ <sub>
52
+ Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
53
+ </sub>
54
+ </div>
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "merge-options",
3
+ "version": "3.0.4",
4
+ "description": "Merge Option Objects",
5
+ "license": "MIT",
6
+ "repository": "schnittstabil/merge-options",
7
+ "author": {
8
+ "name": "Michael Mayer",
9
+ "email": "michael@schnittstabil.de"
10
+ },
11
+ "engines": {
12
+ "node": ">=10"
13
+ },
14
+ "scripts": {
15
+ "test": "xo && tsd && nyc ava",
16
+ "lint": "xo",
17
+ "unit": "ava",
18
+ "typecheck": "tsd",
19
+ "clean": "rimraf .nyc_output/ coverage/",
20
+ "coverage-html": "nyc ava && nyc report --reporter=html"
21
+ },
22
+ "main": "./index.js",
23
+ "exports": {
24
+ "require": "./index.js",
25
+ "import": "./index.mjs"
26
+ },
27
+ "files": [
28
+ "index.d.ts",
29
+ "index.js",
30
+ "index.mjs"
31
+ ],
32
+ "keywords": [
33
+ "merge",
34
+ "options",
35
+ "deep",
36
+ "plain",
37
+ "object",
38
+ "extend",
39
+ "clone"
40
+ ],
41
+ "devDependencies": {
42
+ "ava": "^3.11.1",
43
+ "coveralls": "^3.1.0",
44
+ "nyc": "^15.1.0",
45
+ "rimraf": "^3.0.2",
46
+ "tsd": "^0.13.1",
47
+ "xo": "^0.33.0"
48
+ },
49
+ "dependencies": {
50
+ "is-plain-obj": "^2.1.0"
51
+ },
52
+ "xo": {
53
+ "rules": {
54
+ "import/extensions": "off",
55
+ "import/no-useless-path-segments": "off",
56
+ "unicorn/import-index": "off"
57
+ }
58
+ }
59
+ }
@@ -0,0 +1,130 @@
1
+ # merge-options [![Build Status](https://travis-ci.org/schnittstabil/merge-options.svg?branch=master)](https://travis-ci.org/schnittstabil/merge-options) [![Coverage Status](https://coveralls.io/repos/schnittstabil/merge-options/badge.svg?branch=master&service=github)](https://coveralls.io/github/schnittstabil/merge-options?branch=master) [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)
2
+
3
+
4
+ > Merge Option Objects
5
+
6
+ `merge-options` considers [plain objects](https://github.com/sindresorhus/is-plain-obj) as *Option Objects*, everything else as *Option Values*.
7
+
8
+ ## Install
9
+
10
+ ```
11
+ $ npm install --save merge-options
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ ```js
17
+ const mergeOptions = require('merge-options');
18
+
19
+ mergeOptions({foo: 0}, {bar: 1}, {baz: 2}, {bar: 3})
20
+ //=> {foo: 0, bar: 3, baz: 2}
21
+
22
+ mergeOptions({nested: {unicorns: 'none'}}, {nested: {unicorns: 'many'}})
23
+ //=> {nested: {unicorns: 'many'}}
24
+
25
+ mergeOptions({[Symbol.for('key')]: 0}, {[Symbol.for('key')]: 42})
26
+ //=> {Symbol(key): 42}
27
+ ```
28
+
29
+ ### Usage with custom config
30
+
31
+ ```js
32
+ const mergeOptions = require('merge-options').bind({ignoreUndefined: true});
33
+
34
+ mergeOptions({foo: 'bar'}, {foo: undefined})
35
+ //=> {foo: 'bar'}
36
+ ```
37
+
38
+ ## API
39
+
40
+ ### mergeOptions(option1, ...options)<br/>mergeOptions.call(config, option1, ...options)<br/>mergeOptions.apply(config, [option1, ...options])
41
+
42
+ `mergeOptions` recursively merges one or more *Option Objects* into a new one and returns that. The `options` are merged in order, thus *Option Values* of additional `options` take precedence over previous ones.
43
+
44
+ The merging does not alter the passed `option` arguments, taking roughly the following steps:
45
+ * recursively cloning<sup><a href="#note1">[1]</a></sup> *Option Objects* and [arrays](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray) until reaching *Option Values*
46
+ * copying<sup><a href="#note1">[1]</a></sup> references to *Option Values* to the result object
47
+
48
+
49
+ ```js
50
+ const defaultOpts = {
51
+ fn: () => false, // functions are Option Values
52
+ promise: Promise.reject(new Error()), // all non-plain objects are Option Values
53
+ array: ['foo'], // arrays are Option Values
54
+ nested: {unicorns: 'none'} // {…} is plain, therefore an Option Object
55
+ };
56
+
57
+ const opts = {
58
+ fn: () => true, // [1]
59
+ promise: Promise.resolve('bar'), // [2]
60
+ array: ['baz'], // [3]
61
+ nested: {unicorns: 'many'} // [4]
62
+ };
63
+
64
+ mergeOptions(defaultOpts, opts)
65
+ //=>
66
+ {
67
+ fn: [Function], // === [1]
68
+ promise: Promise { 'bar' }, // === [2]
69
+ array: ['baz'], // !== [3] (arrays are cloned)
70
+ nested: {unicorns: 'many'} // !== [4] (Option Objects are cloned)
71
+ }
72
+ ```
73
+
74
+ #### config
75
+
76
+ Type: `object`
77
+
78
+ ##### config.concatArrays
79
+
80
+ Type: `boolean`<br/>Default: `false`
81
+
82
+ Concatenate arrays:
83
+
84
+ ```js
85
+ mergeOptions({src: ['src/**']}, {src: ['test/**']})
86
+ //=> {src: ['test/**']}
87
+
88
+ // Via call
89
+ mergeOptions.call({concatArrays: true}, {src: ['src/**']}, {src: ['test/**']})
90
+ //=> {src: ['src/**', 'test/**']}
91
+
92
+ // Via apply
93
+ mergeOptions.apply({concatArrays: true}, [{src: ['src/**']}, {src: ['test/**']}])
94
+ //=> {src: ['src/**', 'test/**']}
95
+ ```
96
+
97
+ ##### config.ignoreUndefined
98
+
99
+ Type: `boolean`<br/>Default: `false`
100
+
101
+ Ignore undefined values:
102
+
103
+ ```js
104
+ mergeOptions({foo: 'bar'}, {foo: undefined})
105
+ //=> {foo: undefined}
106
+
107
+ // Via call
108
+ mergeOptions.call({ignoreUndefined: true}, {foo: 'bar'}, {foo: undefined})
109
+ //=> {foo: 'bar'}
110
+
111
+ // Via apply
112
+ mergeOptions.apply({ignoreUndefined: true}, [{foo: 'bar'}, {foo: undefined}])
113
+ //=> {foo: 'bar'}
114
+ ```
115
+
116
+
117
+ ## Related
118
+
119
+ * See [object-assign](https://github.com/sindresorhus/object-assign) if you need a ES2015 Object.assign() ponyfill
120
+ * See [deep-assign](https://github.com/sindresorhus/deep-assign) if you need to do Object.assign() recursively
121
+
122
+ ## Notes
123
+
124
+ <ol>
125
+ <li id="note1">copying and cloning take only enumerable own properties into account</li>
126
+ </ol>
127
+
128
+ ## License
129
+
130
+ MIT © [Michael Mayer](http://schnittstabil.de)
package/package.json CHANGED
@@ -1,130 +1,131 @@
1
- {
2
- "name": "@fto-consult/expo-ui",
3
- "version": "6.37.3",
4
- "description": "Bibliothèque de composants UI Expo,react-native",
5
- "main": "node_modules/expo/AppEntry.js",
6
- "scripts": {
7
- "clear-npx-cache": "npx clear-npx-cache",
8
- "publish1": "npm publish --access=public",
9
- "unpublish": "npm -f unpublish @fto-consult/expo-ui",
10
- "build-web": "",
11
- "dev": "npx expo start -c --no-minify",
12
- "start": "npx expo start --dev --no-minify",
13
- "start-d": "npx expo start -c --no-dev --no-minify",
14
- "start-p": "npm run start-d",
15
- "expo-start-client": "npx expo start --dev --no-minify --dev-client",
16
- "start-m": "npx expo start - c--dev--no -minify",
17
- "android": "npx expo start --android -c",
18
- "ios": "npx expo start --ios",
19
- "web": "npx expo start --web",
20
- "web-c": "npx expo start --web -c",
21
- "eject": "expo eject",
22
- "emulator": "npm run android-emulator",
23
- "web-server": "npx serve web-build",
24
- "build-android": "eas build --clear-cache -p android --profile preview",
25
- "build-android-local": "eas build --platform android --local",
26
- "build-android-dist": "eas build --clear-cache -p android",
27
- "build-ios": "eas build --clear-cache -p ios --profile preview",
28
- "build-ios-dist": "eas build --clear-cache -p ios",
29
- "install-apk": "adb -s emulator-5554 install myapp.apk",
30
- "android-emulator": "emulator -avd EMULATOR",
31
- "flipper": "npx cross-env METRO_SERVER_PORT=19000 E:\\Studies\\react-native\\debugger\\Flipper-win\\Flipper.exe",
32
- "test:build": "electron-webpack && electron-builder --dir -c.compression=store -c.mac.identity=null",
33
- "compile-electron": "webpack --env platform=electron",
34
- "compile-electron-p": "webpack --config ./electron/webpack.config.js --mode=production",
35
- "electron": "electron ./electron",
36
- "logcat": "adb -d logcat com.ftc.apps.salite1:E > errors.txt",
37
- "logcat-export": "adb -d logcat com.ftc.apps.salite1 *:S > logcat.txt",
38
- "electron-c": "npm run compile-electron && npm run electron",
39
- "electron-p": "npm run compile-electron-p && npm run electron",
40
- "update-app-version": "node ./update-app-version.js",
41
- "find-licenses": "node ./find-licenses.js",
42
- "fix-dependencies": "expo-cli doctor --fix-dependencies",
43
- "expo-fix": "npx expo install --fix",
44
- "update-apexchart": "node ./bin/update-appex-chart.js",
45
- "update-appexchart": "npm run update-apexchart",
46
- "delete-node-modules": "rimraf ./**/node_modules",
47
- "modifier-url-remote-git": "git remote set-url origin 'https://borispipo@github.com/borispipo/smart-eneo.git'",
48
- "update": "npm i expo @emotion/native@latest react-native-big-list@latest apexcharts@latest file-saver@latest fs-extra@latest google-libphonenumber@latest @pchmn/expo-material3-theme@latest @emotion/native@latest @fto-consult/common@latest react-native-blob-util react-native-gesture-handler@latest react-native-iphone-x-helper@latest react-native-mime-types@latest react-native-paper@latest react-native-paper-dates@latest @react-navigation/native@latest @react-navigation/native-stack@latest react-virtuoso@latest tippy.js@latest websql@latest xlsx@latest && npx expo install --fix && npm run update-apexchart"
49
- },
50
- "bin": {
51
- "expo-ui": "./bin/index.js"
52
- },
53
- "repository": {
54
- "type": "git",
55
- "url": "git+https://github.com/borispipo/expo-ui.git"
56
- },
57
- "keywords": [
58
- "Expo",
59
- "React-Native"
60
- ],
61
- "author": "Boris Fouomene",
62
- "license": "ISC",
63
- "bugs": {
64
- "url": "https://github.com/borispipo/expo-ui/issues"
65
- },
66
- "homepage": "https://github.com/borispipo/expo-ui#readme",
67
- "dependencies": {
68
- "@emotion/native": "^11.11.0",
69
- "@emotion/react": "^11.11.1",
70
- "@expo/html-elements": "^0.5.1",
71
- "@expo/vector-icons": "^13.0.0",
72
- "@faker-js/faker": "^8.0.2",
73
- "@fto-consult/common": "^3.36.1",
74
- "@pchmn/expo-material3-theme": "^1.3.1",
75
- "@react-native-community/datetimepicker": "7.2.0",
76
- "@react-native-community/netinfo": "9.3.10",
77
- "@react-native/assets-registry": "^0.72.0",
78
- "@react-navigation/native": "^6.1.7",
79
- "@react-navigation/native-stack": "^6.9.13",
80
- "@shopify/flash-list": "1.4.3",
81
- "apexcharts": "^3.42.0",
82
- "expo": "^49.0.11",
83
- "expo-camera": "~13.4.4",
84
- "expo-clipboard": "~4.3.1",
85
- "expo-font": "~11.4.0",
86
- "expo-image-picker": "~14.3.2",
87
- "expo-linking": "~5.0.2",
88
- "expo-sqlite": "~11.3.3",
89
- "expo-status-bar": "~1.6.0",
90
- "expo-system-ui": "~2.4.0",
91
- "expo-web-browser": "~12.3.2",
92
- "file-saver": "^2.0.5",
93
- "fs-extra": "^11.1.1",
94
- "google-libphonenumber": "^3.2.33",
95
- "htmlparser2-without-node-native": "^3.9.2",
96
- "is-plain-obj": "^4.1.0",
97
- "pdfmake": "^0.2.7",
98
- "process": "^0.11.10",
99
- "prop-types": "^15.8.1",
100
- "react": "^18.2.0",
101
- "react-content-loader": "^6.2.1",
102
- "react-dom": "^18.2.0",
103
- "react-native": "0.72.4",
104
- "react-native-big-list": "^1.6.1",
105
- "react-native-blob-util": "^0.18.6",
106
- "react-native-gesture-handler": "^2.12.1",
107
- "react-native-iphone-x-helper": "^1.3.1",
108
- "react-native-mime-types": "^2.4.0",
109
- "react-native-paper": "^5.10.4",
110
- "react-native-paper-dates": "^0.19.0",
111
- "react-native-reanimated": "~3.3.0",
112
- "react-native-safe-area-context": "4.6.3",
113
- "react-native-screens": "~3.22.0",
114
- "react-native-svg": "13.9.0",
115
- "react-native-web": "~0.19.6",
116
- "react-native-webview": "13.2.2",
117
- "react-virtuoso": "^4.5.1",
118
- "sharp-cli": "^4.1.1",
119
- "tippy.js": "^6.3.7",
120
- "websql": "^2.0.3",
121
- "xlsx": "^0.18.5"
122
- },
123
- "devDependencies": {
124
- "@expo/metro-config": "^0.10.7",
125
- "@expo/webpack-config": "^19.0.0",
126
- "babel-plugin-inline-dotenv": "^1.7.0",
127
- "babel-plugin-module-resolver": "^5.0.0",
128
- "uninstall": "^0.0.0"
129
- }
130
- }
1
+ {
2
+ "name": "@fto-consult/expo-ui",
3
+ "version": "6.37.5",
4
+ "description": "Bibliothèque de composants UI Expo,react-native",
5
+ "main": "node_modules/expo/AppEntry.js",
6
+ "scripts": {
7
+ "clear-npx-cache": "npx clear-npx-cache",
8
+ "publish1": "npm publish --access=public",
9
+ "unpublish": "npm -f unpublish @fto-consult/expo-ui",
10
+ "build-web": "",
11
+ "dev": "npx expo start -c --no-minify",
12
+ "start": "npx expo start --dev --no-minify",
13
+ "start-d": "npx expo start -c --no-dev --no-minify",
14
+ "start-p": "npm run start-d",
15
+ "expo-start-client": "npx expo start --dev --no-minify --dev-client",
16
+ "start-m": "npx expo start - c--dev--no -minify",
17
+ "android": "npx expo start --android -c",
18
+ "ios": "npx expo start --ios",
19
+ "web": "npx expo start --web",
20
+ "web-c": "npx expo start --web -c",
21
+ "eject": "expo eject",
22
+ "emulator": "npm run android-emulator",
23
+ "web-server": "npx serve web-build",
24
+ "build-android": "eas build --clear-cache -p android --profile preview",
25
+ "build-android-local": "eas build --platform android --local",
26
+ "build-android-dist": "eas build --clear-cache -p android",
27
+ "build-ios": "eas build --clear-cache -p ios --profile preview",
28
+ "build-ios-dist": "eas build --clear-cache -p ios",
29
+ "install-apk": "adb -s emulator-5554 install myapp.apk",
30
+ "android-emulator": "emulator -avd EMULATOR",
31
+ "flipper": "npx cross-env METRO_SERVER_PORT=19000 E:\\Studies\\react-native\\debugger\\Flipper-win\\Flipper.exe",
32
+ "test:build": "electron-webpack && electron-builder --dir -c.compression=store -c.mac.identity=null",
33
+ "compile-electron": "webpack --env platform=electron",
34
+ "compile-electron-p": "webpack --config ./electron/webpack.config.js --mode=production",
35
+ "electron": "electron ./electron",
36
+ "logcat": "adb -d logcat com.ftc.apps.salite1:E > errors.txt",
37
+ "logcat-export": "adb -d logcat com.ftc.apps.salite1 *:S > logcat.txt",
38
+ "electron-c": "npm run compile-electron && npm run electron",
39
+ "electron-p": "npm run compile-electron-p && npm run electron",
40
+ "update-app-version": "node ./update-app-version.js",
41
+ "find-licenses": "node ./find-licenses.js",
42
+ "fix-dependencies": "expo-cli doctor --fix-dependencies",
43
+ "expo-fix": "npx expo install --fix",
44
+ "update-apexchart": "node ./bin/update-appex-chart.js",
45
+ "update-appexchart": "npm run update-apexchart",
46
+ "delete-node-modules": "rimraf ./**/node_modules",
47
+ "modifier-url-remote-git": "git remote set-url origin 'https://borispipo@github.com/borispipo/smart-eneo.git'",
48
+ "update": "npm i expo @emotion/native@latest react-native-big-list@latest apexcharts@latest file-saver@latest fs-extra@latest google-libphonenumber@latest @pchmn/expo-material3-theme@latest @emotion/native@latest @fto-consult/common@latest react-native-blob-util react-native-gesture-handler@latest react-native-iphone-x-helper@latest react-native-mime-types@latest react-native-paper@latest react-native-paper-dates@latest @react-navigation/native@latest @react-navigation/native-stack@latest react-virtuoso@latest tippy.js@latest websql@latest xlsx@latest && npx expo install --fix && npm run update-apexchart"
49
+ },
50
+ "bin": {
51
+ "expo-ui": "./bin/index.js"
52
+ },
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "git+https://github.com/borispipo/expo-ui.git"
56
+ },
57
+ "keywords": [
58
+ "Expo",
59
+ "React-Native"
60
+ ],
61
+ "author": "Boris Fouomene",
62
+ "license": "ISC",
63
+ "bugs": {
64
+ "url": "https://github.com/borispipo/expo-ui/issues"
65
+ },
66
+ "homepage": "https://github.com/borispipo/expo-ui#readme",
67
+ "dependencies": {
68
+ "@emotion/native": "^11.11.0",
69
+ "@emotion/react": "^11.11.1",
70
+ "@expo/html-elements": "^0.5.1",
71
+ "@expo/vector-icons": "^13.0.0",
72
+ "@faker-js/faker": "^8.0.2",
73
+ "@fto-consult/common": "^3.36.2",
74
+ "@pchmn/expo-material3-theme": "^1.3.1",
75
+ "@react-native-async-storage/async-storage": "1.18.2",
76
+ "@react-native-community/datetimepicker": "7.2.0",
77
+ "@react-native-community/netinfo": "9.3.10",
78
+ "@react-native/assets-registry": "^0.72.0",
79
+ "@react-navigation/native": "^6.1.7",
80
+ "@react-navigation/native-stack": "^6.9.13",
81
+ "@shopify/flash-list": "1.4.3",
82
+ "apexcharts": "^3.42.0",
83
+ "expo": "^49.0.11",
84
+ "expo-camera": "~13.4.4",
85
+ "expo-clipboard": "~4.3.1",
86
+ "expo-font": "~11.4.0",
87
+ "expo-image-picker": "~14.3.2",
88
+ "expo-linking": "~5.0.2",
89
+ "expo-sqlite": "~11.3.3",
90
+ "expo-status-bar": "~1.6.0",
91
+ "expo-system-ui": "~2.4.0",
92
+ "expo-web-browser": "~12.3.2",
93
+ "file-saver": "^2.0.5",
94
+ "fs-extra": "^11.1.1",
95
+ "google-libphonenumber": "^3.2.33",
96
+ "htmlparser2-without-node-native": "^3.9.2",
97
+ "is-plain-obj": "^4.1.0",
98
+ "pdfmake": "^0.2.7",
99
+ "process": "^0.11.10",
100
+ "prop-types": "^15.8.1",
101
+ "react": "^18.2.0",
102
+ "react-content-loader": "^6.2.1",
103
+ "react-dom": "^18.2.0",
104
+ "react-native": "0.72.4",
105
+ "react-native-big-list": "^1.6.1",
106
+ "react-native-blob-util": "^0.18.6",
107
+ "react-native-gesture-handler": "^2.12.1",
108
+ "react-native-iphone-x-helper": "^1.3.1",
109
+ "react-native-mime-types": "^2.4.0",
110
+ "react-native-paper": "^5.10.4",
111
+ "react-native-paper-dates": "^0.19.0",
112
+ "react-native-reanimated": "~3.3.0",
113
+ "react-native-safe-area-context": "4.6.3",
114
+ "react-native-screens": "~3.22.0",
115
+ "react-native-svg": "13.9.0",
116
+ "react-native-web": "~0.19.6",
117
+ "react-native-webview": "13.2.2",
118
+ "react-virtuoso": "^4.5.1",
119
+ "sharp-cli": "^4.1.1",
120
+ "tippy.js": "^6.3.7",
121
+ "websql": "^2.0.3",
122
+ "xlsx": "^0.18.5"
123
+ },
124
+ "devDependencies": {
125
+ "@expo/metro-config": "^0.10.7",
126
+ "@expo/webpack-config": "^19.0.0",
127
+ "babel-plugin-inline-dotenv": "^1.7.0",
128
+ "babel-plugin-module-resolver": "^5.0.0",
129
+ "uninstall": "^0.0.0"
130
+ }
131
+ }