@100mslive/roomkit-react 0.3.11-alpha.1 → 0.3.11-alpha.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/{HLSView-77OCJRUH.js → HLSView-FEGLXQNY.js} +2 -2
- package/dist/{HLSView-ZFVXF26F.css → HLSView-SR4DYGYR.css} +3 -3
- package/dist/{HLSView-ZFVXF26F.css.map → HLSView-SR4DYGYR.css.map} +1 -1
- package/dist/{chunk-4X3AES3T.js → chunk-5Y4ASC7Q.js} +8 -9
- package/dist/{chunk-4X3AES3T.js.map → chunk-5Y4ASC7Q.js.map} +2 -2
- package/dist/index.cjs.css +2 -2
- package/dist/index.cjs.css.map +1 -1
- package/dist/index.cjs.js +10 -11
- package/dist/index.cjs.js.map +3 -3
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/index.js +1 -1
- package/dist/meta.cjs.json +13 -13
- package/dist/meta.esbuild.json +25 -25
- package/package.json +7 -7
- package/src/Prebuilt/components/Chat/ChatFooter.tsx +3 -4
- package/src/Prebuilt/components/MoreSettings/SplitComponents/MwebOptions.tsx +2 -4
- /package/dist/{HLSView-77OCJRUH.js.map → HLSView-FEGLXQNY.js.map} +0 -0
package/package.json
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
"prebuilt",
|
11
11
|
"roomkit"
|
12
12
|
],
|
13
|
-
"version": "0.3.11-alpha.
|
13
|
+
"version": "0.3.11-alpha.3",
|
14
14
|
"author": "100ms",
|
15
15
|
"license": "MIT",
|
16
16
|
"repository": {
|
@@ -74,12 +74,12 @@
|
|
74
74
|
"react": ">=17.0.2 <19.0.0"
|
75
75
|
},
|
76
76
|
"dependencies": {
|
77
|
-
"@100mslive/hls-player": "0.3.11-alpha.
|
77
|
+
"@100mslive/hls-player": "0.3.11-alpha.3",
|
78
78
|
"@100mslive/hms-noise-cancellation": "0.0.1",
|
79
|
-
"@100mslive/hms-virtual-background": "1.13.11-alpha.
|
80
|
-
"@100mslive/hms-whiteboard": "0.0.1-alpha.
|
81
|
-
"@100mslive/react-icons": "0.10.11-alpha.
|
82
|
-
"@100mslive/react-sdk": "0.10.11-alpha.
|
79
|
+
"@100mslive/hms-virtual-background": "1.13.11-alpha.3",
|
80
|
+
"@100mslive/hms-whiteboard": "0.0.1-alpha.3",
|
81
|
+
"@100mslive/react-icons": "0.10.11-alpha.3",
|
82
|
+
"@100mslive/react-sdk": "0.10.11-alpha.3",
|
83
83
|
"@100mslive/types-prebuilt": "0.12.8",
|
84
84
|
"@emoji-mart/data": "^1.0.6",
|
85
85
|
"@emoji-mart/react": "^1.0.1",
|
@@ -115,5 +115,5 @@
|
|
115
115
|
"uuid": "^8.3.2",
|
116
116
|
"worker-timers": "^7.0.40"
|
117
117
|
},
|
118
|
-
"gitHead": "
|
118
|
+
"gitHead": "405b71b3b32e5a2ceeaca25bbfbfd931bdc55036"
|
119
119
|
}
|
@@ -210,20 +210,19 @@ export const ChatFooter = ({ onSend, children }: { onSend: (count: number) => vo
|
|
210
210
|
) : null}
|
211
211
|
</Flex>
|
212
212
|
{selection && (
|
213
|
-
<Flex align=
|
213
|
+
<Flex align={inputRef.current?.scrollHeight === 32 ? 'center' : 'end'} css={{ gap: '$4', w: '100%' }}>
|
214
214
|
<Flex
|
215
215
|
align="end"
|
216
216
|
css={{
|
217
217
|
bg: isOverlayChat && isMobile ? '$surface_dim' : '$surface_default',
|
218
218
|
minHeight: '$16',
|
219
219
|
position: 'relative',
|
220
|
-
py: '$6',
|
220
|
+
py: isOverlayChat && isMobile ? '$2' : '$6',
|
221
221
|
pl: '$8',
|
222
222
|
flexGrow: 1,
|
223
223
|
r: '$1',
|
224
224
|
'@md': {
|
225
|
-
minHeight: '
|
226
|
-
h: '$14',
|
225
|
+
minHeight: '$14',
|
227
226
|
boxSizing: 'border-box',
|
228
227
|
},
|
229
228
|
...(isLandscapeHLSStream ? { minHeight: '$14', py: 0 } : {}),
|
@@ -29,7 +29,7 @@ import {
|
|
29
29
|
SettingsIcon,
|
30
30
|
VirtualBackgroundIcon,
|
31
31
|
} from '@100mslive/react-icons';
|
32
|
-
import { Box, Loading,
|
32
|
+
import { Box, Loading, Tooltip } from '../../../..';
|
33
33
|
import { Sheet } from '../../../../Sheet';
|
34
34
|
// @ts-ignore: No implicit any
|
35
35
|
import IconButton from '../../../IconButton';
|
@@ -202,9 +202,7 @@ export const MwebOptions = ({
|
|
202
202
|
}}
|
203
203
|
>
|
204
204
|
{isTranscriptionEnabled && isCaptionEnabled ? <ClosedCaptionIcon /> : <OpenCaptionIcon />}
|
205
|
-
<
|
206
|
-
Closed Caption
|
207
|
-
</Text>
|
205
|
+
<ActionTile.Title>Closed Caption</ActionTile.Title>
|
208
206
|
</ActionTile.Root>
|
209
207
|
{isLocalVideoEnabled && !!elements?.virtual_background ? (
|
210
208
|
<ActionTile.Root
|
File without changes
|