stream-chat-angular 4.27.0 → 4.27.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,7 +19,7 @@ import transliterate from '@stream-io/transliterate';
19
19
  import * as i8$1 from 'angular-mentions';
20
20
  import { MentionModule } from 'angular-mentions';
21
21
 
22
- const version = '4.27.0';
22
+ const version = '4.27.1';
23
23
 
24
24
  /**
25
25
  * The `NotificationService` can be used to add or remove notifications. By default the [`NotificationList`](../components/NotificationListComponent.mdx) component displays the currently active notifications.
@@ -411,6 +411,8 @@ class ChannelService {
411
411
  this.activeParentMessageIdSubject.next(undefined);
412
412
  this.activeThreadMessagesSubject.next([]);
413
413
  this.messageToQuoteSubject.next(undefined);
414
+ this.usersTypingInChannelSubject.next([]);
415
+ this.usersTypingInThreadSubject.next([]);
414
416
  }
415
417
  /**
416
418
  * Deselects the currently active (if any) channel
@@ -429,6 +431,8 @@ class ChannelService {
429
431
  this.selectMessageToQuote(undefined);
430
432
  this.jumpToMessageSubject.next({ id: undefined, parentId: undefined });
431
433
  this.activeChannelPinnedMessagesSubject.next([]);
434
+ this.usersTypingInChannelSubject.next([]);
435
+ this.usersTypingInThreadSubject.next([]);
432
436
  }
433
437
  /**
434
438
  * Sets the given `message` as an active parent message. If `undefined` is provided, it will deleselect the current parent message.