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.
- package/assets/version.d.ts +1 -1
- package/bundles/stream-chat-angular.umd.js +5 -1
- package/bundles/stream-chat-angular.umd.js.map +1 -1
- package/esm2015/assets/version.js +2 -2
- package/esm2015/lib/channel.service.js +5 -1
- package/fesm2015/stream-chat-angular.js +5 -1
- package/fesm2015/stream-chat-angular.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
package/assets/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "4.27.
|
|
1
|
+
export declare const version = "4.27.1";
|
|
@@ -355,7 +355,7 @@
|
|
|
355
355
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
356
356
|
}
|
|
357
357
|
|
|
358
|
-
var version = '4.27.
|
|
358
|
+
var version = '4.27.1';
|
|
359
359
|
|
|
360
360
|
/**
|
|
361
361
|
* The `NotificationService` can be used to add or remove notifications. By default the [`NotificationList`](../components/NotificationListComponent.mdx) component displays the currently active notifications.
|
|
@@ -820,6 +820,8 @@
|
|
|
820
820
|
this.activeParentMessageIdSubject.next(undefined);
|
|
821
821
|
this.activeThreadMessagesSubject.next([]);
|
|
822
822
|
this.messageToQuoteSubject.next(undefined);
|
|
823
|
+
this.usersTypingInChannelSubject.next([]);
|
|
824
|
+
this.usersTypingInThreadSubject.next([]);
|
|
823
825
|
};
|
|
824
826
|
/**
|
|
825
827
|
* Deselects the currently active (if any) channel
|
|
@@ -838,6 +840,8 @@
|
|
|
838
840
|
this.selectMessageToQuote(undefined);
|
|
839
841
|
this.jumpToMessageSubject.next({ id: undefined, parentId: undefined });
|
|
840
842
|
this.activeChannelPinnedMessagesSubject.next([]);
|
|
843
|
+
this.usersTypingInChannelSubject.next([]);
|
|
844
|
+
this.usersTypingInThreadSubject.next([]);
|
|
841
845
|
};
|
|
842
846
|
/**
|
|
843
847
|
* Sets the given `message` as an active parent message. If `undefined` is provided, it will deleselect the current parent message.
|