Skip to content

v3.4.1

Compare
Choose a tag to compare
@bang9 bang9 released this 06 Feb 06:38
· 318 commits to main since this release
b3f416e

3.4.1 (2024-02-06)

Release notes

  • Added channelListQueryParams prop to GroupChannelListFragment.
    It allows you to set the query parameters for the channel list. (collectionCreator is deprecated and replaced by channelListQueryParams)
      <GroupChannelList
        channelListQueryParams={{
          includeEmpty: true,
          includeFrozen: true,
        }}
      />
  • Added messageListQueryParams prop to GroupChannelFragment.
    It allows you to set the query parameters for the message list. (collectionCreator is deprecated and replaced by messageListQueryParams)
      <GroupChannel
        channelUrl={channelUrl}
        messageListQueryParams={{
          prevResultLimit: 20,
          customTypesFilter: ['filter'],
        }}
      />
  • Fixed an issue where a type error occurred in the CommonComponent.
    It used React.ComponentType instead of the function structure.

Changelogs

Bug Fixes

  • use ComponentType instead of function structure in CommonComponent type (2cf00e9)