@umituz/react-native-design-system 2.8.28 → 2.8.29

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-design-system",
3
- "version": "2.8.28",
3
+ "version": "2.8.29",
4
4
  "description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive, safe area, exception, infinite scroll, UUID, image, timezone, offline, and onboarding utilities",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -14,11 +14,17 @@ export type {
14
14
  IconRendererProps,
15
15
  LabelProcessorProps,
16
16
  FabConfig,
17
+ } from "./types";
18
+
19
+ export type {
17
20
  StackScreenProps,
18
- BottomTabScreenProps,
19
21
  StackNavigationOptions,
22
+ } from "@react-navigation/stack";
23
+
24
+ export type {
25
+ BottomTabScreenProps,
20
26
  BottomTabNavigationOptions,
21
- } from "./types";
27
+ } from "@react-navigation/bottom-tabs";
22
28
 
23
29
  export { DEFAULT_FAB_CONFIG } from "./types";
24
30
 
@@ -9,9 +9,6 @@ import type {
9
9
  } from "@react-navigation/stack";
10
10
  import type { IconName } from "../../atoms/AtomicIcon";
11
11
 
12
- // Re-export navigation types
13
- export type { StackScreenProps, BottomTabScreenProps, StackNavigationOptions, BottomTabNavigationOptions };
14
-
15
12
  export type NavigationParams = Record<string, unknown>;
16
13
 
17
14
  /**