@umituz/react-native-design-system 2.6.105 → 2.6.106

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": "2.6.105",
3
+ "version": "2.6.106",
4
4
  "description": "Universal design system for React Native apps - Consolidated package with atoms, molecules, organisms, theme, typography, responsive and safe area utilities",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -37,6 +37,7 @@ export {
37
37
  type BottomSheetModalProps,
38
38
  type BottomSheetRef,
39
39
  type BottomSheetModalRef,
40
+ SafeBottomSheetModalProvider,
40
41
  type FilterOption,
41
42
  type FilterCategory,
42
43
  // Alerts
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+ import { View } from 'react-native';
3
+
4
+ /**
5
+ * SafeBottomSheetModalProvider
6
+ * A wrapper provider that was previously used for bottom sheet modals.
7
+ * Currently serves as a pass-through to maintain compatibility with other packages.
8
+ */
9
+ export const SafeBottomSheetModalProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => {
10
+ return <>{children}</>;
11
+ };
@@ -8,3 +8,4 @@ export * from './hooks/useBottomSheetModal';
8
8
  export * from './hooks/useListFilters';
9
9
  export * from './types/BottomSheet';
10
10
  export * from './types/Filter';
11
+ export * from './SafeBottomSheetModalProvider';