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

1
25

3.3.5-rc.0

Diff

sendbird
published 3.3.4 •

Changelog

Source

[v3.3.4] (Jan 6 2023)

Fix:

  • Add the time stamp rendering case for before this year on the ChannelList
  • Improve the message input security
    • Possibility of XSS has been discovered
    • Recommend to do a version up, if you are using UIKit version 3.0.0 or higher
sendbird
published 3.3.4-rc.0 •

sendbird
published 3.3.3 •

Changelog

Source

[v3.3.3] (Dec 22 2022)

Fix:

  • Change default value of the image compression rate to 70%(0.7)
sendbird
published 3.3.3-rc.0 •

sendbird
published 3.3.2 •

Changelog

Source

[v3.3.2] (Dec 8 2022)

Features:

  • Add props renderTitle to the <ChannelListHeader /> component

    • renderHeader of <ChannelListHeader /> will be deprecated
  • Add interface overrideInviteUser

    Add overrideInviteUser to ChannelList, CreateChannel and ChannelSettings

    This interface overrides InviteMember functionality. Customer has to create the channel and close the popup manually

    export type OverrideInviteUserType = {
        users: Array<string>;
        onClose: () => void;
        channelType: 'group' | 'supergroup' | 'broadcast';
    };
    export interface ChannelListProps {
      overrideInviteUser?(params: OverrideInviteUserType): void;
    }
    export interface CreateChannelProps {
      overrideInviteUser?(params: OverrideInviteUserType): void;
    }
    export type OverrideInviteMemberType = {
        users: Array<string>;
        onClose: () => void;
        channel: GroupChannel;
    };
    ChannelSettings.overrideInviteUser?(params: OverrideInviteMemberType): void;
    

    example:

    <ChannelList
      overrideInviteUser={({users, onClose, channelType}) => {
        createMyChannel(users, channelType).then(() => {
          onClose();
        })
      }}
    />
    

Fixes:

  • Allow to override entire message search query. Now message search query supports searching messages in multiple channels.
  • Modify type definitions for props ThreadUIProps.renderMessage.
  • Remove duplication of create channel button when using renderHeader of <ChannelList />.
  • The online status should work even configureSession is provided. This was disabled because of a bug in sessionHandler in SDK now, we can re-enable this.
  • Create channel sometimes had empty operatorID. Use sendbird state to access currentUserID and use it incase prop value is empty. Also, remove legacy HOC pattern.
  • Add the props type isMentionEnabled of <App />.
  • Change the props type messageSearchQuery of <MessageSearch /> to MessageSearchQueryParams.
sendbird
published 3.3.2-rc.3 •

sendbird
published 3.3.2-rc.2 •

sendbird
published 3.3.2-rc.1 •

sendbird
published 3.3.2-rc.0 •

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