@umituz/react-native-design-system 4.23.65 → 4.23.67
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/exception/presentation/components/ErrorBoundary.tsx +2 -2
- 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
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { storageRepository, unwrap } from '../../../storage';
|
|
2
|
-
|
|
3
|
-
const LEGACY_DEVICE_ID_KEY = '@device/persistent_id';
|
|
4
|
-
|
|
5
|
-
export class LegacyDeviceIdRepository {
|
|
6
|
-
async get(): Promise<string | null> {
|
|
7
|
-
try {
|
|
8
|
-
const result = await storageRepository.getString(LEGACY_DEVICE_ID_KEY, '');
|
|
9
|
-
return unwrap(result, '') || null;
|
|
10
|
-
} catch {
|
|
11
|
-
return null;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
async set(deviceId: string): Promise<void> {
|
|
16
|
-
try {
|
|
17
|
-
await storageRepository.setString(LEGACY_DEVICE_ID_KEY, deviceId);
|
|
18
|
-
} catch {
|
|
19
|
-
// Silent fail per CLAUDE.md rules
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
async remove(): Promise<void> {
|
|
24
|
-
try {
|
|
25
|
-
await storageRepository.removeItem(LEGACY_DEVICE_ID_KEY);
|
|
26
|
-
} catch {
|
|
27
|
-
// Silent fail
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
package/src/exports/atoms.ts
DELETED
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Atoms Exports
|
|
3
|
-
* Primitive UI components
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
export {
|
|
7
|
-
AtomicText,
|
|
8
|
-
AtomicIcon,
|
|
9
|
-
AtomicButton,
|
|
10
|
-
AtomicInput,
|
|
11
|
-
AtomicCard,
|
|
12
|
-
AtomicFab,
|
|
13
|
-
AtomicAvatar,
|
|
14
|
-
AtomicChip,
|
|
15
|
-
AtomicProgress,
|
|
16
|
-
AtomicPicker,
|
|
17
|
-
AtomicDatePicker,
|
|
18
|
-
AtomicSkeleton,
|
|
19
|
-
AtomicBadge,
|
|
20
|
-
AtomicSpinner,
|
|
21
|
-
EmptyState,
|
|
22
|
-
type IconName,
|
|
23
|
-
type IconSize,
|
|
24
|
-
type IconColor,
|
|
25
|
-
type AtomicTextProps,
|
|
26
|
-
type AtomicIconProps,
|
|
27
|
-
type AtomicButtonProps,
|
|
28
|
-
type ButtonVariant,
|
|
29
|
-
type ButtonSize,
|
|
30
|
-
type AtomicInputProps,
|
|
31
|
-
type AtomicInputVariant,
|
|
32
|
-
type AtomicInputState,
|
|
33
|
-
type AtomicInputSize,
|
|
34
|
-
type AtomicCardProps,
|
|
35
|
-
type AtomicCardVariant,
|
|
36
|
-
type AtomicCardPadding,
|
|
37
|
-
type AtomicFabProps,
|
|
38
|
-
type FabSize,
|
|
39
|
-
type FabVariant,
|
|
40
|
-
type AtomicAvatarProps,
|
|
41
|
-
type AtomicChipProps,
|
|
42
|
-
type AtomicProgressProps,
|
|
43
|
-
type AtomicPickerProps,
|
|
44
|
-
type PickerOption,
|
|
45
|
-
type PickerSize,
|
|
46
|
-
type AtomicDatePickerProps,
|
|
47
|
-
type AtomicSkeletonProps,
|
|
48
|
-
type SkeletonPattern,
|
|
49
|
-
type SkeletonConfig,
|
|
50
|
-
SKELETON_PATTERNS,
|
|
51
|
-
type AtomicBadgeProps,
|
|
52
|
-
type BadgeVariant,
|
|
53
|
-
type BadgeSize,
|
|
54
|
-
type AtomicSpinnerProps,
|
|
55
|
-
type SpinnerSize,
|
|
56
|
-
type SpinnerColor,
|
|
57
|
-
type EmptyStateProps,
|
|
58
|
-
AtomicTextArea,
|
|
59
|
-
type AtomicTextAreaProps,
|
|
60
|
-
AtomicSwitch,
|
|
61
|
-
type AtomicSwitchProps,
|
|
62
|
-
AtomicTouchable,
|
|
63
|
-
type AtomicTouchableProps,
|
|
64
|
-
AtomicStatusBar,
|
|
65
|
-
type AtomicStatusBarProps,
|
|
66
|
-
AtomicKeyboardAvoidingView,
|
|
67
|
-
type AtomicKeyboardAvoidingViewProps,
|
|
68
|
-
GlassView,
|
|
69
|
-
type GlassViewProps,
|
|
70
|
-
AtomicImage,
|
|
71
|
-
type AtomicImageProps,
|
|
72
|
-
// Icon Store
|
|
73
|
-
useIconStore,
|
|
74
|
-
useIconRenderer,
|
|
75
|
-
useIconName,
|
|
76
|
-
useHasIconConfig,
|
|
77
|
-
type IconRenderProps,
|
|
78
|
-
type IconRenderer,
|
|
79
|
-
type IconNames,
|
|
80
|
-
REQUIRED_ICON_KEYS,
|
|
81
|
-
} from '../atoms';
|
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";
|