New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sendbird/uikit-react

Package Overview
Dependencies
Maintainers
1
Versions
251
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sendbird/uikit-react - npm Package Versions

2345
26

3.16.1

Diff
sendbird
published 3.16.1 •

Changelog

Source

[v3.16.1] (Mar 5 2025)

Fixes:

  • Fixed an unexpected error in MessageList
sendbird
published 3.16.1-rc •
sendbird
published 3.16.0 •

Changelog

Source

[v3.16.0] (Feb 28 2025)

Fixes:

  • Added the missing import paths for the following interfaces
    • GroupChannelState
    • GroupChannelProviderProps
    • ChannelSettingsState
    • ChannelSettingsContextProps
  • Fixed an issue where some of the context properties are not defined in a certain case

Chore

  • Updated dompurify dependency version to v3.2.4
sendbird
published 3.16.0-rc •
sendbird
published 3.15.15 •

Changelog

Source

[v3.15.15] (Feb 14 2025)

Fixes:

  • Added the missing import paths for the following deprecated interfaces.
    • useSendbirdStateContext
    • withSendbird
  • Fixed an issue where VoiceMessageInput failed to record the audio at first.

Chore

  • Updated @sendbird/chat version to 4.16.4
sendbird
published 3.15.15-rc •
sendbird
published 3.15.14 •

Changelog

Source

[v3.15.14] (Feb 7 2025)

Features:

  • Added custom hooks for each module replacing the previous context hook. The custom hook allows access to the provider's data, which are divided into state and actions properties.
    • Added useGroupChannelList, replacing useGroupChannelListContext
    • Added useCreateChannel, replacing useCreateChannelContext
    • Added useChannelSettings, replacing useChannelSettingsContext
    • Added useGroupChannel, replacing useGroupChannelContext
    • Added useMessageSearch, replacing useMessageSearchContext
    • Added useThread, replacing useThreadContext
      • How to Use?
      import { useGroupChannel } from '@sendbird/uikit-react/GroupChannel/context';
      
      // Implement your code inside the react function component.
      const Component = () => {
      // const { currentChannel, scrollToBottom } = useGroupChannelContext();
      const {
        state : {
          currentChannel,
        },
        actions : {
          scrollToBottom
        },
      } = useGroupChannel();
      
      const onScrollDownButtonClick = () => {
        scrollToBottom();
      };
      
      // ...
      }
      

Fixes:

  • Fixed an issue where the pasting the formatted text to MessageInput did not shows properly.
  • Fixed a bug with forwardRef Rules of Hooks violation.
sendbird
published 3.15.14-rc •
sendbird
published 3.15.13 •

Changelog

Source

[v3.15.13] (Jan 31 2025)

Features:

  • Added React 19 compatibility
  • Added messageSearchQuery.keyword when searching in MessageSearch module
    • searchString now takes higher priority, while messageSearchQuery.keyword is assigned secondary priority.

Fixes:

  • Fixed the width of the messages in open channel
sendbird
published 3.15.13-rc •
2345
26