stream-chat-angular 4.36.0 → 4.36.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 +12 -6
- package/bundles/stream-chat-angular.umd.js.map +1 -1
- package/esm2015/assets/version.js +2 -2
- package/esm2015/lib/message/message.component.js +2 -2
- package/esm2015/lib/message-list/message-list.component.js +11 -5
- package/fesm2015/stream-chat-angular.js +12 -6
- package/fesm2015/stream-chat-angular.js.map +1 -1
- package/lib/message-list/message-list.component.d.ts +3 -3
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
|
@@ -43,13 +43,13 @@ export declare class MessageListComponent implements AfterViewChecked, OnChanges
|
|
|
43
43
|
displayDateSeparator: boolean;
|
|
44
44
|
/**
|
|
45
45
|
* If date separators are displayed, you can set the horizontal position of the date text.
|
|
46
|
-
* If `openMessageListAt` is `last-
|
|
46
|
+
* If `openMessageListAt` is `last-read-message` it will also set the text position of the new messages indicator.
|
|
47
47
|
*/
|
|
48
48
|
dateSeparatorTextPos: 'center' | 'right' | 'left';
|
|
49
49
|
/**
|
|
50
|
-
* `last-message` option will open the message list at the last message, `last-
|
|
50
|
+
* `last-message` option will open the message list at the last message, `last-read-message` will open the list at the last unread message. This option only works if mode is `main`.
|
|
51
51
|
*/
|
|
52
|
-
openMessageListAt: 'last-message' | 'last-
|
|
52
|
+
openMessageListAt: 'last-message' | 'last-read-message';
|
|
53
53
|
/**
|
|
54
54
|
* You can turn on and off the loading indicator that signals to users that more messages are being loaded to the message list
|
|
55
55
|
*/
|
package/package.json
CHANGED
package/src/assets/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '4.36.
|
|
1
|
+
export const version = '4.36.2';
|