@umituz/react-native-design-system 4.25.0 → 4.25.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-design-system",
3
- "version": "4.25.0",
3
+ "version": "4.25.1",
4
4
  "description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive, safe area, exception, infinite scroll, UUID, image, timezone, offline, onboarding, and loading utilities",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
package/src/index.ts CHANGED
@@ -128,11 +128,6 @@ export * from "./onboarding";
128
128
  // =============================================================================
129
129
  export * from "./filesystem";
130
130
 
131
- // =============================================================================
132
- // MEDIA EXPORTS
133
- // =============================================================================
134
- export * from "./media";
135
-
136
131
  // =============================================================================
137
132
  // TANSTACK EXPORTS
138
133
  // =============================================================================
@@ -64,7 +64,6 @@ export const AlertModal: React.FC<AlertModalProps> = ({ alert }) => {
64
64
  title={action.label}
65
65
  variant={action.style === 'destructive' ? 'danger' : action.style === 'secondary' ? 'secondary' : 'primary'}
66
66
  onPress={async () => {
67
- // BUG FIX: Execute action BEFORE closing (was backwards)
68
67
  await action.onPress();
69
68
  if (action.closeOnPress ?? true) {
70
69
  handleClose();
@@ -14,7 +14,6 @@ export function useAlertAutoDismiss(
14
14
  onDismiss: () => void
15
15
  ) {
16
16
  useEffect(() => {
17
- // BUG FIX: Check dismissible flag before auto-dismissing
18
17
  if (!alert.dismissible) return;
19
18
 
20
19
  const duration = alert.duration ?? DEFAULT_ALERT_DURATION;