@100mslive/roomkit-react 0.3.32 → 0.3.33-alpha.1
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.cjs.css +2 -2
- package/dist/index.cjs.css.map +1 -1
- package/dist/index.cjs.js +328 -318
- package/dist/index.cjs.js.map +4 -4
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/index.js +342 -332
- package/dist/index.js.map +4 -4
- package/dist/meta.cjs.json +33 -33
- package/dist/meta.esbuild.json +33 -33
- package/package.json +7 -7
- package/src/Button/Button.tsx +7 -1
- package/src/Checkbox/Checkbox.tsx +2 -0
- package/src/Dropdown/Dropdown.tsx +1 -0
- package/src/Prebuilt/components/Chat/ChatSelectorContainer.tsx +3 -2
- package/src/Prebuilt/components/Footer/ChatToggle.tsx +3 -1
- package/src/Prebuilt/components/Polls/common/MultipleChoiceOptions.jsx +3 -1
- package/src/Prebuilt/plugins/CaptionsViewer.tsx +2 -0
@@ -43,7 +43,9 @@ export const ChatToggle = ({ onClick }: { onClick?: () => void }) => {
|
|
43
43
|
background: '$primary_default',
|
44
44
|
}}
|
45
45
|
>
|
46
|
-
<Text variant="overline"
|
46
|
+
<Text variant="overline" css={{ color: '$on_primary_high' }}>
|
47
|
+
{countUnreadMessages > 99 ? '99+' : countUnreadMessages}
|
48
|
+
</Text>
|
47
49
|
</Flex>
|
48
50
|
)}
|
49
51
|
</Box>
|
@@ -60,7 +60,9 @@ export const MultipleChoiceOptions = ({
|
|
60
60
|
<Flex direction="column" css={{ flexGrow: '1' }}>
|
61
61
|
<Flex css={{ w: '100%' }}>
|
62
62
|
<Text css={{ display: 'flex', flexGrow: '1' }}>
|
63
|
-
<Label htmlFor={`${questionIndex}-${option.index}`}
|
63
|
+
<Label htmlFor={`${questionIndex}-${option.index}`} css={{ color: 'inherit' }}>
|
64
|
+
{option.text}
|
65
|
+
</Label>
|
64
66
|
</Text>
|
65
67
|
{showVoteCount && <VoteCount voteCount={option.voteCount} />}
|
66
68
|
</Flex>
|
@@ -163,6 +163,7 @@ const TranscriptView = ({ peer_id, data }: { peer_id: string; data: string }) =>
|
|
163
163
|
variant="body2"
|
164
164
|
css={{
|
165
165
|
fontWeight: '$normal',
|
166
|
+
color: 'inherit',
|
166
167
|
}}
|
167
168
|
>
|
168
169
|
<b>{peerName}: </b>
|
@@ -240,6 +241,7 @@ export const CaptionsViewer = ({
|
|
240
241
|
background: '#000000A3',
|
241
242
|
overflow: 'clip',
|
242
243
|
zIndex: 10,
|
244
|
+
color: '$on_primary_high',
|
243
245
|
height: 'fit-content',
|
244
246
|
r: '$1',
|
245
247
|
p: '$6',
|