Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sendbird/uikit-react

Package Overview
Dependencies
Maintainers
1
Versions
229
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sendbird/uikit-react - npm Package Versions

1
2122

3.0.0-beta.6

Diff

Changelog

Source

[3.0.0-beta.6] (June 03 2022)

Feature:

  • Show profile on clicking a mention
  • Visual highlight when user is mention
  • Add session handler interface
  // its recommended to memoize configureSession function
  const memoizedConfigureSession = (sb) => {
    const sessionHandler = new sb.SessionHandler();
    sessionHandler.onSessionTokenRequired = (onSuccess, onError) => {
    };
    return sessionHandler;
  };

  // see: https://sendbird.com/docs/chat/v3/javascript/guides/authentication
  <SendbirdProvider
    configureSession={memoizedConfigureSession}
  />

Fix:

  • Change the front-weight of Subtitle2 from 600 to 500
  • Modify mention badge position on the ChannelListItem component
  • Change Info Icon size to 20px on the SuggestedMentionListItem component
  • Differentiate the message status 'read' and 'delivered' with message grouping
  • Modify KeyDown event handler on the message input for sending Korean text edge case Fix: Mention related stuff
  • Modify the onMouseOver event on the SuggestedMentionList component
  • Filter 'html' text when pasting text to the MessageInput component
  • Hide and apply ellipsis for overflowing text on the SuggestedMentionListItem component
  • Deactivate the MessageInput component when the current user is muted or the current channel is frozen
  • Reset the mention states of the current channel when changing channel and closing the edit MessageInput component
sendbird
published 3.0.0-beta.5 •

Changelog

Source

[3.0.0-beta.5] (May 24 2022)

Fixes:

  • Export useChannelList
  • Active disableAutoSelect props
  • Remove empty CSS file to fix source map warning

DOC:

  • Add info about webpack 5 breaking changes
sendbird
published 3.0.0-beta.4 •

Changelog

Source

[3.0.0-beta.4] (May 24 2022) -> unpublished

sendbird
published 3.0.0-beta.3 •

Changelog

Source

[3.0.0-beta.3] (May 19 2022)

Fixes:

  • Rate limit markAsDelivered call
  • Do not render date separator when renderCustomSeparator is null Misc:
  • Update Chat SDK minimum version to 3.1.13
sendbird
published 3.0.0-beta.2 •

Changelog

Source

[3.0.0-beta.2] (April 29 2022)

Feature:

  • Mention

    • Add isMentionEnabled props to the <App /> and <SendbirdProvider />
    • Add userMention into the config props of the <App /> andd <SendbirdProvider />
      • <SendbirdProvider config={{ userMention: { maxMentionCount: 10, maxSuggestionCount: 15 } }} />
      • maxMentionCount: A maximum count that you can mention in the message input
      • maxSuggestionCount: A maximum user count that the SuggestedMentionList suggests for user mention
    • Create SuggestedMentionList component under the Channel smart component
      • Create SuggestedUserMentionItem component
    • Create MentionUserLabel ui component
    • Add string set
      • MENTION_NAME__NO_NAME: '(No name)'
      • MENTION_COUNT__OVER_LIMIT: 'You can mention up to %d times per message.' Fix:
  • Type definition file fix for TS project For typescript projects, add node_modules/@sendbird/uikit-react/index.d.ts to your include section in tsconfig file to get type definitions

  • Move font import to top of CSS file Some bundlers such as parcel throw error: @import rules must precede all rules aside from @charset and @layer statements Resolve this issue by moving the line to the top

sendbird
published 3.0.0-beta •

Changelog

Source

[3.0.0-beta] (Apr 12 2022)

This is the official beta for Sendbird UIKit for React version 3!

TLDR -> We split the old smart-components into modules which contian context and UI. Context contain logic and UI Components handle UI

Check out the v2 to v3 migration guide for details

Changelog:

  • Package should be installed using @sendbird/uikit-react
  • Restructure smart-components into modules that contain a context and related UI components
  • Export these context and UI components to allow fine-grain customization
  • Recommend to use these context elements useXXXXX() and react function components to make custom components
  • All generic UI components are available as exports
  • Restrcuture export paths to allow better tree-shaking
  • Example:
import { useChannel } from '@sendbird/uikit-react/Channel/context';
import ChannelUI from '@sendbird/uikit-react/Channel/components/ChannelUI';
  • We keep older export patterns to make migration easier
  • Retained modules - ChannelList, Channel, ChannelSettings, OpenChannel, OpenChannelSettings, MessageSearch
  • New modules(not including context and ui of above) - CreateChannel, EditUserProfile, ui
sendbird
published 3.0.0-alpha.2 •

sendbird
published 3.0.0-alpha.1 •

sendbird
published 3.0.0-alpha •

1
2122
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