@tellescope/chat 1.3.10 → 1.3.13
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/lib/cjs/components.native.d.ts.map +1 -1
- package/lib/cjs/components.native.js +1 -1
- package/lib/cjs/components.native.js.map +1 -1
- package/lib/esm/components.native.d.ts.map +1 -1
- package/lib/esm/components.native.js +2 -2
- package/lib/esm/components.native.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/src/components.native.tsx +6 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tellescope/chat",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.13",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/cjs/index.js",
|
|
6
6
|
"module": "./lib/esm/index.js",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"@fontsource/roboto": "^4.5.1",
|
|
35
35
|
"@mui/icons-material": "^5.0.1",
|
|
36
36
|
"@mui/material": "^5.0.2",
|
|
37
|
-
"@tellescope/constants": "^1.3.
|
|
38
|
-
"@tellescope/react-components": "^1.3.
|
|
39
|
-
"@tellescope/sdk": "^1.3.
|
|
40
|
-
"@tellescope/types-client": "^1.3.
|
|
41
|
-
"@tellescope/types-models": "^1.3.
|
|
37
|
+
"@tellescope/constants": "^1.3.13",
|
|
38
|
+
"@tellescope/react-components": "^1.3.13",
|
|
39
|
+
"@tellescope/sdk": "^1.3.13",
|
|
40
|
+
"@tellescope/types-client": "^1.3.13",
|
|
41
|
+
"@tellescope/types-models": "^1.3.13",
|
|
42
42
|
"@tellescope/types-utilities": "^1.3.10",
|
|
43
|
-
"@tellescope/utilities": "^1.3.
|
|
43
|
+
"@tellescope/utilities": "^1.3.13",
|
|
44
44
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
45
45
|
"@typescript-eslint/parser": "^4.33.0",
|
|
46
46
|
"eslint": "^7.32.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
52
52
|
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "a9c9351b33884b00ac26e16ae6bb5837ee1974fa",
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
57
|
}
|
|
@@ -95,20 +95,14 @@ const SendImageOrVideo = ({
|
|
|
95
95
|
<Button disabled={menuDisabled} variant="contained" onPress={() => handleImageSelect('library')}
|
|
96
96
|
style={{ marginBottom: 20 }}
|
|
97
97
|
>
|
|
98
|
-
<
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
</Typography>
|
|
102
|
-
<Avatar.Icon icon="image" color="white" size={CHAT_ICON_SIZE} />
|
|
103
|
-
</View>
|
|
98
|
+
<Typography style={{ fontSize: 18, color: 'white', padding: 10 }}>
|
|
99
|
+
Upload Photo or Video
|
|
100
|
+
</Typography>
|
|
104
101
|
</Button>
|
|
105
102
|
<Button disabled={menuDisabled} variant="contained" onPress={() => handleImageSelect('camera')}>
|
|
106
|
-
<
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
</Typography>
|
|
110
|
-
<Avatar.Icon icon="camera" color="white" size={CHAT_ICON_SIZE} />
|
|
111
|
-
</View>
|
|
103
|
+
<Typography style={{ fontSize: 18, color: 'white', padding: 10 }}>
|
|
104
|
+
Take Photo
|
|
105
|
+
</Typography>
|
|
112
106
|
</Button>
|
|
113
107
|
<Button variant='outlined' onPress={() => setMenuOpen(false)} style={{ marginTop: 25 }}>
|
|
114
108
|
Cancel
|