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
2 changes: 1 addition & 1 deletion package/src/components/Chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export type ChatProps = Pick<ChatContextValue, 'client'> &
* This only controls whether the native adapter gets installed by this Chat instance.
* It does not uninstall an adapter that was already installed on the client.
*
* @default true
* @default false
*/
useNativeMultipartUpload?: boolean;
/**
Expand Down
5 changes: 5 additions & 0 deletions package/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ export * from './MessageInput/components/AttachmentPreview/AudioAttachmentUpload
export * from './MessageInput/components/AttachmentPreview/FileAttachmentUploadPreview';
export * from './MessageInput/components/AttachmentPreview/ImageAttachmentUploadPreview';
export * from './MessageInput/hooks/useAudioRecorder';
export * from './MessageInput/hooks/useCooldownRemaining';

export * from './MessageList/DateHeader';
export * from './MessageList/hooks/useMessageList';
Expand Down Expand Up @@ -196,6 +197,10 @@ export * from './UIComponents/SvgAwareImage';
export * from './UIComponents/Spinner';
export * from './UIComponents/SwipableWrapper';
export * from './UIComponents/PortalWhileClosingView';
export * from './UIComponents/EmptyList';
export * from './UIComponents/EmptySearchResult';
export * from './UIComponents/SearchInput';
export * from './UIComponents/SelectionCircle';

export * from './Thread/Thread';
export * from './Thread/components/ThreadFooterComponent';
Expand Down
3 changes: 3 additions & 0 deletions package/src/components/ui/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@ export * from './Avatar';
export * from './VideoPlayIndicator';
export * from './Button';
export * from './Badge';
export * from './Input/Input';
export * from './SpeedSettingsButton';
export * from './GiphyChip';
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export type AttachmentPickerContextValue = Pick<
> & {
/**
* `bottomInset` determine the height of the `AttachmentPicker` and the underlying shift to the `MessageList` when it is opened.
* This can also be set via the `setBottomInset` function provided by the `useAttachmentPickerContext` hook.
* This can be set via the `bottomInset` prop on the `Channel` component.
*
* Please check [OverlayProvider](https://github.com/GetStream/stream-chat-react-native/wiki/Cookbook-v3.0#overlayprovider) section in Cookbook
* for more details.
Expand Down
2 changes: 1 addition & 1 deletion package/src/contexts/channelsContext/ChannelsContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export type ChannelsContextValue = {
*/
maxUnreadCount: number;
/**
* Number of skeletons that should show when loading. Default: 6
* Number of skeletons that should show when loading. Default: 8
*/
numberOfSkeletons: number;
/**
Expand Down
2 changes: 1 addition & 1 deletion package/src/contexts/pollContext/pollContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const usePollContext = () => {

if (contextValue === DEFAULT_BASE_CONTEXT_VALUE && !isTestEnvironment()) {
throw new Error(
'The useCreatePollContext hook was called outside of the PollContext provider. Make sure you have configured the Poll component correctly - https://getstream.io/chat/docs/sdk/reactnative/basics/hello_stream_chat/#channel',
'The usePollContext hook was called outside of the PollContext provider. Make sure you have configured the Poll component correctly - https://getstream.io/chat/docs/sdk/reactnative/basics/hello_stream_chat/#channel',
);
}

Expand Down
Loading