@umituz/react-native-design-system 4.23.53 → 4.23.55

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 (88) hide show
  1. package/package.json +1 -1
  2. package/src/atoms/AtomicInput.tsx +2 -2
  3. package/src/atoms/index.ts +1 -1
  4. package/src/atoms/input/components/InputIcon.tsx +2 -2
  5. package/src/exports/molecules/navigation.ts +0 -2
  6. package/src/global.d.ts +4 -0
  7. package/src/image/infrastructure/services/ImageEditorService.ts +1 -1
  8. package/src/image/infrastructure/utils/FilterProcessor.ts +16 -14
  9. package/src/image/infrastructure/utils/LayerManager.ts +7 -4
  10. package/src/image/infrastructure/utils/validation/mime-type-validator.ts +1 -1
  11. package/src/image/presentation/components/ImageGallery.tsx +2 -2
  12. package/src/image/presentation/components/editor/TextEditorSheet.tsx +3 -3
  13. package/src/image/presentation/hooks/useImageBatch.ts +1 -1
  14. package/src/infinite-scroll/domain/types/infinite-scroll-config.ts +1 -1
  15. package/src/init/createAppInitializer.ts +1 -2
  16. package/src/init/env/createEnvConfig.ts +2 -3
  17. package/src/media/domain/entities/CardMultimedia.types.ts +17 -2
  18. package/src/media/domain/entities/MultimediaFlashcardTypes.ts +17 -2
  19. package/src/media/infrastructure/services/CardMediaUploadService.ts +2 -3
  20. package/src/media/infrastructure/services/CardMediaValidationService.ts +2 -2
  21. package/src/media/infrastructure/services/CardMultimediaService.ts +3 -2
  22. package/src/media/infrastructure/services/MediaUploadService.ts +2 -1
  23. package/src/media/infrastructure/services/MediaValidationService.ts +2 -2
  24. package/src/media/infrastructure/services/MultimediaFlashcardService.ts +3 -2
  25. package/src/media/presentation/hooks/card-multimedia.types.ts +5 -3
  26. package/src/media/presentation/hooks/multimedia.types.ts +5 -3
  27. package/src/media/presentation/hooks/useCardMediaUpload.ts +2 -1
  28. package/src/media/presentation/hooks/useCardMediaValidation.ts +2 -2
  29. package/src/media/presentation/hooks/useCardMultimediaFlashcard.ts +3 -2
  30. package/src/media/presentation/hooks/useMediaUpload.ts +2 -1
  31. package/src/media/presentation/hooks/useMediaValidation.ts +2 -2
  32. package/src/media/presentation/hooks/useMultimediaFlashcard.ts +3 -2
  33. package/src/molecules/BaseModal.tsx +2 -3
  34. package/src/molecules/bottom-sheet/components/BottomSheetModal.tsx +0 -1
  35. package/src/molecules/bottom-sheet/components/filter/FilterBottomSheet.tsx +15 -6
  36. package/src/molecules/bottom-sheet/components/filter/FilterSheetComponents/FilterSheetOption.tsx +1 -1
  37. package/src/molecules/calendar/infrastructure/storage/CalendarStore.ts +2 -3
  38. package/src/molecules/calendar/presentation/hooks/useCalendar.ts +3 -3
  39. package/src/molecules/circular-menu/CircularMenuItem.tsx +1 -1
  40. package/src/molecules/countdown/components/CountdownHeader.tsx +1 -1
  41. package/src/molecules/emoji/domain/entities/Emoji.ts +17 -6
  42. package/src/molecules/emoji/presentation/components/EmojiPicker.tsx +2 -2
  43. package/src/molecules/filter-group/FilterGroup.tsx +1 -1
  44. package/src/molecules/filter-group/types.ts +4 -3
  45. package/src/molecules/navigation/StackNavigator.tsx +3 -3
  46. package/src/molecules/navigation/TabsNavigator.tsx +6 -6
  47. package/src/molecules/navigation/components/TabLabel.tsx +1 -1
  48. package/src/molecules/navigation/index.ts +0 -2
  49. package/src/molecules/navigation/types.ts +2 -2
  50. package/src/molecules/navigation/utils/NavigationTheme.ts +1 -1
  51. package/src/molecules/navigation/utils/ScreenFactory.ts +2 -2
  52. package/src/molecules/splash/components/SplashScreen.tsx +0 -1
  53. package/src/molecules/splash/hooks/useSplashFlow.ts +2 -3
  54. package/src/onboarding/domain/entities/OnboardingQuestion.ts +8 -3
  55. package/src/onboarding/domain/entities/OnboardingSlide.ts +8 -6
  56. package/src/onboarding/domain/entities/OnboardingUserData.ts +5 -3
  57. package/src/onboarding/infrastructure/hooks/useOnboardingAnswers.ts +4 -3
  58. package/src/onboarding/infrastructure/services/ValidationManager.ts +5 -5
  59. package/src/onboarding/infrastructure/storage/OnboardingStoreSelectors.ts +2 -1
  60. package/src/onboarding/infrastructure/storage/actions/answerActions.ts +2 -1
  61. package/src/onboarding/presentation/components/BackgroundVideo.tsx +3 -2
  62. package/src/onboarding/presentation/components/OnboardingSlide.tsx +1 -1
  63. package/src/onboarding/presentation/components/QuestionRenderer.tsx +11 -11
  64. package/src/onboarding/presentation/components/QuestionSlide.tsx +3 -2
  65. package/src/onboarding/presentation/components/QuestionSlideHeader.tsx +1 -1
  66. package/src/onboarding/presentation/components/questions/QuestionOptionItem.tsx +1 -1
  67. package/src/onboarding/presentation/components/questions/SingleChoiceQuestion.tsx +1 -1
  68. package/src/onboarding/presentation/hooks/useOnboardingContainerStyle.ts +2 -1
  69. package/src/onboarding/presentation/hooks/useOnboardingScreenState.ts +5 -3
  70. package/src/onboarding/presentation/types/OnboardingProps.ts +5 -3
  71. package/src/storage/cache/domain/Cache.ts +4 -4
  72. package/src/storage/cache/infrastructure/TTLCache.ts +7 -7
  73. package/src/storage/domain/factories/StoreFactory.ts +6 -6
  74. package/src/storage/domain/utils/devUtils.ts +8 -8
  75. package/src/tanstack/infrastructure/monitoring/DevMonitorLogger.ts +6 -6
  76. package/src/tanstack/infrastructure/providers/TanstackProvider.tsx +1 -1
  77. package/src/tanstack/presentation/hooks/useOptimisticUpdate.ts +1 -1
  78. package/src/theme/core/TokenFactory.ts +40 -33
  79. package/src/theme/core/colors/DarkColors.ts +1 -1
  80. package/src/theme/core/colors/LightColors.ts +1 -1
  81. package/src/theme/infrastructure/globalThemeStore.ts +0 -1
  82. package/src/atoms/AtomicChip.tsx +0 -7
  83. package/src/image/infrastructure/utils/ImageFilterUtils.ts +0 -20
  84. package/src/molecules/navigation/createStackNavigator.ts +0 -20
  85. package/src/molecules/navigation/createTabNavigator.ts +0 -20
  86. package/src/safe-area/utils/performance.ts +0 -10
  87. package/src/storage/cache/types.d.ts +0 -3
  88. package/src/tanstack/types/global.d.ts +0 -1
@@ -1,20 +0,0 @@
1
- /**
2
- * Infrastructure - Filter Utils
3
- *
4
- * Legacy wrapper for backward compatibility. Use specific filter classes directly.
5
- */
6
-
7
- import { ColorAdjustmentFilters } from './filters/ColorAdjustmentFilters';
8
- import { StyleFilters } from './filters/StyleFilters';
9
- import { FilterHelpers } from './filters/FilterHelpers';
10
-
11
- export class ImageFilterUtils {
12
- static applyBrightness = ColorAdjustmentFilters.applyBrightness;
13
- static applyContrast = ColorAdjustmentFilters.applyContrast;
14
- static applySaturation = ColorAdjustmentFilters.applySaturation;
15
- static applyVintage = StyleFilters.applyVintage;
16
- static applyBlur = StyleFilters.applyBlur;
17
- static applyIntensity = FilterHelpers.applyIntensity;
18
- }
19
-
20
- export { ColorAdjustmentFilters, StyleFilters, FilterHelpers };
@@ -1,20 +0,0 @@
1
- import React from "react";
2
- import type { ParamListBase } from "@react-navigation/native";
3
- import type { StackNavigatorConfig } from "./types";
4
- import { StackNavigator } from "./StackNavigator";
5
-
6
- /**
7
- * Creates a Stack Navigator component based on configuration.
8
- *
9
- * @deprecated Use <StackNavigator config={...} /> instead to prevent re-mounting issues.
10
- * This wrapper is maintained for backward compatibility but using the component directly is recommended.
11
- */
12
- export function createStackNavigator<T extends ParamListBase>(
13
- config: StackNavigatorConfig<T>
14
- ): React.ComponentType {
15
- // Return a component that renders the new StackNavigator
16
- // Using React.memo to prevent unnecessary re-renders of the wrapper
17
- return React.memo(function StackNavigatorWrapper() {
18
- return React.createElement(StackNavigator as any, { config });
19
- });
20
- }
@@ -1,20 +0,0 @@
1
- import React from "react";
2
- import type { ParamListBase } from "@react-navigation/native";
3
- import type { TabNavigatorConfig } from "./types";
4
- import { TabsNavigator } from "./TabsNavigator";
5
-
6
- /**
7
- * Creates a Tab Navigator component based on configuration.
8
- *
9
- * @deprecated Use <TabsNavigator config={...} /> instead to prevent re-mounting issues.
10
- * This wrapper is maintained for backward compatibility but using the component directly is recommended.
11
- */
12
- export function createTabNavigator<T extends ParamListBase>(
13
- config: TabNavigatorConfig<T>
14
- ): React.ComponentType {
15
- // Return a component that renders the new TabsNavigator
16
- // Using React.memo to prevent unnecessary re-renders of the wrapper
17
- return React.memo(function TabNavigatorWrapper() {
18
- return React.createElement(TabsNavigator as any, { config });
19
- });
20
- }
@@ -1,10 +0,0 @@
1
- /**
2
- * Performance utilities for safe area hooks
3
- * @deprecated This file is deprecated. Use individual utility modules instead.
4
- * - useStableOptions and clearPerformanceCaches are now in './optimization'
5
- * - validateNumericInput and throttledWarn are now in './validation'
6
- */
7
-
8
- // Re-export for backward compatibility
9
- export { useStableOptions, clearPerformanceCaches } from './optimization';
10
- export { validateNumericInput, throttledWarn, clearValidationCache } from './validation';
@@ -1,3 +0,0 @@
1
- /// <reference types="../../types/global" />
2
-
3
- declare const __DEV__: boolean | undefined;
@@ -1 +0,0 @@
1
- declare var __DEV__: boolean;