@umituz/react-native-design-system 2.4.1 → 2.4.2

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.4.1",
3
+ "version": "2.4.2",
4
4
  "description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive and safe area utilities",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
package/src/index.ts CHANGED
@@ -337,6 +337,7 @@ export {
337
337
  createStackNavigator,
338
338
  FabButton,
339
339
  NavigationCleanupManager,
340
+ AppNavigation,
340
341
  type TabsNavigatorProps,
341
342
  type StackNavigatorProps,
342
343
  type FabButtonProps,
@@ -74,7 +74,7 @@ export const Countdown: React.FC<CountdownProps> = ({
74
74
  const labelFormatter = formatLabel || defaultFormatLabel;
75
75
 
76
76
  const timeUnits = useMemo(() => {
77
- const units = [];
77
+ const units: { value: number; label: string }[] = [];
78
78
 
79
79
  const shouldShowDays = showDays !== undefined ? showDays : timeRemaining.days > 0;
80
80