@usechat/react-native 1.0.15 → 1.0.17
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/dist/index.d.mts +16 -6
- package/dist/index.d.ts +16 -6
- package/dist/index.js +256 -253
- package/dist/index.mjs +321 -318
- package/package.json +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@usechat/react-native",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.17",
|
|
4
4
|
"description": "Modular React Native Chat UI SDK with keyboard handling, customizable components, and rich features",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"author": "Lukasz Ko <hello@usechat.dev>",
|
|
@@ -34,21 +34,21 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"dayjs": "^1.11.13",
|
|
36
36
|
"lucide-react-native": "^0.539.0",
|
|
37
|
-
"react-native-keyboard-controller": "^1.18.6",
|
|
38
37
|
"rn-emoji-keyboard": "^1.7.0"
|
|
39
38
|
},
|
|
40
39
|
"devDependencies": {
|
|
41
40
|
"@tsconfig/react-native": "^3.0.6",
|
|
42
41
|
"@types/react": "^19.0.0",
|
|
43
42
|
"@types/react-native-web": "^0.19.2",
|
|
44
|
-
"react": "^19.
|
|
45
|
-
"react-dom": "^19.
|
|
46
|
-
"react-native": "^0.
|
|
43
|
+
"react": "^19.1.0",
|
|
44
|
+
"react-dom": "^19.1.0",
|
|
45
|
+
"react-native": "^0.81.5",
|
|
47
46
|
"tsup": "^8.1.0",
|
|
48
47
|
"typescript": "^5.9.2"
|
|
49
48
|
},
|
|
50
49
|
"peerDependencies": {
|
|
51
50
|
"expo-clipboard": "*",
|
|
51
|
+
"react-native-keyboard-controller": "*",
|
|
52
52
|
"expo-contacts": "*",
|
|
53
53
|
"expo-document-picker": "*",
|
|
54
54
|
"expo-image-manipulator": "*",
|
|
@@ -62,6 +62,9 @@
|
|
|
62
62
|
"react-native-web": "*"
|
|
63
63
|
},
|
|
64
64
|
"peerDependenciesMeta": {
|
|
65
|
+
"react-native-keyboard-controller": {
|
|
66
|
+
"optional": false
|
|
67
|
+
},
|
|
65
68
|
"react-native": {
|
|
66
69
|
"optional": true
|
|
67
70
|
},
|