stream-chat-angular 5.7.1 → 5.7.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/is-safari.mjs +2 -2
- package/esm2020/lib/message-list/message-list.component.mjs +21 -13
- package/esm2020/lib/voice-recorder/audio-recorder.service.mjs +2 -2
- package/fesm2015/stream-chat-angular.mjs +26 -18
- package/fesm2015/stream-chat-angular.mjs.map +1 -1
- package/fesm2020/stream-chat-angular.mjs +23 -15
- package/fesm2020/stream-chat-angular.mjs.map +1 -1
- package/lib/is-safari.d.ts +1 -1
- package/lib/message-list/message-list.component.d.ts +1 -0
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
package/lib/is-safari.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const isSafari: boolean;
|
|
1
|
+
export declare const isSafari: () => boolean;
|
|
@@ -100,6 +100,7 @@ export declare class MessageListComponent implements AfterViewChecked, OnChanges
|
|
|
100
100
|
private forceRepaintSubject;
|
|
101
101
|
private messageIdToAnchorTo?;
|
|
102
102
|
private anchorMessageTopOffset?;
|
|
103
|
+
private isSafari;
|
|
103
104
|
private get class();
|
|
104
105
|
private virtualizedList?;
|
|
105
106
|
private scrollPosition$;
|
package/package.json
CHANGED
package/src/assets/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '5.7.
|
|
1
|
+
export const version = '5.7.3';
|