Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions gaming-livestream/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
"@emoji-mart/react": "^1.1.1",
"@sentry/react": "^7.56.0",
"emoji-mart": "^5.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stream-chat": "^8.52.3",
"stream-chat-react": "^12.10.0"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"stream-chat": "^8.56.0",
"stream-chat-react": "^12.12.0"
},
"devDependencies": {
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"react-scripts": "^5.0.1",
"sass": "^1.77.7",
"typescript": "^4.8.4"
Expand Down
1,170 changes: 634 additions & 536 deletions gaming-livestream/yarn.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions social-messenger-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
"clsx": "^2.1.1",
"emoji-mart": "^5.5.2",
"lodash.debounce": "^4.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stream-chat": "^8.52.3",
"stream-chat-react": "^12.10.0"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"stream-chat": "^8.56.0",
"stream-chat-react": "^12.12.0"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/lodash.debounce": "^4.0.7",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"react-scripts": "^5.0.1",
"typescript": "^4.7.4"
},
Expand Down
1,162 changes: 630 additions & 532 deletions social-messenger-ts/yarn.lock

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions team-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@
"clsx": "^1.2.1",
"emoji-mart": "^5.5.2",
"lodash.debounce": "^4.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-dropzone": "^14.2.3",
"react-popper": "^2.3.0",
"stream-chat": "^8.52.3",
"stream-chat-react": "^12.10.0"
"stream-chat": "^8.56.0",
"stream-chat-react": "^12.12.0"
},
"devDependencies": {
"@types/emoji-mart": "^3.0.9",
"@types/jest": "^26.0.22",
"@types/lodash.debounce": "^4.0.7",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"react-scripts": "^5.0.1",
"sass": "^1.77.7",
"typescript": "^4.8.4"
Expand Down
12 changes: 0 additions & 12 deletions team-ts/src/App.test.tsx

This file was deleted.

1,170 changes: 634 additions & 536 deletions team-ts/yarn.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions virtual-event/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@
"@emoji-mart/react": "^1.1.1",
"@sentry/react": "^7.56.0",
"emoji-mart": "^5.5.2",
"framer-motion": "^7.5.0",
"framer-motion": "^12.4.2",
"lottie-web": "^5.9.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stream-chat": "^8.52.3",
"stream-chat-react": "^12.10.0"
"react": "^19.0.0",
"react-dom": "^19.0.0",
"stream-chat": "^8.56.0",
"stream-chat-react": "^12.12.0"
},
"devDependencies": {
"@types/emoji-mart": "^3.0.8",
"@types/node": "^16",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"postcss-normalize": "^10.0.1",
"react-scripts": "^5.0.1",
"sass": "^1.77.7",
Expand Down
6 changes: 3 additions & 3 deletions virtual-event/src/components/Chat/DMChannelList.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { PropsWithChildren } from 'react';
import React, {PropsWithChildren, ReactNode} from 'react';
import type {
Channel as StreamChannel,
ChannelFilters,
Expand Down Expand Up @@ -69,7 +69,7 @@ type PreviewUIProps = ChannelPreviewUIComponentProps & {
};

const PreviewUI = (props: PreviewUIProps) => {
const { channel, displayImage, displayTitle, latestMessage, setDmChannel, unread } = props;
const { channel, displayImage, displayTitle, latestMessagePreview, setDmChannel, unread } = props;

const { client } = useChatContext();

Expand All @@ -94,7 +94,7 @@ const PreviewUI = (props: PreviewUIProps) => {
<div>{displayTitle}</div>
<div>{formattedTime}</div>
</div>
<div className={`dm-list-preview-bottom ${unread ? 'unread' : ''}`}>{latestMessage}</div>
<div className={`dm-list-preview-bottom ${unread ? 'unread' : ''}`}>{latestMessagePreview as ReactNode}</div>
</div>
<ClickDMIcon />
</div>
Expand Down
4 changes: 2 additions & 2 deletions virtual-event/src/components/Chat/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ type EmEmojiProps = {
skin: string;
};

declare global {
declare module "react" {
namespace JSX {
interface IntrinsicElements {
['em-emoji']: CustomElement<EmEmojiProps>;
'em-emoji': CustomElement<EmEmojiProps>;
}
}
}
Expand Down
Loading