@umituz/react-native-design-system 2.3.29 → 2.3.30

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.3.29",
3
+ "version": "2.3.30",
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",
@@ -139,4 +139,4 @@
139
139
  "README.md",
140
140
  "LICENSE"
141
141
  ]
142
- }
142
+ }
@@ -45,7 +45,7 @@ export const useAnimation = () => {
45
45
  { translateX: translateXValue },
46
46
  { scale: scaleValue },
47
47
  { rotate: `${transform.rotate.value}deg` },
48
- ],
48
+ ] as any,
49
49
  };
50
50
  });
51
51
 
@@ -37,7 +37,7 @@ export const useGestureState = () => {
37
37
  { translateX: translateX.value },
38
38
  { translateY: translateY.value },
39
39
  { scale: scale.value },
40
- ],
40
+ ] as any,
41
41
  }));
42
42
 
43
43
  return {
@@ -101,7 +101,7 @@ export function useElementAnimations(
101
101
  transform: [
102
102
  { scale: transform.scale.value },
103
103
  { rotate: `${transform.rotate.value}deg` },
104
- ],
104
+ ] as any,
105
105
  }));
106
106
 
107
107
  return {