@umituz/react-native-design-system 4.28.8 → 4.28.10

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.8",
3
+ "version": "4.28.10",
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",
@@ -9,6 +9,15 @@
9
9
  export { useResponsive } from './useResponsive';
10
10
  export type { UseResponsiveReturn } from './useResponsive';
11
11
 
12
+ // Responsive calculation utilities
13
+ export {
14
+ calculateResponsiveSize,
15
+ calculateResponsiveSizes,
16
+ calculateResponsiveSizeSubtle,
17
+ calculateLineHeight,
18
+ createResponsiveSizes,
19
+ } from './utils';
20
+
12
21
  // Responsive sizing utilities
13
22
  export {
14
23
  getResponsiveLogoSize,
@@ -4,14 +4,6 @@
4
4
  * Centralized utility functions for the design system.
5
5
  */
6
6
 
7
- export {
8
- calculateResponsiveSize,
9
- calculateResponsiveSizes,
10
- calculateResponsiveSizeSubtle,
11
- calculateLineHeight,
12
- createResponsiveSizes,
13
- } from './responsiveUtils';
14
-
15
7
  export {
16
8
  createMappedArray,
17
9
  safeSlice,