@umituz/react-native-notifications 1.0.5 → 1.0.6

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/lib/index.d.ts CHANGED
@@ -10,4 +10,5 @@ export { useNotificationsStore, useNotifications } from './infrastructure/storag
10
10
  export { NotificationService, notificationService } from './infrastructure/services/NotificationService';
11
11
  export { NotificationManager } from './infrastructure/services/NotificationManager';
12
12
  export { useNotificationSettings } from './infrastructure/hooks/useNotificationSettings';
13
+ export { NotificationsScreen } from './presentation/screens/NotificationsScreen';
13
14
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,YAAY,EACV,mBAAmB,EACnB,2BAA2B,EAC3B,qBAAqB,GACtB,MAAM,iCAAiC,CAAC;AAGzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAClF,YAAY,EACV,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,GACpB,MAAM,6CAA6C,CAAC;AAGrD,OAAO,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,MAAM,6CAA6C,CAAC;AAGtG,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AACzG,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AAGpF,OAAO,EAAE,uBAAuB,EAAE,MAAM,gDAAgD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,YAAY,EACV,mBAAmB,EACnB,2BAA2B,EAC3B,qBAAqB,GACtB,MAAM,iCAAiC,CAAC;AAGzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAClF,YAAY,EACV,mBAAmB,EACnB,mBAAmB,EACnB,mBAAmB,GACpB,MAAM,6CAA6C,CAAC;AAGrD,OAAO,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,MAAM,6CAA6C,CAAC;AAGtG,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AACzG,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AAGpF,OAAO,EAAE,uBAAuB,EAAE,MAAM,gDAAgD,CAAC;AAOzF,OAAO,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC"}
package/lib/index.js CHANGED
@@ -12,4 +12,9 @@ export { NotificationService, notificationService } from './infrastructure/servi
12
12
  export { NotificationManager } from './infrastructure/services/NotificationManager';
13
13
  // Hooks
14
14
  export { useNotificationSettings } from './infrastructure/hooks/useNotificationSettings';
15
+ // ============================================================================
16
+ // PRESENTATION LAYER EXPORTS
17
+ // ============================================================================
18
+ // Screens
19
+ export { NotificationsScreen } from './presentation/screens/NotificationsScreen';
15
20
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAaH,gBAAgB;AAChB,OAAO,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAOlF,wBAAwB;AACxB,OAAO,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,MAAM,6CAA6C,CAAC;AAEtG,WAAW;AACX,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AACzG,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AAEpF,QAAQ;AACR,OAAO,EAAE,uBAAuB,EAAE,MAAM,gDAAgD,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAaH,gBAAgB;AAChB,OAAO,EAAE,mBAAmB,EAAE,MAAM,6CAA6C,CAAC;AAOlF,wBAAwB;AACxB,OAAO,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,MAAM,6CAA6C,CAAC;AAEtG,WAAW;AACX,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AACzG,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAC;AAEpF,QAAQ;AACR,OAAO,EAAE,uBAAuB,EAAE,MAAM,gDAAgD,CAAC;AAEzF,+EAA+E;AAC/E,6BAA6B;AAC7B,+EAA+E;AAE/E,UAAU;AACV,OAAO,EAAE,mBAAmB,EAAE,MAAM,4CAA4C,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-notifications",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Offline-first local notifications system for React Native apps using expo-notifications",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -35,6 +35,7 @@
35
35
  "@umituz/react-native-design-system": "*",
36
36
  "@umituz/react-native-design-system-theme": "*",
37
37
  "expo-device": "~6.0.2",
38
+ "expo-notifications": "~0.28.0",
38
39
  "react": ">=18.2.0",
39
40
  "react-native": ">=0.74.0",
40
41
  "zustand": "^5.0.2"
@@ -67,7 +68,6 @@
67
68
  "@react-navigation/native": "^7.1.19",
68
69
  "@umituz/react-native-design-system-atoms": "*",
69
70
  "expo-linear-gradient": "^15.0.7",
70
- "expo-notifications": "~0.28.0",
71
71
  "react-native-safe-area-context": "^5.6.2"
72
72
  }
73
73
  }
package/src/index.ts CHANGED
@@ -32,3 +32,10 @@ export { NotificationManager } from './infrastructure/services/NotificationManag
32
32
 
33
33
  // Hooks
34
34
  export { useNotificationSettings } from './infrastructure/hooks/useNotificationSettings';
35
+
36
+ // ============================================================================
37
+ // PRESENTATION LAYER EXPORTS
38
+ // ============================================================================
39
+
40
+ // Screens
41
+ export { NotificationsScreen } from './presentation/screens/NotificationsScreen';