@umituz/react-native-design-system 2.5.35 → 2.5.37

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.5.35",
3
+ "version": "2.5.37",
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",
@@ -78,6 +78,7 @@ export interface UseResponsiveReturn {
78
78
  modalMinHeight: number;
79
79
  gridColumns: number;
80
80
  spacingMultiplier: number;
81
+ tabBarConfig: ResponsiveTabBarConfig;
81
82
 
82
83
  // Modal layouts (complete configurations)
83
84
  modalLayout: ResponsiveModalLayout;
@@ -167,6 +168,7 @@ export const useResponsive = (): UseResponsiveReturn => {
167
168
  modalMinHeight: getResponsiveMinModalHeight(),
168
169
  gridColumns: getResponsiveGridColumns(),
169
170
  spacingMultiplier: getSpacingMultiplier(),
171
+ tabBarConfig: getResponsiveTabBarConfig(insets),
170
172
 
171
173
  // Modal layouts (complete configurations)
172
174
  modalLayout: getResponsiveModalLayout(),