@umituz/react-native-settings 4.20.49 → 4.20.51

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-settings",
3
- "version": "4.20.49",
3
+ "version": "4.20.51",
4
4
  "description": "Complete settings hub for React Native apps - consolidated package with settings, about, legal, appearance, feedback, FAQs, and rating",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -63,6 +63,8 @@
63
63
  "@react-navigation/bottom-tabs": "^7.9.0",
64
64
  "@react-navigation/native": "^7.1.26",
65
65
  "@react-navigation/stack": "^7.6.13",
66
+ "@sentry/react-native": "^7.8.0",
67
+ "@sentry/types": "^10.32.1",
66
68
  "@tanstack/react-query": "^5.0.0",
67
69
  "@types/jest": "^29.5.14",
68
70
  "@types/react": "~19.1.10",
@@ -76,6 +78,7 @@
76
78
  "@umituz/react-native-localization": "latest",
77
79
  "@umituz/react-native-notifications": "latest",
78
80
  "@umituz/react-native-onboarding": "latest",
81
+ "@umituz/react-native-sentry": "^1.4.3",
79
82
  "@umituz/react-native-storage": "latest",
80
83
  "@umituz/react-native-tanstack": "latest",
81
84
  "@umituz/react-native-uuid": "latest",
@@ -8,7 +8,7 @@
8
8
  import React, { useMemo } from "react";
9
9
  import { createStackNavigator } from "@react-navigation/stack";
10
10
  import { useAppDesignTokens } from "@umituz/react-native-design-system";
11
- import { useLocalization } from "@umituz/react-native-localization";
11
+ import { useLocalization, LanguageSelectionScreen } from "@umituz/react-native-localization";
12
12
  import { NotificationSettingsScreen } from "@umituz/react-native-notifications";
13
13
  import { SettingsScreen } from "../screens/SettingsScreen";
14
14
  import { AppearanceScreen } from "../screens/AppearanceScreen";
@@ -216,6 +216,20 @@ export const SettingsStackNavigator: React.FC<SettingsStackNavigatorProps> = ({
216
216
  />
217
217
  ) : null
218
218
  )}
219
+ <Stack.Screen
220
+ name="LanguageSelection"
221
+ options={{
222
+ headerShown: true,
223
+ headerTitle: t("settings.language.title"),
224
+ headerTitleAlign: "center",
225
+ }}
226
+ >
227
+ {() => (
228
+ <LanguageSelectionScreen
229
+ searchPlaceholder={t("settings.languageSelection.searchPlaceholder")}
230
+ />
231
+ )}
232
+ </Stack.Screen>
219
233
  </Stack.Navigator>
220
234
  );
221
235
  };
@@ -41,6 +41,7 @@ export type SettingsStackParamList = {
41
41
  Legal: undefined;
42
42
  Notifications: undefined;
43
43
  FAQ: undefined;
44
+ LanguageSelection: undefined;
44
45
  };
45
46
 
46
47
  /**