@umituz/react-native-design-system 2.6.74 → 2.6.75

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.74",
3
+ "version": "2.6.75",
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",
@@ -30,33 +30,7 @@ interface DesignSystemProviderProps {
30
30
 
31
31
  /**
32
32
  * DesignSystemProvider
33
- *
34
33
  * Initializes theme store and applies custom colors.
35
- * Wrap your app with this provider to enable design system features.
36
- *
37
- * Features:
38
- * - Auto-initializes theme from storage
39
- * - Supports custom color overrides
40
- * - Optional loading state
41
- * - Error handling
42
- * - GestureHandlerRootView integration
43
- * - BottomSheetModalProvider integration
44
- *
45
- * Usage:
46
- * ```tsx
47
- * import { DesignSystemProvider } from '@umituz/react-native-design-system';
48
- *
49
- * export default function App() {
50
- * return (
51
- * <DesignSystemProvider
52
- * customColors={{ primary: '#FF6B6B' }}
53
- * showLoadingIndicator
54
- * >
55
- * <YourApp />
56
- * </DesignSystemProvider>
57
- * );
58
- * }
59
- * ```
60
34
  */
61
35
  export const DesignSystemProvider: React.FC<DesignSystemProviderProps> = ({
62
36
  children,