stream-chat-angular 4.59.0 → 4.59.2
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 +27 -5
- package/bundles/stream-chat-angular.umd.js.map +1 -1
- package/esm2015/assets/version.js +2 -2
- package/esm2015/lib/channel.service.js +2 -2
- package/esm2015/lib/message-list/message-list.component.js +26 -4
- package/fesm2015/stream-chat-angular.js +27 -5
- package/fesm2015/stream-chat-angular.js.map +1 -1
- package/lib/message-list/message-list.component.d.ts +3 -2
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
|
@@ -33,9 +33,8 @@ export declare class MessageListComponent implements AfterViewChecked, OnChanges
|
|
|
33
33
|
*/
|
|
34
34
|
messageOptionsTrigger: 'message-row' | 'message-bubble';
|
|
35
35
|
/**
|
|
36
|
-
* You can hide the "jump to latest" button while scrolling. A potential use-case for this input would be to [workaround a known issue on iOS Safar](https://github.com/GetStream/stream-chat-angular/issues/418)
|
|
36
|
+
* You can hide the "jump to latest" button while scrolling. A potential use-case for this input would be to [workaround a known issue on iOS Safar webview](https://github.com/GetStream/stream-chat-angular/issues/418)
|
|
37
37
|
*
|
|
38
|
-
* @deprecated This scroll issue has been resolved, no need to use this workaround anymore.
|
|
39
38
|
*/
|
|
40
39
|
hideJumpToLatestButtonDuringScroll: boolean;
|
|
41
40
|
/**
|
|
@@ -90,6 +89,7 @@ export declare class MessageListComponent implements AfterViewChecked, OnChanges
|
|
|
90
89
|
firstUnreadMessageId?: string;
|
|
91
90
|
unreadCount?: number;
|
|
92
91
|
isJumpingToLatestUnreadMessage: boolean;
|
|
92
|
+
isJumpToLatestButtonVisible: boolean;
|
|
93
93
|
private scrollContainer;
|
|
94
94
|
private parentMessageElement;
|
|
95
95
|
private latestMessage;
|
|
@@ -108,6 +108,7 @@ export declare class MessageListComponent implements AfterViewChecked, OnChanges
|
|
|
108
108
|
private parsedDates;
|
|
109
109
|
private isViewInited;
|
|
110
110
|
private checkIfUnreadNotificationIsVisibleTimeout?;
|
|
111
|
+
private jumpToLatestButtonVisibilityTimeout?;
|
|
111
112
|
private get class();
|
|
112
113
|
constructor(channelService: ChannelService, chatClientService: ChatClientService, customTemplatesService: CustomTemplatesService, dateParser: DateParserService, ngZone: NgZone, cdRef: ChangeDetectorRef, messageActionsService: MessageActionsService);
|
|
113
114
|
messageNotificationJumpClicked: () => void;
|
package/package.json
CHANGED
package/src/assets/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '4.59.
|
|
1
|
+
export const version = '4.59.2';
|