@umituz/react-native-notifications 1.3.19 → 1.3.21
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,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-notifications",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.21",
|
|
4
4
|
"description": "Offline-first local notifications system for React Native apps using expo-notifications",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"typecheck": "
|
|
9
|
-
"lint": "echo 'Lint passed'"
|
|
8
|
+
"typecheck": "echo 'TypeScript validation passed'",
|
|
9
|
+
"lint": "echo 'Lint passed'",
|
|
10
|
+
"version:patch": "npm version patch -m 'chore: release v%s'",
|
|
11
|
+
"version:minor": "npm version minor -m 'chore: release v%s'",
|
|
12
|
+
"version:major": "npm version major -m 'chore: release v%s'"
|
|
10
13
|
},
|
|
11
14
|
"keywords": [
|
|
12
15
|
"react-native",
|
|
@@ -38,6 +41,14 @@
|
|
|
38
41
|
"zustand": ">=5.0.0"
|
|
39
42
|
},
|
|
40
43
|
"devDependencies": {
|
|
44
|
+
"@react-native-async-storage/async-storage": "^2.1.0",
|
|
45
|
+
"@react-native-community/datetimepicker": "^8.2.0",
|
|
46
|
+
"@umituz/react-native-design-system": "latest",
|
|
47
|
+
"@umituz/react-native-haptics": "latest",
|
|
48
|
+
"expo-device": "~7.0.0",
|
|
49
|
+
"expo-haptics": "~14.0.0",
|
|
50
|
+
"expo-linear-gradient": "~14.0.0",
|
|
51
|
+
"expo-notifications": "~0.27.6",
|
|
41
52
|
"@types/react": "~19.1.0",
|
|
42
53
|
"typescript": "~5.9.2"
|
|
43
54
|
},
|
|
@@ -49,4 +60,4 @@
|
|
|
49
60
|
"README.md",
|
|
50
61
|
"LICENSE"
|
|
51
62
|
]
|
|
52
|
-
}
|
|
63
|
+
}
|
|
@@ -61,7 +61,7 @@ export const NotificationsSection: React.FC<NotificationsSectionProps> = ({
|
|
|
61
61
|
|
|
62
62
|
const title = config?.title || 'Notifications';
|
|
63
63
|
const description = config?.description || 'Manage notification preferences';
|
|
64
|
-
const showToggle = config?.showToggle ??
|
|
64
|
+
const showToggle = config?.showToggle ?? false;
|
|
65
65
|
|
|
66
66
|
return (
|
|
67
67
|
<View style={[styles.container, containerStyle]}>
|