@gv-tech/ui-native 2.18.0 → 2.20.0

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.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +14 -4
package/README.md CHANGED
@@ -8,6 +8,14 @@ React Native implementations of the GV Tech design system components, optimized
8
8
  bun add @gv-tech/ui-native
9
9
  ```
10
10
 
11
+ Install required peer dependencies in your app:
12
+
13
+ ```bash
14
+ expo install react-native-reanimated
15
+ ```
16
+
17
+ If you are not using Expo, install with your package manager and follow the React Native Reanimated setup docs for Babel and platform-specific configuration.
18
+
11
19
  ## Features
12
20
 
13
21
  - **Mobile First**: Components tailored for touch interactions and native mobile patterns.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gv-tech/ui-native",
3
- "version": "2.18.0",
3
+ "version": "2.20.0",
4
4
  "description": "React Native implementations of the GV Tech design system components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -37,6 +37,8 @@
37
37
  "dependencies": {
38
38
  "@gv-tech/design-tokens": "^2.12.0",
39
39
  "@gv-tech/ui-core": "^2.12.0",
40
+ "react-native-reanimated": "4.2.1",
41
+ "react-native-worklets": "0.7.2",
40
42
  "@rn-primitives/accordion": "^1.2.0",
41
43
  "@rn-primitives/alert-dialog": "^1.2.0",
42
44
  "@rn-primitives/aspect-ratio": "^1.2.0",
@@ -67,15 +69,23 @@
67
69
  "clsx": "^2.1.1",
68
70
  "lucide-react-native": "^0.574.0",
69
71
  "nativewind": "^4.2.1",
70
- "react-native-reanimated": "4.2.1",
71
72
  "react-native-svg": "^15.15.3",
72
- "react-native-worklets": "0.7.2",
73
73
  "tailwind-merge": "^3.4.1",
74
74
  "tailwindcss": "^4.1.18"
75
75
  },
76
76
  "peerDependencies": {
77
77
  "react": ">=18",
78
- "react-native": ">=0.72"
78
+ "react-native": ">=0.72",
79
+ "react-native-reanimated": "^4.0.0",
80
+ "react-native-worklets": "^0.7.2"
81
+ },
82
+ "peerDependenciesMeta": {
83
+ "react-native-reanimated": {
84
+ "optional": false
85
+ },
86
+ "react-native-worklets": {
87
+ "optional": false
88
+ }
79
89
  },
80
90
  "publishConfig": {
81
91
  "access": "public",