@umituz/react-native-design-system 4.23.64 → 4.23.66
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 +1 -1
- package/src/atoms/index.ts +31 -17
- package/src/atoms/picker/{types/index.ts → types.ts} +1 -1
- package/src/device/index.ts +0 -1
- package/src/device/infrastructure/services/PersistentDeviceIdService.ts +3 -49
- package/src/device/presentation/hooks/useDeviceInfo.ts +49 -15
- package/src/image/index.ts +0 -1
- package/src/image/infrastructure/utils/LayerManager.ts +0 -1
- package/src/image/presentation/components/ImageGallery.tsx +38 -37
- package/src/image/presentation/components/editor/StickerPickerSheet.tsx +9 -5
- package/src/index.ts +25 -25
- package/src/media/infrastructure/utils/file-media-utils.ts +2 -0
- package/src/molecules/bottom-sheet/components/BottomSheet.tsx +2 -2
- package/src/molecules/calendar/infrastructure/stores/useCalendarEvents.ts +16 -3
- package/src/molecules/filter-group/FilterGroup.tsx +1 -1
- package/src/molecules/navigation/index.ts +0 -3
- package/src/molecules/splash/index.ts +3 -3
- package/src/offline/presentation/hooks/useOffline.ts +16 -5
- package/src/onboarding/hooks/useOnboardingFlow.ts +13 -4
- package/src/presentation/utils/variants/index.ts +6 -0
- package/src/storage/cache/presentation/useCachedValue.ts +0 -3
- package/src/storage/domain/utils/ValidationUtils.ts +44 -0
- package/src/storage/infrastructure/adapters/StorageService.ts +18 -3
- package/src/storage/infrastructure/repositories/BaseStorageOperations.ts +6 -1
- package/src/storage/presentation/hooks/CacheStorageOperations.ts +13 -2
- package/src/storage/presentation/hooks/usePersistentCache.ts +30 -12
- package/src/theme/infrastructure/storage/ThemeStorage.ts +17 -1
- package/src/atoms/GlassView/index.ts +0 -1
- package/src/atoms/badge/index.ts +0 -6
- package/src/atoms/button/index.ts +0 -6
- package/src/atoms/card/index.ts +0 -2
- package/src/atoms/chip/index.ts +0 -6
- package/src/atoms/skeleton/index.ts +0 -9
- package/src/atoms/status-bar/index.ts +0 -6
- package/src/device/infrastructure/repositories/LegacyDeviceIdRepository.ts +0 -30
- package/src/exports/atoms.ts +0 -81
- package/src/exports/device.ts +0 -68
- package/src/exports/exception.ts +0 -7
- package/src/exports/filesystem.ts +0 -1
- package/src/exports/haptics.ts +0 -7
- package/src/exports/image.ts +0 -83
- package/src/exports/infinite-scroll.ts +0 -7
- package/src/exports/init.ts +0 -5
- package/src/exports/layouts.ts +0 -19
- package/src/exports/loading.ts +0 -20
- package/src/exports/media.ts +0 -1
- package/src/exports/molecules/alerts.ts +0 -22
- package/src/exports/molecules/bottom-sheet.ts +0 -19
- package/src/exports/molecules/calendar.ts +0 -23
- package/src/exports/molecules/core.ts +0 -29
- package/src/exports/molecules/countdown.ts +0 -23
- package/src/exports/molecules/emoji.ts +0 -17
- package/src/exports/molecules/index.ts +0 -13
- package/src/exports/molecules/misc.ts +0 -42
- package/src/exports/molecules/navigation.ts +0 -44
- package/src/exports/molecules/swipe-actions.ts +0 -15
- package/src/exports/offline.ts +0 -7
- package/src/exports/onboarding.ts +0 -6
- package/src/exports/organisms.ts +0 -9
- package/src/exports/responsive.ts +0 -36
- package/src/exports/safe-area.ts +0 -6
- package/src/exports/storage.ts +0 -1
- package/src/exports/tanstack.ts +0 -1
- package/src/exports/theme.ts +0 -44
- package/src/exports/timezone.ts +0 -7
- package/src/exports/typography.ts +0 -22
- package/src/exports/utilities.ts +0 -6
- package/src/exports/uuid.ts +0 -7
- package/src/exports/variants.ts +0 -22
- package/src/image/presentation/components/image/AtomicImage.tsx +0 -24
- package/src/molecules/splash/components/index.ts +0 -1
- package/src/molecules/splash/hooks/index.ts +0 -6
- /package/src/atoms/fab/{types/index.ts → types.ts} +0 -0
- /package/src/molecules/splash/{constants/index.ts → constants.ts} +0 -0
- /package/src/molecules/splash/{types/index.ts → types.ts} +0 -0
package/src/exports/device.ts
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Device Exports
|
|
3
|
-
* Device detection and capabilities
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export {
|
|
7
|
-
// Device detection
|
|
8
|
-
DeviceType,
|
|
9
|
-
getScreenDimensions,
|
|
10
|
-
isPhone,
|
|
11
|
-
isSmallPhone,
|
|
12
|
-
isLargePhone,
|
|
13
|
-
isTablet,
|
|
14
|
-
isLandscape,
|
|
15
|
-
getDeviceType,
|
|
16
|
-
getSpacingMultiplier,
|
|
17
|
-
// iPad detection
|
|
18
|
-
isIPad,
|
|
19
|
-
isIPadMini,
|
|
20
|
-
isIPadPro,
|
|
21
|
-
isIPadLandscape,
|
|
22
|
-
IPAD_BREAKPOINTS,
|
|
23
|
-
TOUCH_TARGETS,
|
|
24
|
-
CONTENT_WIDTH_CONSTRAINTS,
|
|
25
|
-
IPAD_LAYOUT_CONFIG,
|
|
26
|
-
// iPad utilities
|
|
27
|
-
getContentMaxWidth,
|
|
28
|
-
getIPadGridColumns,
|
|
29
|
-
getTouchTargetSize,
|
|
30
|
-
getIPadScreenPadding,
|
|
31
|
-
getIPadFontScale,
|
|
32
|
-
getIPadLayoutInfo,
|
|
33
|
-
getIPadModalDimensions,
|
|
34
|
-
getPaywallDimensions,
|
|
35
|
-
type IPadLayoutInfo,
|
|
36
|
-
type ModalDimensions,
|
|
37
|
-
type PaywallDimensions,
|
|
38
|
-
// Device info
|
|
39
|
-
DEVICE_CONSTANTS,
|
|
40
|
-
DeviceUtils,
|
|
41
|
-
DeviceTypeUtils,
|
|
42
|
-
DeviceMemoryUtils,
|
|
43
|
-
DeviceService,
|
|
44
|
-
UserFriendlyIdService,
|
|
45
|
-
PersistentDeviceIdService,
|
|
46
|
-
DeviceFeatureService,
|
|
47
|
-
SecureDeviceIdRepository,
|
|
48
|
-
LegacyDeviceIdRepository,
|
|
49
|
-
useDeviceInfo,
|
|
50
|
-
useDeviceCapabilities,
|
|
51
|
-
useDeviceId,
|
|
52
|
-
useAnonymousUser,
|
|
53
|
-
useDeviceFeatures,
|
|
54
|
-
getAnonymousUserId,
|
|
55
|
-
collectDeviceExtras,
|
|
56
|
-
DEFAULT_FEATURE_CONFIG,
|
|
57
|
-
type DeviceInfo,
|
|
58
|
-
type ApplicationInfo,
|
|
59
|
-
type SystemInfo,
|
|
60
|
-
type AnonymousUser,
|
|
61
|
-
type UseAnonymousUserOptions,
|
|
62
|
-
type DeviceExtras,
|
|
63
|
-
type DeviceFeatureConfig,
|
|
64
|
-
type DeviceFeatureUsage,
|
|
65
|
-
type DeviceFeatureAccess,
|
|
66
|
-
type FeatureLimit,
|
|
67
|
-
type ResetPeriod,
|
|
68
|
-
} from '../device';
|
package/src/exports/exception.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '../filesystem';
|
package/src/exports/haptics.ts
DELETED
package/src/exports/image.ts
DELETED
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Image Exports
|
|
3
|
-
*
|
|
4
|
-
* Image manipulation, viewing, and gallery components
|
|
5
|
-
* Note: AtomicImage is exported from atoms, not here
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
export type {
|
|
9
|
-
ImageManipulateAction,
|
|
10
|
-
ImageSaveOptions,
|
|
11
|
-
ImageManipulationResult,
|
|
12
|
-
ImageMetadata,
|
|
13
|
-
ImageViewerItem,
|
|
14
|
-
ImageGalleryOptions,
|
|
15
|
-
ImageOperationResult,
|
|
16
|
-
SaveFormat,
|
|
17
|
-
ImageDimensions,
|
|
18
|
-
ImageCropArea,
|
|
19
|
-
ImageFlipOptions,
|
|
20
|
-
ImageTemplate,
|
|
21
|
-
MemeTemplateOptions,
|
|
22
|
-
ImageFilterOptions,
|
|
23
|
-
ImageColorAdjustment,
|
|
24
|
-
ImageQualityMetrics,
|
|
25
|
-
ImageColorPalette,
|
|
26
|
-
ImageMetadataExtended,
|
|
27
|
-
ImageGalleryProps,
|
|
28
|
-
TextEditorSheetProps,
|
|
29
|
-
StickerPickerSheetProps,
|
|
30
|
-
FilterPickerSheetProps,
|
|
31
|
-
ImageViewerConfig,
|
|
32
|
-
BatchOperation,
|
|
33
|
-
BatchProcessingOptions,
|
|
34
|
-
BatchProcessingResult,
|
|
35
|
-
AutoEnhancementOptions,
|
|
36
|
-
EnhancementResult,
|
|
37
|
-
ImageMetadataExtractionOptions,
|
|
38
|
-
QualityPreset,
|
|
39
|
-
QualityPresets,
|
|
40
|
-
UseImageGalleryReturn,
|
|
41
|
-
ValidationResult,
|
|
42
|
-
} from '../image';
|
|
43
|
-
|
|
44
|
-
export {
|
|
45
|
-
ImageFormat,
|
|
46
|
-
ImageOrientation,
|
|
47
|
-
IMAGE_CONSTANTS,
|
|
48
|
-
ImageUtils,
|
|
49
|
-
ImageFilterType,
|
|
50
|
-
ImageTransformService,
|
|
51
|
-
ImageConversionService,
|
|
52
|
-
ImageStorageService,
|
|
53
|
-
ImageViewerService,
|
|
54
|
-
ImageBatchService,
|
|
55
|
-
ImageEnhanceService,
|
|
56
|
-
ImageMetadataService,
|
|
57
|
-
ImageQualityPresetService,
|
|
58
|
-
IMAGE_QUALITY_PRESETS,
|
|
59
|
-
ImageTemplateService,
|
|
60
|
-
ImageGallery,
|
|
61
|
-
TextEditorSheet,
|
|
62
|
-
StickerPickerSheet,
|
|
63
|
-
FilterPickerSheet,
|
|
64
|
-
useImage,
|
|
65
|
-
useImageTransform,
|
|
66
|
-
useImageConversion,
|
|
67
|
-
useImageGallery,
|
|
68
|
-
useImageBatch,
|
|
69
|
-
useImageEnhance,
|
|
70
|
-
useImageMetadata,
|
|
71
|
-
getFileExtension,
|
|
72
|
-
getMimeTypeFromExtension,
|
|
73
|
-
getMimeTypeFromDataUrl,
|
|
74
|
-
validateImageMimeType,
|
|
75
|
-
validateImageExtension,
|
|
76
|
-
validateImageDataUrl,
|
|
77
|
-
validateImageUri,
|
|
78
|
-
getImageMimeType,
|
|
79
|
-
IMAGE_MIME_TYPES,
|
|
80
|
-
SUPPORTED_IMAGE_MIME_TYPES,
|
|
81
|
-
EXTENSION_TO_MIME_TYPE,
|
|
82
|
-
MIME_TYPE_TO_EXTENSION,
|
|
83
|
-
} from '../image';
|
package/src/exports/init.ts
DELETED
package/src/exports/layouts.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Layouts Exports
|
|
3
|
-
* Layout components
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export {
|
|
7
|
-
ScreenLayout,
|
|
8
|
-
AppHeader,
|
|
9
|
-
ScreenHeader,
|
|
10
|
-
Grid,
|
|
11
|
-
Container,
|
|
12
|
-
FormLayout,
|
|
13
|
-
type ScreenLayoutProps,
|
|
14
|
-
type AppHeaderProps,
|
|
15
|
-
type ScreenHeaderProps,
|
|
16
|
-
type GridProps,
|
|
17
|
-
type ContainerProps,
|
|
18
|
-
type FormLayoutProps,
|
|
19
|
-
} from '../layouts';
|
package/src/exports/loading.ts
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Loading Exports
|
|
3
|
-
* Global loading state management
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export {
|
|
7
|
-
useLoadingStore,
|
|
8
|
-
LoadingOverlay,
|
|
9
|
-
useGlobalLoading,
|
|
10
|
-
LoadingProvider,
|
|
11
|
-
} from '../loading';
|
|
12
|
-
|
|
13
|
-
export type {
|
|
14
|
-
LoadingSource,
|
|
15
|
-
LoadingState,
|
|
16
|
-
LoadingActions,
|
|
17
|
-
LoadingStore,
|
|
18
|
-
LoadingProviderProps,
|
|
19
|
-
LoadingOverlayProps,
|
|
20
|
-
} from '../loading';
|
package/src/exports/media.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../media";
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Alert Molecules Exports
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export {
|
|
6
|
-
AlertBanner,
|
|
7
|
-
AlertToast,
|
|
8
|
-
AlertInline,
|
|
9
|
-
AlertModal,
|
|
10
|
-
AlertContainer,
|
|
11
|
-
AlertProvider,
|
|
12
|
-
AlertService,
|
|
13
|
-
useAlert,
|
|
14
|
-
useAlertStore,
|
|
15
|
-
alertService,
|
|
16
|
-
AlertType,
|
|
17
|
-
AlertMode,
|
|
18
|
-
AlertPosition,
|
|
19
|
-
type Alert,
|
|
20
|
-
type AlertAction,
|
|
21
|
-
type AlertOptions,
|
|
22
|
-
} from "../../molecules";
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Bottom Sheet Molecules Exports
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export {
|
|
6
|
-
BottomSheet,
|
|
7
|
-
BottomSheetModal,
|
|
8
|
-
FilterBottomSheet,
|
|
9
|
-
FilterSheet,
|
|
10
|
-
useBottomSheet,
|
|
11
|
-
useBottomSheetModal,
|
|
12
|
-
useListFilters,
|
|
13
|
-
type BottomSheetProps,
|
|
14
|
-
type BottomSheetModalProps,
|
|
15
|
-
type BottomSheetRef,
|
|
16
|
-
type BottomSheetModalRef,
|
|
17
|
-
type FilterOption,
|
|
18
|
-
type FilterCategory,
|
|
19
|
-
} from "../../molecules";
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Calendar Molecules Exports
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export {
|
|
6
|
-
AtomicCalendar,
|
|
7
|
-
useCalendar,
|
|
8
|
-
useCalendarEvents,
|
|
9
|
-
useCalendarNavigation,
|
|
10
|
-
useCalendarView,
|
|
11
|
-
CalendarService,
|
|
12
|
-
CalendarGeneration,
|
|
13
|
-
DateUtilities,
|
|
14
|
-
type AtomicCalendarProps,
|
|
15
|
-
type CalendarEvent,
|
|
16
|
-
type CalendarViewMode,
|
|
17
|
-
type CreateCalendarEventRequest,
|
|
18
|
-
type UpdateCalendarEventRequest,
|
|
19
|
-
type CalendarDay,
|
|
20
|
-
type CalendarMonth,
|
|
21
|
-
type CalendarWeek,
|
|
22
|
-
type ICalendarRepository,
|
|
23
|
-
} from "../../molecules";
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Core Molecules Exports
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export {
|
|
6
|
-
FormField,
|
|
7
|
-
ListItem,
|
|
8
|
-
SearchBar,
|
|
9
|
-
IconContainer,
|
|
10
|
-
BaseModal,
|
|
11
|
-
ConfirmationModal,
|
|
12
|
-
useConfirmationModal,
|
|
13
|
-
Divider,
|
|
14
|
-
type DividerProps,
|
|
15
|
-
StepProgress,
|
|
16
|
-
List,
|
|
17
|
-
Avatar,
|
|
18
|
-
AvatarGroup,
|
|
19
|
-
AvatarUtils,
|
|
20
|
-
type AvatarProps,
|
|
21
|
-
type AvatarGroupProps,
|
|
22
|
-
type AvatarGroupItem,
|
|
23
|
-
type AvatarSize,
|
|
24
|
-
type AvatarShape,
|
|
25
|
-
type AvatarConfig,
|
|
26
|
-
type AvatarType,
|
|
27
|
-
type BaseModalProps,
|
|
28
|
-
type ListProps,
|
|
29
|
-
} from "../../molecules";
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Countdown Molecules Exports
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export {
|
|
6
|
-
Countdown,
|
|
7
|
-
TimeUnit,
|
|
8
|
-
CountdownHeader,
|
|
9
|
-
useCountdown,
|
|
10
|
-
calculateTimeRemaining,
|
|
11
|
-
padNumber,
|
|
12
|
-
getNextDayStart,
|
|
13
|
-
getNextYearStart,
|
|
14
|
-
type CountdownProps,
|
|
15
|
-
type TimeUnitProps,
|
|
16
|
-
type CountdownHeaderProps,
|
|
17
|
-
type UseCountdownOptions,
|
|
18
|
-
type UseCountdownReturn,
|
|
19
|
-
type TimeRemaining,
|
|
20
|
-
type CountdownTarget,
|
|
21
|
-
type CountdownFormatOptions,
|
|
22
|
-
type CountdownDisplayConfig,
|
|
23
|
-
} from "../../molecules";
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Emoji Molecules Exports
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export {
|
|
6
|
-
EmojiPicker,
|
|
7
|
-
useEmojiPicker,
|
|
8
|
-
EmojiCategory,
|
|
9
|
-
EmojiUtils,
|
|
10
|
-
type EmojiObject,
|
|
11
|
-
type EmojiPickerConfig,
|
|
12
|
-
type EmojiSelectCallback,
|
|
13
|
-
type EmojiPickerState,
|
|
14
|
-
type EmojiPickerProps,
|
|
15
|
-
type UseEmojiPickerOptions,
|
|
16
|
-
type UseEmojiPickerReturn,
|
|
17
|
-
} from "../../molecules";
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Molecules Exports - Barrel
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export * from "./core";
|
|
6
|
-
export * from "./alerts";
|
|
7
|
-
export * from "./bottom-sheet";
|
|
8
|
-
export * from "./calendar";
|
|
9
|
-
export * from "./swipe-actions";
|
|
10
|
-
export * from "./navigation";
|
|
11
|
-
export * from "./emoji";
|
|
12
|
-
export * from "./countdown";
|
|
13
|
-
export * from "./misc";
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Miscellaneous Molecules Exports
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export {
|
|
6
|
-
// Long Press Menu
|
|
7
|
-
MenuActionType,
|
|
8
|
-
type MenuAction,
|
|
9
|
-
type MenuActionTypeValue,
|
|
10
|
-
// Step Header
|
|
11
|
-
StepHeader,
|
|
12
|
-
type StepHeaderProps,
|
|
13
|
-
type StepHeaderConfig,
|
|
14
|
-
// Splash
|
|
15
|
-
SplashScreen,
|
|
16
|
-
useSplashFlow,
|
|
17
|
-
type SplashScreenProps,
|
|
18
|
-
type SplashColors,
|
|
19
|
-
type UseSplashFlowOptions,
|
|
20
|
-
type UseSplashFlowResult,
|
|
21
|
-
// Filter Group
|
|
22
|
-
FilterGroup,
|
|
23
|
-
type FilterGroupProps,
|
|
24
|
-
type FilterGroupItem,
|
|
25
|
-
// Action Footer
|
|
26
|
-
ActionFooter,
|
|
27
|
-
type ActionFooterProps,
|
|
28
|
-
// Hero Section
|
|
29
|
-
HeroSection,
|
|
30
|
-
type HeroSectionProps,
|
|
31
|
-
// Info Grid
|
|
32
|
-
InfoGrid,
|
|
33
|
-
type InfoGridProps,
|
|
34
|
-
type InfoGridItem,
|
|
35
|
-
// Circular Menu
|
|
36
|
-
CircularMenu,
|
|
37
|
-
CircularMenuItem,
|
|
38
|
-
CircularMenuBackground,
|
|
39
|
-
CircularMenuCloseButton,
|
|
40
|
-
type CircularMenuProps,
|
|
41
|
-
type CircularMenuAction,
|
|
42
|
-
} from "../../molecules";
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Navigation Molecules Exports
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export {
|
|
6
|
-
TabsNavigator,
|
|
7
|
-
StackNavigator,
|
|
8
|
-
FabButton,
|
|
9
|
-
NavigationCleanupManager,
|
|
10
|
-
AppNavigation,
|
|
11
|
-
NavigationContainer,
|
|
12
|
-
TabLabel,
|
|
13
|
-
NavigationHeader,
|
|
14
|
-
createScreenOptions,
|
|
15
|
-
createNavigationTheme,
|
|
16
|
-
useTabBarStyles,
|
|
17
|
-
useTabConfig,
|
|
18
|
-
useAppNavigation,
|
|
19
|
-
useAppRoute,
|
|
20
|
-
useAppFocusEffect,
|
|
21
|
-
useAppIsFocused,
|
|
22
|
-
type NavigationHeaderProps,
|
|
23
|
-
type ScreenOptionsParams,
|
|
24
|
-
type TabsNavigatorProps,
|
|
25
|
-
type StackNavigatorProps,
|
|
26
|
-
type StackNavigatorConfig,
|
|
27
|
-
type StackScreen,
|
|
28
|
-
type FabButtonProps,
|
|
29
|
-
type TabScreen,
|
|
30
|
-
type TabNavigatorConfig,
|
|
31
|
-
type BaseScreen,
|
|
32
|
-
type BaseNavigatorConfig,
|
|
33
|
-
type IconRendererProps,
|
|
34
|
-
type LabelProcessorProps,
|
|
35
|
-
type FabConfig,
|
|
36
|
-
type NavigationCleanup,
|
|
37
|
-
type BottomTabNavigationOptions,
|
|
38
|
-
type BottomTabScreenProps,
|
|
39
|
-
type StackNavigationOptions,
|
|
40
|
-
type StackScreenProps,
|
|
41
|
-
type RouteProp,
|
|
42
|
-
type TabLabelProps,
|
|
43
|
-
type TabBarConfig,
|
|
44
|
-
} from "../../molecules";
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Swipe Actions Molecules Exports
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
export {
|
|
6
|
-
SwipeActionButton,
|
|
7
|
-
SwipeActionUtils,
|
|
8
|
-
ACTION_PRESETS,
|
|
9
|
-
DEFAULT_SWIPE_CONFIG,
|
|
10
|
-
type SwipeActionButtonProps,
|
|
11
|
-
type SwipeActionType,
|
|
12
|
-
type SwipeActionConfig,
|
|
13
|
-
type SwipeDirection,
|
|
14
|
-
type SwipeableConfig,
|
|
15
|
-
} from "../../molecules";
|
package/src/exports/offline.ts
DELETED
package/src/exports/organisms.ts
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Responsive Exports
|
|
3
|
-
* Responsive utilities and breakpoints
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export {
|
|
7
|
-
useResponsive,
|
|
8
|
-
getResponsiveLogoSize,
|
|
9
|
-
getResponsiveInputHeight,
|
|
10
|
-
getResponsiveHorizontalPadding,
|
|
11
|
-
getResponsiveBottomPosition,
|
|
12
|
-
getResponsiveFABPosition,
|
|
13
|
-
getResponsiveModalMaxHeight,
|
|
14
|
-
getResponsiveMinModalHeight,
|
|
15
|
-
getResponsiveModalWidth,
|
|
16
|
-
getResponsiveModalHeight,
|
|
17
|
-
getResponsiveModalBorderRadius,
|
|
18
|
-
getResponsiveModalMaxWidth,
|
|
19
|
-
getResponsiveBackdropOpacity,
|
|
20
|
-
getResponsiveModalLayout,
|
|
21
|
-
getResponsiveBottomSheetLayout,
|
|
22
|
-
getResponsiveDialogLayout,
|
|
23
|
-
getResponsiveIconContainerSize,
|
|
24
|
-
getResponsiveGridColumns,
|
|
25
|
-
getResponsiveMaxWidth,
|
|
26
|
-
getResponsiveFontSize,
|
|
27
|
-
getMinTouchTarget,
|
|
28
|
-
IOS_HIG,
|
|
29
|
-
PLATFORM_CONSTANTS,
|
|
30
|
-
isValidTouchTarget,
|
|
31
|
-
DEVICE_BREAKPOINTS,
|
|
32
|
-
type ResponsiveModalLayout,
|
|
33
|
-
type ResponsiveBottomSheetLayout,
|
|
34
|
-
type ResponsiveDialogLayout,
|
|
35
|
-
type UseResponsiveReturn,
|
|
36
|
-
} from '../responsive';
|
package/src/exports/safe-area.ts
DELETED
package/src/exports/storage.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../storage";
|
package/src/exports/tanstack.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "../tanstack";
|
package/src/exports/theme.ts
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Theme Exports
|
|
3
|
-
* Design tokens, colors, spacing, typography, and theme utilities
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export {
|
|
7
|
-
useAppDesignTokens,
|
|
8
|
-
useCommonStyles,
|
|
9
|
-
useDesignSystemTheme,
|
|
10
|
-
useTheme,
|
|
11
|
-
useThemedStyles,
|
|
12
|
-
useThemedStyleSheet,
|
|
13
|
-
DesignSystemProvider,
|
|
14
|
-
lightColors,
|
|
15
|
-
darkColors,
|
|
16
|
-
getColorPalette,
|
|
17
|
-
withAlpha,
|
|
18
|
-
BASE_TOKENS,
|
|
19
|
-
spacing,
|
|
20
|
-
typography,
|
|
21
|
-
borders,
|
|
22
|
-
createDesignTokens,
|
|
23
|
-
lightTheme,
|
|
24
|
-
darkTheme,
|
|
25
|
-
createResponsiveValue,
|
|
26
|
-
ThemeStorage,
|
|
27
|
-
applyCustomColors,
|
|
28
|
-
type ColorPalette,
|
|
29
|
-
type ThemeMode,
|
|
30
|
-
type CustomThemeColors,
|
|
31
|
-
type Spacing,
|
|
32
|
-
type Typography,
|
|
33
|
-
type Borders,
|
|
34
|
-
type BaseTokens,
|
|
35
|
-
type IconSizes,
|
|
36
|
-
type Opacity,
|
|
37
|
-
type AvatarSizes,
|
|
38
|
-
type ComponentSizes,
|
|
39
|
-
type DesignTokens,
|
|
40
|
-
type ResponsiveSpacing,
|
|
41
|
-
type ResponsiveTypography,
|
|
42
|
-
type Theme,
|
|
43
|
-
type NavigationTheme,
|
|
44
|
-
} from '../theme';
|
package/src/exports/timezone.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Typography Exports
|
|
3
|
-
* Text styles and color utilities
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export {
|
|
7
|
-
getTextColor,
|
|
8
|
-
getTextStyle,
|
|
9
|
-
isTextStyleVariant,
|
|
10
|
-
getAllTextStyleVariants,
|
|
11
|
-
clearTypographyCache,
|
|
12
|
-
clearColorCache,
|
|
13
|
-
isValidHexColor,
|
|
14
|
-
isValidRgbColor,
|
|
15
|
-
isValidHslColor,
|
|
16
|
-
isValidNamedColor,
|
|
17
|
-
isValidColor,
|
|
18
|
-
getColorFormat,
|
|
19
|
-
normalizeColor,
|
|
20
|
-
type TextStyleVariant,
|
|
21
|
-
type ColorVariant,
|
|
22
|
-
} from '../typography';
|
package/src/exports/utilities.ts
DELETED
package/src/exports/uuid.ts
DELETED
package/src/exports/variants.ts
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Variant Utilities Exports
|
|
3
|
-
* Variant and style utilities
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export {
|
|
7
|
-
createVariants,
|
|
8
|
-
type VariantConfig,
|
|
9
|
-
type VariantProps,
|
|
10
|
-
} from '../presentation/utils/variants/core';
|
|
11
|
-
|
|
12
|
-
export {
|
|
13
|
-
createAdvancedVariants,
|
|
14
|
-
type AdvancedVariantConfig,
|
|
15
|
-
type CompoundVariant,
|
|
16
|
-
} from '../presentation/utils/variants/compound';
|
|
17
|
-
|
|
18
|
-
export {
|
|
19
|
-
conditionalStyle,
|
|
20
|
-
responsiveStyle,
|
|
21
|
-
combineStyles,
|
|
22
|
-
} from '../presentation/utils/variants/helpers';
|