@umituz/react-native-settings 4.23.41 → 4.23.43

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.23.41",
3
+ "version": "4.23.43",
4
4
  "description": "Complete settings hub for React Native apps - consolidated package with settings, localization, about, legal, appearance, feedback, FAQs, rating, and gamification",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -38,24 +38,25 @@
38
38
  "url": "https://github.com/umituz/react-native-settings"
39
39
  },
40
40
  "dependencies": {
41
- "@umituz/react-native-design-system": "*",
41
+ "@umituz/react-native-design-system": "4.23.44",
42
+ "@umituz/react-native-localization": "^3.7.24",
42
43
  "firebase": "^12.7.0"
43
44
  },
44
45
  "peerDependencies": {
45
46
  "@expo/vector-icons": ">=14.0.0",
46
47
  "@react-native-async-storage/async-storage": ">=2.0.0",
48
+ "@react-native-community/datetimepicker": ">=8.0.0",
47
49
  "@react-navigation/native": ">=6.0.0",
48
50
  "@react-navigation/stack": ">=6.0.0",
49
51
  "@tanstack/react-query": ">=5.0.0",
50
- "expo-notifications": ">=0.28.0",
51
52
  "expo-device": ">=6.0.0",
52
53
  "expo-haptics": ">=15.0.0",
53
54
  "expo-localization": ">=16.0.0",
55
+ "expo-notifications": ">=0.28.0",
54
56
  "expo-store-review": ">=14.0.0",
55
57
  "i18next": ">=23.0.0",
56
- "react-i18next": ">=15.0.0",
57
- "@react-native-community/datetimepicker": ">=8.0.0",
58
58
  "react": ">=19.0.0",
59
+ "react-i18next": ">=15.0.0",
59
60
  "react-native": ">=0.81.0",
60
61
  "react-native-safe-area-context": ">=4.0.0",
61
62
  "zustand": ">=4.0.0"
@@ -75,8 +76,8 @@
75
76
  "@types/react": "~19.1.10",
76
77
  "@typescript-eslint/eslint-plugin": "^7.18.0",
77
78
  "@typescript-eslint/parser": "^7.18.0",
78
- "@umituz/react-native-auth": "*",
79
- "@umituz/react-native-firebase": "*",
79
+ "@umituz/react-native-auth": "^3.6.49",
80
+ "@umituz/react-native-firebase": "^1.13.102",
80
81
  "@umituz/react-native-sentry": "*",
81
82
  "eslint": "^8.57.0",
82
83
  "eslint-plugin-react": "^7.37.5",
@@ -84,21 +85,22 @@
84
85
  "expo-apple-authentication": "^8.0.8",
85
86
  "expo-auth-session": "^5.0.0",
86
87
  "expo-clipboard": "^8.0.8",
88
+ "expo-crypto": "^15.0.8",
87
89
  "expo-device": "~7.0.0",
88
90
  "expo-file-system": "^19.0.21",
89
- "expo-haptics": "~14.0.0",
90
- "expo-linear-gradient": "^15.0.2",
91
- "expo-crypto": "^15.0.8",
92
91
  "expo-font": "^14.0.10",
92
+ "expo-haptics": "~14.0.0",
93
93
  "expo-image": "^3.0.11",
94
94
  "expo-image-manipulator": "^14.0.8",
95
95
  "expo-image-picker": "^17.0.10",
96
+ "expo-linear-gradient": "^15.0.2",
96
97
  "expo-localization": "^17.0.8",
97
98
  "expo-media-library": "^18.2.1",
99
+ "expo-modules-core": "^3.0.29",
98
100
  "expo-network": "^8.0.8",
99
- "expo-sharing": "^14.0.8",
100
101
  "expo-notifications": "~0.27.6",
101
102
  "expo-secure-store": "^15.0.8",
103
+ "expo-sharing": "^14.0.8",
102
104
  "expo-store-review": "^8.0.0",
103
105
  "expo-video": "^3.0.15",
104
106
  "expo-web-browser": "^12.0.0",
@@ -110,7 +112,6 @@
110
112
  "react-native-gesture-handler": "^2.30.0",
111
113
  "react-native-reanimated": "^4.2.1",
112
114
  "react-native-safe-area-context": "^5.6.2",
113
- "expo-modules-core": "^3.0.29",
114
115
  "react-native-svg": "^15.15.1",
115
116
  "rn-emoji-keyboard": "^1.7.0",
116
117
  "typescript": "^5.3.0",
@@ -11,7 +11,7 @@ export const useAppearance = () => {
11
11
  } = useAppearanceMutations();
12
12
 
13
13
  return {
14
- themeMode: settings?.themeMode || "dark",
14
+ themeMode: settings?.themeMode || "light",
15
15
  customColors: settings?.customColors,
16
16
  isLoading,
17
17
  setThemeMode: (mode: ThemeMode) => updateThemeMutation.mutate(mode),
@@ -137,6 +137,7 @@ export const useSettingsScreenConfig = (
137
137
  logoutText: t("settings.account.logout"),
138
138
  logoutConfirmTitle: t("settings.account.logoutConfirmTitle"),
139
139
  logoutConfirmMessage: t("settings.account.logoutConfirmMessage"),
140
+ cancelText: t("common.cancel"),
140
141
  deleteAccountText: t("settings.account.deleteAccount"),
141
142
  deleteConfirmTitle: t("settings.account.deleteConfirmTitle"),
142
143
  deleteConfirmMessage: t("settings.account.deleteConfirmMessage"),