@umituz/react-native-design-system 4.28.18 → 4.28.19

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.28.18",
3
+ "version": "4.28.19",
4
4
  "description": "Universal design system for React Native apps with safe navigation hooks - updated SKILL.md with navigation documentation",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./dist/index.d.ts",
@@ -2,7 +2,7 @@ import React, { useEffect, useState, ReactNode, lazy, Suspense } from 'react';
2
2
  import { ActivityIndicator, View, StyleSheet } from 'react-native';
3
3
  import { GestureHandlerRootView } from 'react-native-gesture-handler';
4
4
  import { useFonts } from 'expo-font';
5
- import { SafeAreaProvider, initialWindowMetrics } from '../../../safe-area';
5
+ import { SafeAreaProvider } from 'react-native-safe-area-context';
6
6
  import { useTheme } from '../stores/themeStore';
7
7
  import type { ThemeMode } from '../../core/ColorPalette';
8
8
  import type { CustomThemeColors } from '../../core/CustomColors';
@@ -132,7 +132,7 @@ export const DesignSystemProvider: React.FC<DesignSystemProviderProps> = ({
132
132
 
133
133
  return (
134
134
  <GestureHandlerRootView style={{ flex: 1 }}>
135
- <SafeAreaProvider initialMetrics={initialWindowMetrics}>
135
+ <SafeAreaProvider>
136
136
  {content}
137
137
  </SafeAreaProvider>
138
138
  </GestureHandlerRootView>