@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
@@ -3,7 +3,7 @@
3
3
  * Responsive sizing utilities for UI components.
4
4
  */
5
5
 
6
- import { getScreenDimensions } from '@device/detection';
6
+ import { getScreenDimensions } from '../device/detection';
7
7
  import {
8
8
  DEVICE_BREAKPOINTS,
9
9
  RESPONSIVE_PERCENTAGES,
@@ -39,7 +39,7 @@ import {
39
39
  getDeviceType,
40
40
  DeviceType,
41
41
  getSpacingMultiplier,
42
- } from '@device/detection';
42
+ } from '../device/detection';
43
43
  import { getMinTouchTarget } from './platformConstants';
44
44
 
45
45
  export interface UseResponsiveReturn {
@@ -12,7 +12,7 @@
12
12
  import { useMemo } from 'react';
13
13
  import { useDesignSystemTheme } from '../infrastructure/globalThemeStore';
14
14
  import { createResponsiveDesignTokens, type ResponsiveDesignTokens } from '../core/ResponsiveTokenFactory';
15
- import { useResponsive } from '@responsive/useResponsive';
15
+ import { useResponsive } from '../../responsive/useResponsive';
16
16
 
17
17
  /**
18
18
  * Hook for responsive design tokens
@@ -24,7 +24,7 @@
24
24
  */
25
25
 
26
26
  import type { ColorVariant } from '../../domain/entities/TypographyTypes';
27
- import type { DesignTokens } from '@theme';
27
+ import type { DesignTokens } from '../../../theme';
28
28
 
29
29
  // Cache for color variant validation to improve performance
30
30
  const COLOR_VARIANT_SET = new Set<string>([
@@ -32,7 +32,7 @@ import type { TextStyle as RNTextStyle } from 'react-native';
32
32
  type TextStyle = RNTextStyle;
33
33
 
34
34
  import type { TextStyleVariant } from '../../domain/entities/TypographyTypes';
35
- import type { DesignTokens } from '@theme';
35
+ import type { DesignTokens } from '../../../theme';
36
36
 
37
37
  // Cache for text style variant validation to improve performance
38
38
  const TEXT_STYLE_VARIANT_SET = new Set<string>([