stream-chat-angular 5.12.2 → 5.12.3
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/esm2020/assets/version.mjs +2 -2
- package/esm2020/lib/message/message.component.mjs +19 -4
- package/esm2020/lib/message-actions.service.mjs +5 -1
- package/fesm2015/stream-chat-angular.mjs +24 -4
- package/fesm2015/stream-chat-angular.mjs.map +1 -1
- package/fesm2020/stream-chat-angular.mjs +23 -4
- package/fesm2020/stream-chat-angular.mjs.map +1 -1
- package/lib/message-actions.service.d.ts +4 -0
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
|
@@ -27,6 +27,10 @@ export declare class MessageActionsService<T extends DefaultStreamChatGenerics =
|
|
|
27
27
|
* By default the [`MessageComponent`](/chat/docs/sdk/angular/components/MessageComponent/) will display the [`MessageActionsBoxComponent`](/chat/docs/sdk/angular/components/MessageActionsBoxComponent/). You can override that behavior by providing your own event handler.
|
|
28
28
|
*/
|
|
29
29
|
customActionClickHandler?: (details: MessageActionsClickDetails<T>) => void;
|
|
30
|
+
/**
|
|
31
|
+
* @internal
|
|
32
|
+
*/
|
|
33
|
+
messageMenuOpenedFor$: BehaviorSubject<string | undefined>;
|
|
30
34
|
private hasDisplayedClipboardWarning;
|
|
31
35
|
constructor(chatClientService: ChatClientService, notificationService: NotificationService, channelService: ChannelService);
|
|
32
36
|
/**
|
package/package.json
CHANGED
package/src/assets/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '5.12.
|
|
1
|
+
export const version = '5.12.3';
|