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
247
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sendbird/uikit-react - npm Package Versions

23
25

3.15.14

Diff

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 •

sendbird
published 3.15.12 •

Changelog

Source

[v3.15.12] (Jan 9 2025)

Features:

  • Provided useConnectionState that you can get the connection state of SDK.

Fixes:

  • Improved the stability with the latest Chat SDK version.
sendbird
published 3.15.12-rc-2 •

sendbird
published 3.15.12-rc-1 •

sendbird
published 3.15.12-rc-0 •

sendbird
published 3.15.11 •

Changelog

Source

[v3.15.11] (Dec 19 2024)

  • Fixed an issue where the bubble type typing indicator appeared but was not visible because the scroll did not move to the bottom.
sendbird
published 3.15.11-rc-0 •

23
25
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc