@umituz/react-native-design-system 2.4.0 → 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.0",
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",
@@ -123,6 +123,7 @@
123
123
  "expo-device": "~7.0.2",
124
124
  "expo-file-system": "^19.0.21",
125
125
  "expo-haptics": "~14.0.0",
126
+ "expo-linear-gradient": "~15.0.7",
126
127
  "expo-localization": "~16.0.1",
127
128
  "expo-sharing": "~14.0.8",
128
129
  "react": "19.1.0",
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,
@@ -405,6 +406,14 @@ export {
405
406
  type CountdownTarget,
406
407
  type CountdownFormatOptions,
407
408
  type CountdownDisplayConfig,
409
+ // Photo Upload
410
+ PhotoUploadCard,
411
+ type PhotoUploadCardProps,
412
+ type PhotoUploadCardConfig,
413
+ // Step Header
414
+ StepHeader,
415
+ type StepHeaderProps,
416
+ type StepHeaderConfig,
408
417
  // Animation
409
418
  Animated,
410
419
  useSharedValue,
@@ -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