Browse Source

Updated some libraries

Arnaud Vergnet 3 years ago
parent
commit
83d7aad2fe

+ 10
- 10
package.json View File

@@ -22,23 +22,23 @@
22 22
     "@nartc/react-native-barcode-mask": "^1.2.0",
23 23
     "@react-native-community/async-storage": "^1.11.0",
24 24
     "@react-native-community/masked-view": "^0.1.10",
25
-    "@react-native-community/push-notification-ios": "^1.2.2",
25
+    "@react-native-community/push-notification-ios": "^1.3.0",
26 26
     "@react-native-community/slider": "^3.0.0",
27
-    "@react-navigation/bottom-tabs": "^5.5.2",
28
-    "@react-navigation/native": "^5.5.1",
29
-    "@react-navigation/stack": "^5.5.1",
30
-    "i18n-js": "^3.3.0",
27
+    "@react-navigation/bottom-tabs": "^5.7.0",
28
+    "@react-navigation/native": "^5.7.0",
29
+    "@react-navigation/stack": "^5.7.0",
30
+    "i18n-js": "^3.7.1",
31 31
     "react": "16.11.0",
32 32
     "react-native": "0.62.2",
33 33
     "react-native-animatable": "^1.3.3",
34 34
     "react-native-app-intro-slider": "^4.0.0",
35
-    "react-native-appearance": "^0.3.3",
35
+    "react-native-appearance": "^0.3.4",
36 36
     "react-native-autolink": "^3.0.0",
37 37
     "react-native-calendars": "^1.300.0",
38
-    "react-native-camera": "^3.30.0",
38
+    "react-native-camera": "^3.31.1",
39 39
     "react-native-collapsible": "^1.5.2",
40 40
     "react-native-gesture-handler": "^1.6.1",
41
-    "react-native-image-modal": "^1.0.8",
41
+    "react-native-image-modal": "^1.0.9",
42 42
     "react-native-keychain": "6.0.0",
43 43
     "react-native-linear-gradient": "^2.5.6",
44 44
     "react-native-localize": "^1.4.0",
@@ -51,9 +51,9 @@
51 51
     "react-native-safe-area-context": "0.7.3",
52 52
     "react-native-screens": "^2.9.0",
53 53
     "react-native-splash-screen": "^3.2.0",
54
-    "react-native-vector-icons": "^6.6.0",
54
+    "react-native-vector-icons": "^7.0.0",
55 55
     "react-native-webview": "10.1.1",
56
-    "react-navigation-collapsible": "^5.6.1",
56
+    "react-navigation-collapsible": "^5.6.3",
57 57
     "react-navigation-header-buttons": "^4.0.2"
58 58
   },
59 59
   "devDependencies": {

+ 1
- 1
src/screens/Home/HomeScreen.js View File

@@ -191,7 +191,7 @@ class HomeScreen extends React.Component<Props, State> {
191 191
         const onPressSettings = () => this.props.navigation.navigate("settings");
192 192
         return <MaterialHeaderButtons>
193 193
             <Item title="log" iconName={logIcon} color={logColor} onPress={onPressLog}/>
194
-            <Item title={i18n.t("screens.settings.title")} iconName={"settings"} onPress={onPressSettings}/>
194
+            <Item title={i18n.t("screens.settings.title")} iconName={"cog"} onPress={onPressSettings}/>
195 195
         </MaterialHeaderButtons>;
196 196
     };
197 197
 

+ 1
- 1
src/screens/Planex/PlanexScreen.js View File

@@ -370,7 +370,7 @@ class PlanexScreen extends React.Component<Props, State> {
370 370
                     buttons={{
371 371
                         action: {
372 372
                             message: i18n.t("screens.planex.mascotDialog.ok"),
373
-                            icon: "settings",
373
+                            icon: "cog",
374 374
                             onPress: this.onGoToSettings,
375 375
                         },
376 376
                         cancel: {

+ 1
- 1
src/screens/Planning/PlanningScreen.js View File

@@ -256,7 +256,7 @@ class PlanningScreen extends React.Component<Props, State> {
256 256
                     visible={this.state.mascotDialogVisible}
257 257
                     title={i18n.t("screens.planning.mascotDialog.title")}
258 258
                     message={i18n.t("screens.planning.mascotDialog.message")}
259
-                    icon={"glass-cocktail"}
259
+                    icon={"party-popper"}
260 260
                     buttons={{
261 261
                         action: null,
262 262
                         cancel: {

Loading…
Cancel
Save