@100mslive/roomkit-react 0.3.11-alpha.0 → 0.3.11-alpha.2

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/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "prebuilt",
11
11
  "roomkit"
12
12
  ],
13
- "version": "0.3.11-alpha.0",
13
+ "version": "0.3.11-alpha.2",
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.0",
77
+ "@100mslive/hls-player": "0.3.11-alpha.2",
78
78
  "@100mslive/hms-noise-cancellation": "0.0.1",
79
- "@100mslive/hms-virtual-background": "1.13.11-alpha.0",
80
- "@100mslive/hms-whiteboard": "0.0.1-alpha.0",
81
- "@100mslive/react-icons": "0.10.11-alpha.0",
82
- "@100mslive/react-sdk": "0.10.11-alpha.0",
79
+ "@100mslive/hms-virtual-background": "1.13.11-alpha.2",
80
+ "@100mslive/hms-whiteboard": "0.0.1-alpha.2",
81
+ "@100mslive/react-icons": "0.10.11-alpha.2",
82
+ "@100mslive/react-sdk": "0.10.11-alpha.2",
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": "a4ed4a99addf5a2e5b923743c65bd20bd41d4175"
118
+ "gitHead": "df126e9edffb113d3d98fc5a41745008c156af69"
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="center" css={{ gap: '$4', w: '100%' }}>
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: 'unset',
226
- h: '$14',
225
+ minHeight: '$14',
227
226
  boxSizing: 'border-box',
228
227
  },
229
228
  ...(isLandscapeHLSStream ? { minHeight: '$14', py: 0 } : {}),
@@ -51,7 +51,7 @@ export function EqualProminence({ isInsetEnabled = false, peers, onPageChange, o
51
51
  )}
52
52
  {pageList.length === 0 ? (
53
53
  <WaitingView
54
- title="Waiting for Host to join"
54
+ title="You're the first to join"
55
55
  subtitle="Sit back and relax till others join"
56
56
  icon={<PeopleAddIcon width="56px" height="56px" style={{ color: 'white' }} />}
57
57
  />