@gv-tech/ui-native 2.18.0 → 2.19.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.
- package/README.md +8 -0
- package/package.json +8 -3
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.
|
|
3
|
+
"version": "2.19.0",
|
|
4
4
|
"description": "React Native implementations of the GV Tech design system components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -67,7 +67,6 @@
|
|
|
67
67
|
"clsx": "^2.1.1",
|
|
68
68
|
"lucide-react-native": "^0.574.0",
|
|
69
69
|
"nativewind": "^4.2.1",
|
|
70
|
-
"react-native-reanimated": "4.2.1",
|
|
71
70
|
"react-native-svg": "^15.15.3",
|
|
72
71
|
"react-native-worklets": "0.7.2",
|
|
73
72
|
"tailwind-merge": "^3.4.1",
|
|
@@ -75,7 +74,13 @@
|
|
|
75
74
|
},
|
|
76
75
|
"peerDependencies": {
|
|
77
76
|
"react": ">=18",
|
|
78
|
-
"react-native": ">=0.72"
|
|
77
|
+
"react-native": ">=0.72",
|
|
78
|
+
"react-native-reanimated": "^3.0.0 || ^4.0.0"
|
|
79
|
+
},
|
|
80
|
+
"peerDependenciesMeta": {
|
|
81
|
+
"react-native-reanimated": {
|
|
82
|
+
"optional": false
|
|
83
|
+
}
|
|
79
84
|
},
|
|
80
85
|
"publishConfig": {
|
|
81
86
|
"access": "public",
|