@umituz/react-native-design-system 2.3.12 → 2.3.14

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.
Files changed (81) hide show
  1. package/package.json +14 -12
  2. package/src/atoms/AtomicAvatar.tsx +1 -1
  3. package/src/atoms/AtomicBadge.tsx +1 -1
  4. package/src/atoms/AtomicButton.tsx +1 -1
  5. package/src/atoms/AtomicCard.tsx +1 -1
  6. package/src/atoms/AtomicChip.tsx +1 -1
  7. package/src/atoms/AtomicDatePicker.tsx +1 -1
  8. package/src/atoms/AtomicFab.tsx +2 -2
  9. package/src/atoms/AtomicIcon.tsx +1 -1
  10. package/src/atoms/AtomicInput.tsx +1 -1
  11. package/src/atoms/AtomicPicker.tsx +1 -1
  12. package/src/atoms/AtomicProgress.tsx +1 -1
  13. package/src/atoms/AtomicText.tsx +3 -3
  14. package/src/atoms/datepicker/components/DatePickerButton.tsx +1 -1
  15. package/src/atoms/datepicker/components/DatePickerModal.tsx +1 -1
  16. package/src/atoms/input/styles/inputStylesHelper.ts +1 -1
  17. package/src/atoms/picker/components/PickerChips.tsx +1 -1
  18. package/src/atoms/picker/components/PickerModal.tsx +1 -1
  19. package/src/atoms/picker/styles/pickerStyles.ts +1 -1
  20. package/src/atoms/skeleton/AtomicSkeleton.tsx +1 -1
  21. package/src/device/detection/deviceDetection.ts +2 -2
  22. package/src/device/detection/iPadDetection.ts +1 -1
  23. package/src/device/detection/iPadLayoutUtils.ts +1 -1
  24. package/src/index.ts +25 -0
  25. package/src/layouts/AppHeader/AppHeader.tsx +2 -2
  26. package/src/layouts/Container/Container.tsx +2 -2
  27. package/src/layouts/FormLayout/FormLayout.tsx +2 -2
  28. package/src/layouts/Grid/Grid.tsx +2 -2
  29. package/src/layouts/ScreenHeader/ScreenHeader.tsx +2 -2
  30. package/src/layouts/ScreenLayout/ScreenLayout.tsx +3 -3
  31. package/src/molecules/BaseModal.tsx +2 -2
  32. package/src/molecules/ConfirmationModalContent.tsx +1 -1
  33. package/src/molecules/ConfirmationModalMain.tsx +1 -1
  34. package/src/molecules/Divider/Divider.tsx +2 -2
  35. package/src/molecules/FormField.tsx +2 -2
  36. package/src/molecules/IconContainer.tsx +1 -1
  37. package/src/molecules/List/List.tsx +1 -1
  38. package/src/molecules/ListItem.tsx +2 -2
  39. package/src/molecules/SearchBar/SearchBar.tsx +2 -2
  40. package/src/molecules/SearchBar/SearchHistory.tsx +3 -3
  41. package/src/molecules/SearchBar/SearchSuggestions.tsx +2 -2
  42. package/src/molecules/StepProgress/StepProgress.tsx +1 -1
  43. package/src/molecules/alerts/AlertBanner.tsx +2 -2
  44. package/src/molecules/alerts/AlertContainer.tsx +1 -1
  45. package/src/molecules/alerts/AlertInline.tsx +2 -2
  46. package/src/molecules/alerts/AlertModal.tsx +2 -2
  47. package/src/molecules/alerts/AlertToast.tsx +2 -2
  48. package/src/molecules/avatar/Avatar.tsx +2 -2
  49. package/src/molecules/avatar/AvatarGroup.tsx +2 -2
  50. package/src/molecules/bottom-sheet/components/BottomSheet.tsx +1 -1
  51. package/src/molecules/bottom-sheet/components/BottomSheetModal.tsx +1 -1
  52. package/src/molecules/bottom-sheet/components/filter/FilterBottomSheet.tsx +2 -2
  53. package/src/molecules/bottom-sheet/components/filter/FilterSheet.tsx +2 -2
  54. package/src/molecules/bottom-sheet/components/filter/FilterSheetComponents/FilterSheetHeader.tsx +2 -2
  55. package/src/molecules/bottom-sheet/components/filter/FilterSheetComponents/FilterSheetOption.tsx +2 -2
  56. package/src/molecules/calendar/domain/entities/CalendarDay.entity.ts +115 -0
  57. package/src/molecules/calendar/domain/entities/CalendarEvent.entity.ts +202 -0
  58. package/src/molecules/calendar/domain/repositories/ICalendarRepository.ts +120 -0
  59. package/src/molecules/calendar/index.ts +98 -0
  60. package/src/molecules/calendar/infrastructure/services/CalendarEvents.ts +196 -0
  61. package/src/molecules/calendar/infrastructure/services/CalendarGeneration.ts +172 -0
  62. package/src/molecules/calendar/infrastructure/services/CalendarPermissions.ts +92 -0
  63. package/src/molecules/calendar/infrastructure/services/CalendarService.ts +161 -0
  64. package/src/molecules/calendar/infrastructure/services/CalendarSync.ts +205 -0
  65. package/src/molecules/calendar/infrastructure/storage/CalendarStore.ts +307 -0
  66. package/src/molecules/calendar/infrastructure/utils/DateUtilities.ts +128 -0
  67. package/src/molecules/calendar/presentation/components/AtomicCalendar.tsx +279 -0
  68. package/src/molecules/calendar/presentation/hooks/useCalendar.ts +356 -0
  69. package/src/molecules/confirmation-modal/components.tsx +2 -2
  70. package/src/molecules/confirmation-modal/styles/confirmationModalStyles.ts +1 -1
  71. package/src/molecules/index.ts +3 -0
  72. package/src/molecules/listitem/styles/listItemStyles.ts +1 -1
  73. package/src/organisms/FormContainer.tsx +2 -2
  74. package/src/responsive/gridUtils.ts +1 -1
  75. package/src/responsive/responsiveLayout.ts +1 -1
  76. package/src/responsive/responsiveModal.ts +1 -1
  77. package/src/responsive/responsiveSizing.ts +1 -1
  78. package/src/responsive/useResponsive.ts +1 -1
  79. package/src/theme/hooks/useResponsiveDesignTokens.ts +1 -1
  80. package/src/typography/presentation/utils/textColorUtils.ts +1 -1
  81. package/src/typography/presentation/utils/textStyleUtils.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-design-system",
3
- "version": "2.3.12",
3
+ "version": "2.3.14",
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",
@@ -54,6 +54,11 @@
54
54
  "@react-native-async-storage/async-storage": ">=2.0.0",
55
55
  "@react-native-community/datetimepicker": ">=8.0.0",
56
56
  "@react-navigation/native": ">=6.0.0",
57
+ "@umituz/react-native-uuid": "latest",
58
+ "expo-application": ">=5.0.0",
59
+ "expo-calendar": ">=13.0.0",
60
+ "expo-crypto": ">=13.0.0",
61
+ "expo-device": ">=5.0.0",
57
62
  "expo-linear-gradient": ">=15.0.0",
58
63
  "react": ">=19.0.0",
59
64
  "react-native": ">=0.81.0",
@@ -61,11 +66,7 @@
61
66
  "react-native-reanimated": ">=3.16.0",
62
67
  "react-native-safe-area-context": ">=5.0.0",
63
68
  "react-native-svg": ">=15.0.0",
64
- "zustand": ">=5.0.0",
65
- "expo-device": ">=5.0.0",
66
- "expo-application": ">=5.0.0",
67
- "@umituz/react-native-uuid": "latest",
68
- "expo-crypto": ">=13.0.0"
69
+ "zustand": ">=5.0.0"
69
70
  },
70
71
  "peerDependenciesMeta": {
71
72
  "expo-linear-gradient": {
@@ -95,10 +96,16 @@
95
96
  "@types/react": "~19.1.10",
96
97
  "@typescript-eslint/eslint-plugin": "^8.50.1",
97
98
  "@typescript-eslint/parser": "^8.50.1",
99
+ "@umituz/react-native-uuid": "latest",
98
100
  "eslint": "^9.39.2",
99
101
  "eslint-plugin-react": "^7.37.5",
100
102
  "eslint-plugin-react-hooks": "^7.0.1",
101
103
  "eslint-plugin-react-native": "^5.0.0",
104
+ "expo-application": "~5.9.1",
105
+ "expo-calendar": "~14.0.0",
106
+ "expo-crypto": "~14.0.0",
107
+ "expo-device": "~7.0.2",
108
+ "expo-localization": "~16.0.1",
102
109
  "react": "19.1.0",
103
110
  "react-native": "0.81.5",
104
111
  "react-native-gesture-handler": "^2.20.0",
@@ -106,12 +113,7 @@
106
113
  "react-native-safe-area-context": "^5.6.0",
107
114
  "react-native-svg": "15.12.1",
108
115
  "typescript": "~5.9.2",
109
- "zustand": "^5.0.2",
110
- "expo-device": "~7.0.2",
111
- "expo-application": "~5.9.1",
112
- "expo-localization": "~16.0.1",
113
- "@umituz/react-native-uuid": "latest",
114
- "expo-crypto": "~14.0.0"
116
+ "zustand": "^5.0.2"
115
117
  },
116
118
  "publishConfig": {
117
119
  "access": "public"
@@ -17,7 +17,7 @@
17
17
  import React from 'react';
18
18
  import { View, Image, StyleSheet, ViewStyle, ImageStyle, ImageSourcePropType } from 'react-native';
19
19
  import { AtomicText } from './AtomicText';
20
- import { useAppDesignTokens } from '@theme';
20
+ import { useAppDesignTokens } from '../theme';
21
21
 
22
22
  // =============================================================================
23
23
  // TYPE DEFINITIONS
@@ -7,7 +7,7 @@ import React from "react";
7
7
  import { View, StyleSheet, type StyleProp, type ViewStyle, type TextStyle } from "react-native";
8
8
  import { AtomicText } from "./AtomicText";
9
9
  import { AtomicIcon, type IconName } from "./AtomicIcon";
10
- import { useAppDesignTokens } from '@theme';
10
+ import { useAppDesignTokens } from '../theme';
11
11
 
12
12
  export type BadgeVariant = "primary" | "secondary" | "success" | "warning" | "error" | "info";
13
13
  export type BadgeSize = "sm" | "md" | "lg";
@@ -2,7 +2,7 @@ import React from 'react';
2
2
  import { StyleSheet, StyleProp, ViewStyle, TextStyle, TouchableOpacity, View } from 'react-native';
3
3
  import { AtomicText } from './AtomicText';
4
4
  import { AtomicIcon } from './AtomicIcon';
5
- import { useAppDesignTokens } from '@theme';
5
+ import { useAppDesignTokens } from '../theme';
6
6
  import type { IconName } from './AtomicIcon';
7
7
 
8
8
  export type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'text' | 'danger';
@@ -6,7 +6,7 @@
6
6
 
7
7
  import React from 'react';
8
8
  import { View, StyleSheet, type ViewStyle, type StyleProp } from 'react-native';
9
- import { useAppDesignTokens } from '@theme';
9
+ import { useAppDesignTokens } from '../theme';
10
10
 
11
11
  export type AtomicCardVariant = 'elevated' | 'outlined' | 'filled';
12
12
  export type AtomicCardPadding = 'none' | 'sm' | 'md' | 'lg';
@@ -19,7 +19,7 @@ import React from 'react';
19
19
  import { View, ViewStyle, TouchableOpacity } from 'react-native';
20
20
  import { AtomicText } from './AtomicText';
21
21
  import { AtomicIcon } from './AtomicIcon';
22
- import { useAppDesignTokens } from '@theme';
22
+ import { useAppDesignTokens } from '../theme';
23
23
 
24
24
  // =============================================================================
25
25
  // TYPE DEFINITIONS
@@ -46,7 +46,7 @@ import {
46
46
  type ViewStyle,
47
47
  } from 'react-native';
48
48
  import DateTimePicker, { DateTimePickerEvent } from '@react-native-community/datetimepicker';
49
- import { useAppDesignTokens } from '@theme';
49
+ import { useAppDesignTokens } from '../theme';
50
50
  import { AtomicText } from './AtomicText';
51
51
  import { DatePickerModal } from './datepicker/components/DatePickerModal';
52
52
  import { DatePickerButton } from './datepicker/components/DatePickerButton';
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { TouchableOpacity, StyleSheet } from 'react-native';
3
- import { useAppDesignTokens } from '@theme';
4
- import { useResponsive } from '@responsive';
3
+ import { useAppDesignTokens } from '../theme';
4
+ import { useResponsive } from '../responsive';
5
5
  import { AtomicIcon } from './AtomicIcon';
6
6
  import { AtomicFabProps } from './fab/types';
7
7
  import {
@@ -8,7 +8,7 @@
8
8
  import React from "react";
9
9
  import { View, StyleSheet, StyleProp, ViewStyle } from "react-native";
10
10
  import { Ionicons } from "@expo/vector-icons";
11
- import { useAppDesignTokens } from '@theme';
11
+ import { useAppDesignTokens } from '../theme';
12
12
  import {
13
13
  getIconSize,
14
14
  type IconSize as BaseIconSize
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { View, TextInput, Pressable, StyleSheet, StyleProp, ViewStyle, TextStyle } from 'react-native';
3
- import { useAppDesignTokens } from '@theme';
3
+ import { useAppDesignTokens } from '../theme';
4
4
  import { AtomicIcon } from './AtomicIcon';
5
5
  import { AtomicText } from './AtomicText';
6
6
  import { useInputState } from './input/hooks/useInputState';
@@ -46,7 +46,7 @@ import {
46
46
  TouchableOpacity,
47
47
  StyleSheet,
48
48
  } from 'react-native';
49
- import { useAppDesignTokens } from '@theme';
49
+ import { useAppDesignTokens } from '../theme';
50
50
  import { AtomicPickerProps } from './picker/types';
51
51
  import { AtomicIcon } from './AtomicIcon';
52
52
  import { AtomicText } from './AtomicText';
@@ -16,7 +16,7 @@
16
16
 
17
17
  import React from 'react';
18
18
  import { View, StyleSheet, ViewStyle, DimensionValue, Text } from 'react-native';
19
- import { useAppDesignTokens } from '@theme';
19
+ import { useAppDesignTokens } from '../theme';
20
20
 
21
21
  // =============================================================================
22
22
  // TYPE DEFINITIONS
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
2
  import { Text, StyleProp, TextStyle } from 'react-native';
3
- import { useAppDesignTokens, useResponsiveDesignTokens } from '@theme';
4
- import type { TextStyleVariant, ColorVariant } from '@typography';
5
- import { getTextColor } from '@typography';
3
+ import { useAppDesignTokens, useResponsiveDesignTokens } from '../theme';
4
+ import type { TextStyleVariant, ColorVariant } from '../typography';
5
+ import { getTextColor } from '../typography';
6
6
 
7
7
  export interface AtomicTextProps {
8
8
  children: React.ReactNode;
@@ -11,7 +11,7 @@ import {
11
11
  TouchableOpacity,
12
12
  StyleSheet,
13
13
  } from 'react-native';
14
- import { useAppDesignTokens } from '@theme';
14
+ import { useAppDesignTokens } from '../../../theme';
15
15
  import { AtomicIcon } from '../../AtomicIcon';
16
16
  import { AtomicText } from '../../AtomicText';
17
17
 
@@ -15,7 +15,7 @@ import {
15
15
  } from 'react-native';
16
16
  import { useSafeAreaInsets } from 'react-native-safe-area-context';
17
17
  import DateTimePicker, { DateTimePickerEvent } from '@react-native-community/datetimepicker';
18
- import { useAppDesignTokens } from '@theme';
18
+ import { useAppDesignTokens } from '../../../theme';
19
19
  import { AtomicText } from '../../AtomicText';
20
20
 
21
21
  interface DatePickerModalProps {
@@ -6,7 +6,7 @@
6
6
  */
7
7
 
8
8
  import { ViewStyle } from 'react-native';
9
- import { useAppDesignTokens } from '@theme';
9
+ import { useAppDesignTokens } from '../../../theme';
10
10
  import type { AtomicInputVariant, AtomicInputSize } from '../../AtomicInput';
11
11
 
12
12
  interface GetVariantStyleParams {
@@ -7,7 +7,7 @@
7
7
 
8
8
  import React from 'react';
9
9
  import { View, TouchableOpacity } from 'react-native';
10
- import { useAppDesignTokens } from '@theme';
10
+ import { useAppDesignTokens } from '../../../theme';
11
11
  import { PickerOption } from '../types';
12
12
  import { AtomicIcon } from '../../AtomicIcon';
13
13
  import { AtomicText } from '../../AtomicText';
@@ -20,7 +20,7 @@ import {
20
20
  TouchableOpacity,
21
21
  } from 'react-native';
22
22
  import { useSafeAreaInsets } from 'react-native-safe-area-context';
23
- import { useAppDesignTokens } from '@theme';
23
+ import { useAppDesignTokens } from '../../../theme';
24
24
  import { PickerOption } from '../types';
25
25
  import { AtomicIcon } from '../../AtomicIcon';
26
26
  import { AtomicText } from '../../AtomicText';
@@ -2,7 +2,7 @@
2
2
  * AtomicPicker Styles
3
3
  */
4
4
  import type { ViewStyle, TextStyle } from 'react-native';
5
- import type { DesignTokens } from '@theme';
5
+ import type { DesignTokens } from '../../../theme';
6
6
 
7
7
  export type PickerSize = 'sm' | 'md' | 'lg';
8
8
 
@@ -24,7 +24,7 @@
24
24
 
25
25
  import React, { useEffect, useRef } from 'react';
26
26
  import { View, StyleSheet, Animated, type StyleProp, type ViewStyle } from 'react-native';
27
- import { useAppDesignTokens } from '@theme';
27
+ import { useAppDesignTokens } from '../../theme';
28
28
  import type { SkeletonPattern, SkeletonConfig } from './AtomicSkeleton.types';
29
29
  import { SKELETON_PATTERNS } from './AtomicSkeleton.types';
30
30
 
@@ -6,8 +6,8 @@
6
6
  */
7
7
 
8
8
  import { Dimensions } from 'react-native';
9
- import { DEVICE_BREAKPOINTS, LAYOUT_CONSTANTS } from '@responsive/config';
10
- import { validateScreenDimensions } from '@responsive/validation';
9
+ import { DEVICE_BREAKPOINTS, LAYOUT_CONSTANTS } from '../../responsive/config';
10
+ import { validateScreenDimensions } from '../../responsive/validation';
11
11
 
12
12
  /**
13
13
  * Helper function for device detection with fallback
@@ -3,7 +3,7 @@
3
3
  */
4
4
 
5
5
  import { Dimensions, Platform } from 'react-native';
6
- import { DEVICE_BREAKPOINTS } from '@responsive/config';
6
+ import { DEVICE_BREAKPOINTS } from '../../responsive/config';
7
7
  import { IPAD_BREAKPOINTS } from './iPadBreakpoints';
8
8
 
9
9
  /**
@@ -3,7 +3,7 @@
3
3
  */
4
4
 
5
5
  import { Dimensions } from 'react-native';
6
- import { DEVICE_BREAKPOINTS } from '@responsive/config';
6
+ import { DEVICE_BREAKPOINTS } from '../../responsive/config';
7
7
  import {
8
8
  IPAD_BREAKPOINTS,
9
9
  TOUCH_TARGETS,
package/src/index.ts CHANGED
@@ -301,6 +301,31 @@ export {
301
301
  type Alert,
302
302
  type AlertAction,
303
303
  type AlertOptions,
304
+ // Calendar
305
+ AtomicCalendar,
306
+ useCalendar,
307
+ useCalendarNavigation,
308
+ useCalendarEvents,
309
+ useSystemCalendar,
310
+ CalendarService,
311
+ CalendarPermissions,
312
+ CalendarEvents,
313
+ CalendarGeneration,
314
+ CalendarSync,
315
+ DateUtilities,
316
+ useCalendarStore,
317
+ type AtomicCalendarProps,
318
+ type UseCalendarReturn,
319
+ type CalendarEvent,
320
+ type CreateCalendarEventRequest,
321
+ type UpdateCalendarEventRequest,
322
+ type SystemCalendar,
323
+ type CalendarPermissionResult,
324
+ type CalendarDay,
325
+ type CalendarMonth,
326
+ type CalendarWeek,
327
+ type ICalendarRepository,
328
+ type CalendarViewMode,
304
329
  } from './molecules';
305
330
 
306
331
  // =============================================================================
@@ -11,8 +11,8 @@
11
11
  import React from 'react';
12
12
  import { View, type ViewStyle } from 'react-native';
13
13
  import { SafeAreaView } from 'react-native-safe-area-context';
14
- import { useAppDesignTokens } from '@theme';
15
- import { AtomicText, AtomicButton, type IconName } from '@atoms';
14
+ import { useAppDesignTokens } from '../../theme';
15
+ import { AtomicText, AtomicButton, type IconName } from '../../atoms';
16
16
 
17
17
  // =============================================================================
18
18
  // TYPE DEFINITIONS
@@ -7,8 +7,8 @@
7
7
 
8
8
  import React, { useMemo } from 'react';
9
9
  import { View, StyleSheet, type StyleProp, type ViewStyle } from 'react-native';
10
- import { useResponsive } from '@responsive';
11
- import { useResponsiveDesignTokens } from '@theme';
10
+ import { useResponsive } from '../../responsive';
11
+ import { useResponsiveDesignTokens } from '../../theme';
12
12
 
13
13
  export interface ContainerProps {
14
14
  /** Container content */
@@ -7,8 +7,8 @@
7
7
 
8
8
  import React, { useMemo } from 'react';
9
9
  import { View, ScrollView, KeyboardAvoidingView, StyleSheet, type StyleProp, type ViewStyle } from 'react-native';
10
- import { useResponsiveDesignTokens } from '@theme';
11
- import { useResponsive } from '@responsive';
10
+ import { useResponsiveDesignTokens } from '../../theme';
11
+ import { useResponsive } from '../../responsive';
12
12
 
13
13
  export interface FormLayoutProps {
14
14
  /** Form fields and content */
@@ -7,8 +7,8 @@
7
7
 
8
8
  import React, { useMemo } from 'react';
9
9
  import { View, StyleSheet, type StyleProp, type ViewStyle } from 'react-native';
10
- import { useResponsive } from '@responsive';
11
- import { useResponsiveDesignTokens } from '@theme';
10
+ import { useResponsive } from '../../responsive';
11
+ import { useResponsiveDesignTokens } from '../../theme';
12
12
 
13
13
  export interface GridProps {
14
14
  /** Grid items to render */
@@ -14,8 +14,8 @@
14
14
 
15
15
  import React from 'react';
16
16
  import { View, TouchableOpacity, ViewStyle } from 'react-native';
17
- import { AtomicIcon, AtomicText } from '@atoms';
18
- import { useAppDesignTokens } from '@theme';
17
+ import { AtomicIcon, AtomicText } from '../../atoms';
18
+ import { useAppDesignTokens } from '../../theme';
19
19
 
20
20
  export interface ScreenHeaderProps {
21
21
  /** Screen title (centered) */
@@ -27,9 +27,9 @@ import React, { useMemo } from 'react';
27
27
  import { View, ScrollView, StyleSheet, type ViewStyle, RefreshControlProps } from 'react-native';
28
28
  import { SafeAreaView, useSafeAreaInsets } from 'react-native-safe-area-context';
29
29
  import type { Edge } from 'react-native-safe-area-context';
30
- import { useAppDesignTokens } from '@theme';
31
- import { getResponsiveMaxWidth } from '@responsive/responsiveSizing';
32
- import { getResponsiveHorizontalPadding } from '@responsive/responsiveLayout';
30
+ import { useAppDesignTokens } from '../../theme';
31
+ import { getResponsiveMaxWidth } from '../../responsive/responsiveSizing';
32
+ import { getResponsiveHorizontalPadding } from '../../responsive/responsiveLayout';
33
33
 
34
34
  /**
35
35
  * NOTE: This component now works in conjunction with the SafeAreaProvider
@@ -6,8 +6,8 @@
6
6
 
7
7
  import React from 'react';
8
8
  import { View, Modal, StyleSheet, TouchableOpacity, ViewStyle } from 'react-native';
9
- import { useAppDesignTokens } from '@theme';
10
- import { useResponsive } from '@responsive';
9
+ import { useAppDesignTokens } from '../theme';
10
+ import { useResponsive } from '../responsive';
11
11
 
12
12
  export interface BaseModalProps {
13
13
  visible: boolean;
@@ -6,7 +6,7 @@
6
6
 
7
7
  import React from 'react';
8
8
  import { View, ViewStyle, StyleProp } from 'react-native';
9
- import { useAppDesignTokens } from '@theme';
9
+ import { useAppDesignTokens } from '../theme';
10
10
  import { ConfirmationModalVariant } from './confirmation-modal/types/';
11
11
  import {
12
12
  getVariantConfig,
@@ -6,7 +6,7 @@
6
6
 
7
7
  import React from 'react';
8
8
  import { View, Modal, TouchableOpacity } from 'react-native';
9
- import { useAppDesignTokens } from '@theme';
9
+ import { useAppDesignTokens } from '../theme';
10
10
  import { ConfirmationModalProps } from './confirmation-modal/types/';
11
11
  import {
12
12
  getModalOverlayStyle,
@@ -10,8 +10,8 @@
10
10
 
11
11
  import React from 'react';
12
12
  import { View, StyleSheet, type StyleProp, type ViewStyle } from 'react-native';
13
- import { useAppDesignTokens } from '@theme/hooks/useAppDesignTokens';
14
- import { AtomicText } from '@atoms/AtomicText';
13
+ import { useAppDesignTokens } from '../../theme/hooks/useAppDesignTokens';
14
+ import { AtomicText } from '../../atoms/AtomicText';
15
15
  import type { DividerOrientation, DividerStyle, DividerSpacing } from './types';
16
16
  import {
17
17
  DividerUtils,
@@ -9,8 +9,8 @@
9
9
 
10
10
  import React from 'react';
11
11
  import { View, ViewStyle } from 'react-native';
12
- import { useAppDesignTokens } from '@theme';
13
- import { AtomicText, AtomicInput, type AtomicInputProps } from '@atoms';
12
+ import { useAppDesignTokens } from '../theme';
13
+ import { AtomicText, AtomicInput, type AtomicInputProps } from '../atoms';
14
14
 
15
15
  // =============================================================================
16
16
  // TYPE DEFINITIONS
@@ -16,7 +16,7 @@
16
16
 
17
17
  import React from 'react';
18
18
  import { View, StyleSheet } from 'react-native';
19
- import { useAppDesignTokens } from '@theme';
19
+ import { useAppDesignTokens } from '../theme';
20
20
 
21
21
  interface IconContainerProps {
22
22
  icon: React.ReactNode;
@@ -7,7 +7,7 @@
7
7
 
8
8
  import React from 'react';
9
9
  import { FlatList, RefreshControl, type FlatListProps, type ListRenderItem } from 'react-native';
10
- import { useResponsiveDesignTokens } from '@theme';
10
+ import { useResponsiveDesignTokens } from '../../theme';
11
11
 
12
12
  export interface ListProps<T> extends Omit<FlatListProps<T>, 'renderItem'> {
13
13
  /** Data array */
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { TouchableOpacity, View } from 'react-native';
3
- import { useAppDesignTokens } from '@theme';
4
- import { AtomicText, AtomicIcon } from '@atoms';
3
+ import { useAppDesignTokens } from '../theme';
4
+ import { AtomicText, AtomicIcon } from '../atoms';
5
5
  import { ListItemProps } from './listitem/types';
6
6
  import { getListItemStyles } from './listitem/styles/listItemStyles';
7
7
 
@@ -6,8 +6,8 @@ import {
6
6
  ActivityIndicator,
7
7
  StyleSheet,
8
8
  } from 'react-native';
9
- import { useAppDesignTokens } from '@theme';
10
- import { AtomicIcon } from '@atoms/AtomicIcon';
9
+ import { useAppDesignTokens } from '../../theme';
10
+ import { AtomicIcon } from '../../atoms/AtomicIcon';
11
11
  import type { SearchBarProps } from './types';
12
12
 
13
13
  export const SearchBar = forwardRef<TextInput, SearchBarProps>(({
@@ -4,9 +4,9 @@ import {
4
4
  TouchableOpacity,
5
5
  StyleSheet,
6
6
  } from 'react-native';
7
- import { AtomicText } from '@atoms/AtomicText';
8
- import { AtomicIcon } from '@atoms/AtomicIcon';
9
- import { useAppDesignTokens } from '@theme';
7
+ import { AtomicText } from '../../atoms/AtomicText';
8
+ import { AtomicIcon } from '../../atoms/AtomicIcon';
9
+ import { useAppDesignTokens } from '../../theme';
10
10
  import type { SearchHistoryProps } from './types';
11
11
 
12
12
  export const SearchHistory: React.FC<SearchHistoryProps> = ({
@@ -4,8 +4,8 @@ import {
4
4
  TouchableOpacity,
5
5
  StyleSheet,
6
6
  } from 'react-native';
7
- import { AtomicText } from '@atoms/AtomicText';
8
- import { useAppDesignTokens } from '@theme';
7
+ import { AtomicText } from '../../atoms/AtomicText';
8
+ import { useAppDesignTokens } from '../../theme';
9
9
  import type { SearchSuggestionsProps } from './types';
10
10
 
11
11
  export function SearchSuggestions<T>({
@@ -1,6 +1,6 @@
1
1
  import React, { useMemo } from "react";
2
2
  import { View, StyleSheet, ViewStyle } from "react-native";
3
- import { useAppDesignTokens } from '@theme/hooks/useAppDesignTokens';
3
+ import { useAppDesignTokens } from '../../theme/hooks/useAppDesignTokens';
4
4
 
5
5
  export interface StepProgressProps {
6
6
  currentStep: number;
@@ -8,8 +8,8 @@
8
8
  import React from 'react';
9
9
  import { StyleSheet, View, Pressable } from 'react-native';
10
10
  import { useSafeAreaInsets } from 'react-native-safe-area-context';
11
- import { AtomicText, AtomicIcon } from '@atoms';
12
- import { useAppDesignTokens } from '@theme';
11
+ import { AtomicText, AtomicIcon } from '../../atoms';
12
+ import { useAppDesignTokens } from '../../theme';
13
13
  import { Alert, AlertType, AlertPosition } from './AlertTypes';
14
14
  import { useAlertStore } from './AlertStore';
15
15
 
@@ -5,7 +5,7 @@
5
5
  import React from 'react';
6
6
  import { View, StyleSheet } from 'react-native';
7
7
  import { useSafeAreaInsets } from 'react-native-safe-area-context';
8
- import { useAppDesignTokens } from '@theme';
8
+ import { useAppDesignTokens } from '../../theme';
9
9
  import { useAlertStore } from './AlertStore';
10
10
  import { AlertToast } from './AlertToast';
11
11
  import { AlertBanner } from './AlertBanner';
@@ -4,8 +4,8 @@
4
4
 
5
5
  import React from 'react';
6
6
  import { StyleSheet, View } from 'react-native';
7
- import { AtomicText } from '@atoms';
8
- import { useAppDesignTokens } from '@theme';
7
+ import { AtomicText } from '../../atoms';
8
+ import { useAppDesignTokens } from '../../theme';
9
9
  import { Alert, AlertType } from './AlertTypes';
10
10
 
11
11
  interface AlertInlineProps {
@@ -4,8 +4,8 @@
4
4
 
5
5
  import React from 'react';
6
6
  import { StyleSheet, View, Modal, Pressable } from 'react-native';
7
- import { AtomicText, AtomicButton } from '@atoms';
8
- import { useAppDesignTokens } from '@theme';
7
+ import { AtomicText, AtomicButton } from '../../atoms';
8
+ import { useAppDesignTokens } from '../../theme';
9
9
  import { Alert, AlertType } from './AlertTypes';
10
10
  import { useAlertStore } from './AlertStore';
11
11
 
@@ -7,8 +7,8 @@
7
7
 
8
8
  import React from 'react';
9
9
  import { StyleSheet, View, Pressable, StyleProp, ViewStyle } from 'react-native';
10
- import { AtomicText, AtomicIcon } from '@atoms';
11
- import { useAppDesignTokens } from '@theme';
10
+ import { AtomicText, AtomicIcon } from '../../atoms';
11
+ import { useAppDesignTokens } from '../../theme';
12
12
  import { Alert, AlertType } from './AlertTypes';
13
13
  import { useAlertStore } from './AlertStore';
14
14
 
@@ -7,8 +7,8 @@
7
7
 
8
8
  import React from 'react';
9
9
  import { View, Image, StyleSheet, type StyleProp, type ViewStyle, type ImageStyle } from 'react-native';
10
- import { useAppDesignTokens } from '@theme';
11
- import { AtomicText, AtomicIcon } from '@atoms';
10
+ import { useAppDesignTokens } from '../../theme';
11
+ import { AtomicText, AtomicIcon } from '../../atoms';
12
12
  import type { AvatarSize, AvatarShape } from './Avatar.utils';
13
13
  import {
14
14
  SIZE_CONFIGS,
@@ -7,8 +7,8 @@
7
7
 
8
8
  import React from 'react';
9
9
  import { View, StyleSheet, type StyleProp, type ViewStyle } from 'react-native';
10
- import { useAppDesignTokens } from '@theme';
11
- import { AtomicText } from '@atoms';
10
+ import { useAppDesignTokens } from '../../theme';
11
+ import { AtomicText } from '../../atoms';
12
12
  import { Avatar } from './Avatar';
13
13
  import type { AvatarSize, AvatarShape } from './Avatar.utils';
14
14
  import {