@umituz/react-native-settings 4.21.29 → 4.23.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/package.json +23 -10
- package/src/domains/appearance/presentation/hooks/mutations/useAppearanceMutations.ts +1 -1
- package/src/domains/appearance/presentation/hooks/queries/useAppearanceQuery.ts +1 -1
- package/src/presentation/hooks/mutations/useSettingsMutations.ts +1 -1
- package/src/presentation/hooks/queries/useSettingsQuery.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-settings",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.23.0",
|
|
4
4
|
"description": "Complete settings hub for React Native apps - consolidated package with settings, about, legal, appearance, feedback, FAQs, rating, and gamification",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -35,9 +35,7 @@
|
|
|
35
35
|
"url": "https://github.com/umituz/react-native-settings"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@umituz/react-native-auth": "*",
|
|
39
38
|
"@umituz/react-native-design-system": "*",
|
|
40
|
-
"@umituz/react-native-localization": "*",
|
|
41
39
|
"firebase": "^12.7.0"
|
|
42
40
|
},
|
|
43
41
|
"peerDependencies": {
|
|
@@ -49,31 +47,46 @@
|
|
|
49
47
|
"expo-device": ">=6.0.0",
|
|
50
48
|
"expo-haptics": ">=15.0.0",
|
|
51
49
|
"@react-native-community/datetimepicker": ">=8.0.0",
|
|
52
|
-
"@umituz/react-native-haptics": "*",
|
|
53
50
|
"react": ">=19.0.0",
|
|
54
51
|
"react-native": ">=0.81.0",
|
|
55
52
|
"react-native-safe-area-context": ">=4.0.0"
|
|
56
53
|
},
|
|
57
54
|
"devDependencies": {
|
|
58
55
|
"@expo/vector-icons": "^15.0.0",
|
|
56
|
+
"@gorhom/bottom-sheet": "^5.2.8",
|
|
57
|
+
"@react-native-async-storage/async-storage": "^2.2.0",
|
|
58
|
+
"@react-native-community/datetimepicker": "^8.2.0",
|
|
59
59
|
"@react-navigation/native": "^7.1.26",
|
|
60
60
|
"@react-navigation/stack": "^7.6.13",
|
|
61
61
|
"@tanstack/react-query": "^5.0.0",
|
|
62
62
|
"@types/react": "~19.1.10",
|
|
63
|
-
"expo-notifications": "~0.27.6",
|
|
64
|
-
"expo-device": "~7.0.0",
|
|
65
|
-
"expo-haptics": "~14.0.0",
|
|
66
|
-
"@react-native-community/datetimepicker": "^8.2.0",
|
|
67
|
-
"@umituz/react-native-haptics": "*",
|
|
68
63
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
69
64
|
"@typescript-eslint/parser": "^7.18.0",
|
|
65
|
+
"@umituz/react-native-auth": "*",
|
|
66
|
+
"@umituz/react-native-firebase": "*",
|
|
67
|
+
"@umituz/react-native-localization": "*",
|
|
68
|
+
"@umituz/react-native-sentry": "*",
|
|
70
69
|
"eslint": "^8.57.0",
|
|
71
70
|
"eslint-plugin-react": "^7.37.5",
|
|
72
71
|
"eslint-plugin-react-native": "^5.0.0",
|
|
72
|
+
"expo-apple-authentication": "^8.0.8",
|
|
73
|
+
"expo-auth-session": "^5.0.0",
|
|
74
|
+
"expo-clipboard": "^8.0.8",
|
|
75
|
+
"expo-device": "~7.0.0",
|
|
76
|
+
"expo-haptics": "~14.0.0",
|
|
77
|
+
"expo-linear-gradient": "^15.0.2",
|
|
78
|
+
"expo-notifications": "~0.27.6",
|
|
79
|
+
"expo-web-browser": "^12.0.0",
|
|
80
|
+
"firebase": "^12.7.0",
|
|
81
|
+
"i18next": "^25.7.3",
|
|
73
82
|
"react": "19.1.0",
|
|
83
|
+
"react-i18next": "^16.5.1",
|
|
74
84
|
"react-native": "0.81.5",
|
|
85
|
+
"react-native-gesture-handler": "^2.30.0",
|
|
86
|
+
"react-native-reanimated": "^4.2.1",
|
|
75
87
|
"react-native-safe-area-context": "^5.6.2",
|
|
76
|
-
"typescript": "^5.3.0"
|
|
88
|
+
"typescript": "^5.3.0",
|
|
89
|
+
"zustand": "^5.0.9"
|
|
77
90
|
},
|
|
78
91
|
"publishConfig": {
|
|
79
92
|
"access": "public"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useMutation, useQueryClient } from "@
|
|
1
|
+
import { useMutation, useQueryClient } from "@umituz/react-native-design-system";
|
|
2
2
|
import { getAppearanceService } from "../../../infrastructure/services/AppearanceService";
|
|
3
3
|
import { appearanceKeys } from "../queries/useAppearanceQuery";
|
|
4
4
|
import { ThemeMode, CustomThemeColors } from "@umituz/react-native-design-system";
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Mutations for updating and resetting user settings
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { useMutation, useQueryClient } from '@
|
|
7
|
+
import { useMutation, useQueryClient } from '@umituz/react-native-design-system';
|
|
8
8
|
import { getSettingsService } from '../../../infrastructure/services/SettingsService';
|
|
9
9
|
import { SETTINGS_QUERY_KEY } from '../queries/useSettingsQuery';
|
|
10
10
|
import type { UserSettings } from '../../../application/ports/ISettingsRepository';
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Fetches user settings using TanStack Query
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { useQuery } from '@
|
|
7
|
+
import { useQuery } from '@umituz/react-native-design-system';
|
|
8
8
|
import { getSettingsService } from '../../../infrastructure/services/SettingsService';
|
|
9
9
|
import type { UserSettings } from '../../../application/ports/ISettingsRepository';
|
|
10
10
|
|