stream-chat-angular 5.13.0 → 6.0.0-beta.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.
Files changed (165) hide show
  1. package/assets/i18n/en.d.ts +1 -0
  2. package/assets/version.d.ts +1 -1
  3. package/{esm2020 → esm2022}/assets/i18n/en.mjs +2 -1
  4. package/{esm2020 → esm2022}/assets/version.mjs +2 -2
  5. package/{esm2020 → esm2022}/lib/attachment-configuration.service.mjs +4 -4
  6. package/esm2022/lib/attachment-list/attachment-list.component.mjs +212 -0
  7. package/esm2022/lib/attachment-preview-list/attachment-preview-list.component.mjs +55 -0
  8. package/{esm2020 → esm2022}/lib/attachment.service.mjs +5 -5
  9. package/esm2022/lib/avatar/avatar.component.mjs +157 -0
  10. package/{esm2020 → esm2022}/lib/avatar-placeholder/avatar-placeholder.component.mjs +6 -6
  11. package/esm2022/lib/channel/channel.component.mjs +45 -0
  12. package/esm2022/lib/channel-header/channel-header.component.mjs +72 -0
  13. package/esm2022/lib/channel-list/channel-list.component.mjs +50 -0
  14. package/esm2022/lib/channel-preview/channel-preview.component.mjs +150 -0
  15. package/esm2022/lib/channel.service.mjs +1389 -0
  16. package/esm2022/lib/chat-client.service.mjs +227 -0
  17. package/{esm2020 → esm2022}/lib/custom-templates.service.mjs +5 -5
  18. package/{esm2020 → esm2022}/lib/date-parser.service.mjs +5 -5
  19. package/esm2022/lib/file-utils.mjs +35 -0
  20. package/{esm2020 → esm2022}/lib/get-channel-display-text.mjs +1 -1
  21. package/{esm2020 → esm2022}/lib/get-message-translation.mjs +1 -1
  22. package/{esm2020 → esm2022}/lib/icon/icon-placeholder/icon-placeholder.component.mjs +6 -6
  23. package/{esm2020 → esm2022}/lib/icon/icon.component.mjs +5 -5
  24. package/{esm2020 → esm2022}/lib/icon/icon.module.mjs +11 -11
  25. package/{esm2020 → esm2022}/lib/icon/loading-indicator/loading-indicator.component.mjs +5 -5
  26. package/{esm2020 → esm2022}/lib/icon/loading-indicator-placeholder/loading-indicator-placeholder.component.mjs +6 -6
  27. package/{esm2020 → esm2022}/lib/list-users.mjs +1 -1
  28. package/esm2022/lib/message/message.component.mjs +486 -0
  29. package/esm2022/lib/message-actions-box/message-actions-box.component.mjs +120 -0
  30. package/{esm2020 → esm2022}/lib/message-actions.service.mjs +5 -5
  31. package/esm2022/lib/message-bounce-prompt/message-bounce-prompt.component.mjs +71 -0
  32. package/{esm2020 → esm2022}/lib/message-input/autocomplete-textarea/autocomplete-textarea.component.mjs +6 -6
  33. package/{esm2020 → esm2022}/lib/message-input/emoji-input.service.mjs +5 -5
  34. package/{esm2020 → esm2022}/lib/message-input/message-input-config.service.mjs +5 -5
  35. package/esm2022/lib/message-input/message-input.component.mjs +507 -0
  36. package/{esm2020 → esm2022}/lib/message-input/textarea/textarea.component.mjs +5 -5
  37. package/{esm2020 → esm2022}/lib/message-input/textarea.directive.mjs +5 -5
  38. package/{esm2020 → esm2022}/lib/message-input/voice-recorder.service.mjs +5 -5
  39. package/{esm2020 → esm2022}/lib/message-list/group-styles.mjs +1 -1
  40. package/esm2022/lib/message-list/message-list.component.mjs +715 -0
  41. package/{esm2020 → esm2022}/lib/message-preview.mjs +1 -1
  42. package/esm2022/lib/message-reactions/message-reactions.component.mjs +165 -0
  43. package/esm2022/lib/message-reactions-selector/message-reactions-selector.component.mjs +57 -0
  44. package/{esm2020 → esm2022}/lib/message-reactions.service.mjs +5 -5
  45. package/{esm2020 → esm2022}/lib/message-text/message-text.component.mjs +6 -6
  46. package/esm2022/lib/message.service.mjs +43 -0
  47. package/{esm2020 → esm2022}/lib/modal/modal.component.mjs +6 -6
  48. package/{esm2020 → esm2022}/lib/notification/notification.component.mjs +6 -6
  49. package/esm2022/lib/notification-list/notification-list.component.mjs +33 -0
  50. package/{esm2020 → esm2022}/lib/notification.service.mjs +5 -5
  51. package/esm2022/lib/paginated-list/paginated-list.component.mjs +94 -0
  52. package/{esm2020 → esm2022}/lib/parse-date.mjs +1 -1
  53. package/{esm2020 → esm2022}/lib/read-by.mjs +1 -1
  54. package/esm2022/lib/stream-autocomplete-textarea.module.mjs +33 -0
  55. package/{esm2020 → esm2022}/lib/stream-avatar.module.mjs +5 -5
  56. package/{esm2020 → esm2022}/lib/stream-chat.module.mjs +59 -59
  57. package/{esm2020 → esm2022}/lib/stream-i18n.service.mjs +5 -5
  58. package/esm2022/lib/stream-textarea.module.mjs +31 -0
  59. package/{esm2020 → esm2022}/lib/theme.service.mjs +5 -5
  60. package/{esm2020 → esm2022}/lib/thread/thread.component.mjs +6 -6
  61. package/{esm2020 → esm2022}/lib/transliteration.service.mjs +5 -5
  62. package/esm2022/lib/types.mjs +2 -0
  63. package/{esm2020 → esm2022}/lib/user-list/user-list.component.mjs +5 -5
  64. package/esm2022/lib/virtualized-list.service.mjs +273 -0
  65. package/{esm2020 → esm2022}/lib/virtualized-message-list.service.mjs +1 -1
  66. package/{esm2020 → esm2022}/lib/voice-recorder/amplitude-recorder.service.mjs +5 -5
  67. package/{esm2020 → esm2022}/lib/voice-recorder/audio-recorder.service.mjs +5 -5
  68. package/{esm2020 → esm2022}/lib/voice-recorder/media-recorder.mjs +1 -1
  69. package/esm2022/lib/voice-recorder/mp3-transcoder.mjs +61 -0
  70. package/esm2022/lib/voice-recorder/transcoder.service.mjs +121 -0
  71. package/esm2022/lib/voice-recorder/voice-recorder-wavebar/voice-recorder-wavebar.component.mjs +32 -0
  72. package/esm2022/lib/voice-recorder/voice-recorder.component.mjs +80 -0
  73. package/{esm2020 → esm2022}/lib/voice-recorder/voice-recorder.module.mjs +9 -9
  74. package/esm2022/lib/voice-recording/voice-recording-wavebar/voice-recording-wavebar.component.mjs +112 -0
  75. package/esm2022/lib/voice-recording/voice-recording.component.mjs +91 -0
  76. package/{esm2020 → esm2022}/lib/voice-recording/voice-recording.module.mjs +5 -5
  77. package/{esm2020 → esm2022}/lib/wave-form-sampler.mjs +1 -1
  78. package/esm2022/public-api.mjs +82 -0
  79. package/{fesm2020 → fesm2022}/stream-chat-angular.mjs +865 -1140
  80. package/fesm2022/stream-chat-angular.mjs.map +1 -0
  81. package/lib/attachment-list/attachment-list.component.d.ts +2 -5
  82. package/lib/attachment-preview-list/attachment-preview-list.component.d.ts +2 -2
  83. package/lib/attachment.service.d.ts +1 -1
  84. package/lib/avatar/avatar.component.d.ts +4 -4
  85. package/lib/avatar-placeholder/avatar-placeholder.component.d.ts +1 -1
  86. package/lib/channel-list/channel-list.component.d.ts +1 -0
  87. package/lib/channel-preview/channel-preview.component.d.ts +3 -4
  88. package/lib/channel.service.d.ts +40 -106
  89. package/lib/chat-client.service.d.ts +1 -4
  90. package/lib/custom-templates.service.d.ts +10 -10
  91. package/lib/icon/icon-placeholder/icon-placeholder.component.d.ts +1 -1
  92. package/lib/icon/icon.component.d.ts +2 -2
  93. package/lib/message/message.component.d.ts +2 -2
  94. package/lib/message-actions-box/message-actions-box.component.d.ts +2 -3
  95. package/lib/message-actions.service.d.ts +1 -1
  96. package/lib/message-input/autocomplete-textarea/autocomplete-textarea.component.d.ts +2 -2
  97. package/lib/message-input/message-input.component.d.ts +2 -2
  98. package/lib/message-input/textarea/textarea.component.d.ts +1 -1
  99. package/lib/message-input/textarea.directive.d.ts +2 -2
  100. package/lib/message-list/group-styles.d.ts +1 -1
  101. package/lib/message-list/message-list.component.d.ts +2 -3
  102. package/lib/message-reactions/message-reactions.component.d.ts +2 -3
  103. package/lib/message-reactions-selector/message-reactions-selector.component.d.ts +1 -2
  104. package/lib/message-text/message-text.component.d.ts +2 -2
  105. package/lib/modal/modal.component.d.ts +1 -1
  106. package/lib/notification/notification.component.d.ts +1 -1
  107. package/lib/notification-list/notification-list.component.d.ts +0 -1
  108. package/lib/paginated-list/paginated-list.component.d.ts +5 -2
  109. package/lib/read-by.d.ts +1 -1
  110. package/lib/types.d.ts +98 -84
  111. package/lib/user-list/user-list.component.d.ts +1 -1
  112. package/lib/voice-recorder/amplitude-recorder.service.d.ts +2 -2
  113. package/lib/voice-recorder/media-recorder.d.ts +2 -2
  114. package/lib/voice-recorder/transcoder.service.d.ts +4 -4
  115. package/lib/voice-recorder/voice-recorder-wavebar/voice-recorder-wavebar.component.d.ts +0 -1
  116. package/lib/voice-recorder/voice-recorder.component.d.ts +2 -2
  117. package/lib/voice-recording/voice-recording-wavebar/voice-recording-wavebar.component.d.ts +3 -3
  118. package/lib/voice-recording/voice-recording.component.d.ts +1 -1
  119. package/package.json +15 -21
  120. package/public-api.d.ts +0 -1
  121. package/src/assets/i18n/en.ts +1 -0
  122. package/src/assets/version.ts +1 -1
  123. package/esm2020/lib/attachment-list/attachment-list.component.mjs +0 -224
  124. package/esm2020/lib/attachment-preview-list/attachment-preview-list.component.mjs +0 -55
  125. package/esm2020/lib/avatar/avatar.component.mjs +0 -160
  126. package/esm2020/lib/channel/channel.component.mjs +0 -45
  127. package/esm2020/lib/channel-header/channel-header.component.mjs +0 -72
  128. package/esm2020/lib/channel-list/channel-list.component.mjs +0 -47
  129. package/esm2020/lib/channel-preview/channel-preview.component.mjs +0 -155
  130. package/esm2020/lib/channel-query.mjs +0 -77
  131. package/esm2020/lib/channel.service.mjs +0 -1546
  132. package/esm2020/lib/chat-client.service.mjs +0 -238
  133. package/esm2020/lib/file-utils.mjs +0 -35
  134. package/esm2020/lib/message/message.component.mjs +0 -486
  135. package/esm2020/lib/message-actions-box/message-actions-box.component.mjs +0 -123
  136. package/esm2020/lib/message-bounce-prompt/message-bounce-prompt.component.mjs +0 -71
  137. package/esm2020/lib/message-input/message-input.component.mjs +0 -507
  138. package/esm2020/lib/message-list/message-list.component.mjs +0 -717
  139. package/esm2020/lib/message-reactions/message-reactions.component.mjs +0 -168
  140. package/esm2020/lib/message-reactions-selector/message-reactions-selector.component.mjs +0 -61
  141. package/esm2020/lib/message.service.mjs +0 -43
  142. package/esm2020/lib/notification-list/notification-list.component.mjs +0 -36
  143. package/esm2020/lib/paginated-list/paginated-list.component.mjs +0 -94
  144. package/esm2020/lib/stream-autocomplete-textarea.module.mjs +0 -33
  145. package/esm2020/lib/stream-textarea.module.mjs +0 -31
  146. package/esm2020/lib/types.mjs +0 -2
  147. package/esm2020/lib/virtualized-list.service.mjs +0 -271
  148. package/esm2020/lib/voice-recorder/mp3-transcoder.mjs +0 -61
  149. package/esm2020/lib/voice-recorder/transcoder.service.mjs +0 -121
  150. package/esm2020/lib/voice-recorder/voice-recorder-wavebar/voice-recorder-wavebar.component.mjs +0 -35
  151. package/esm2020/lib/voice-recorder/voice-recorder.component.mjs +0 -80
  152. package/esm2020/lib/voice-recording/voice-recording-wavebar/voice-recording-wavebar.component.mjs +0 -112
  153. package/esm2020/lib/voice-recording/voice-recording.component.mjs +0 -91
  154. package/esm2020/public-api.mjs +0 -83
  155. package/fesm2015/stream-chat-angular.mjs +0 -9152
  156. package/fesm2015/stream-chat-angular.mjs.map +0 -1
  157. package/fesm2020/stream-chat-angular.mjs.map +0 -1
  158. package/lib/channel-query.d.ts +0 -26
  159. /package/{esm2020 → esm2022}/lib/format-duration.mjs +0 -0
  160. /package/{esm2020 → esm2022}/lib/injection-tokens.mjs +0 -0
  161. /package/{esm2020 → esm2022}/lib/is-image-attachment.mjs +0 -0
  162. /package/{esm2020 → esm2022}/lib/is-on-separate-date.mjs +0 -0
  163. /package/{esm2020 → esm2022}/lib/is-safari.mjs +0 -0
  164. /package/{esm2020 → esm2022}/lib/message-input/textarea.interface.mjs +0 -0
  165. /package/{esm2020 → esm2022}/stream-chat-angular.mjs +0 -0
@@ -20,8 +20,8 @@ import * as i0 from "@angular/core";
20
20
  * where 0 dB is the loudest possible sound, -10 dB is a 10th of that, etc.
21
21
  * The default value is -100 dB.
22
22
  */
23
- export declare type AmplitudeAnalyserConfig = Pick<AnalyserNode, 'fftSize' | 'maxDecibels' | 'minDecibels'>;
24
- export declare type AmplitudeRecorderConfig = {
23
+ export type AmplitudeAnalyserConfig = Pick<AnalyserNode, 'fftSize' | 'maxDecibels' | 'minDecibels'>;
24
+ export type AmplitudeRecorderConfig = {
25
25
  analyserConfig: AmplitudeAnalyserConfig;
26
26
  sampleCount: number;
27
27
  samplingFrequencyMs: number;
@@ -3,14 +3,14 @@ import { NotificationService } from '../notification.service';
3
3
  import { ChatClientService } from '../chat-client.service';
4
4
  import { TranscoderService } from './transcoder.service';
5
5
  import { MediaRecording } from '../types';
6
- export declare type MediaRecorderConfig = Omit<MediaRecorderOptions, 'mimeType'> & Required<Pick<MediaRecorderOptions, 'mimeType'>>;
6
+ export type MediaRecorderConfig = Omit<MediaRecorderOptions, 'mimeType'> & Required<Pick<MediaRecorderOptions, 'mimeType'>>;
7
7
  export declare enum MediaRecordingState {
8
8
  PAUSED = "paused",
9
9
  RECORDING = "recording",
10
10
  STOPPED = "stopped",
11
11
  ERROR = "error"
12
12
  }
13
- export declare type MediaRecordingTitleOptions = {
13
+ export type MediaRecordingTitleOptions = {
14
14
  mimeType: string;
15
15
  };
16
16
  export declare abstract class MultimediaRecorder<T = null> {
@@ -1,16 +1,16 @@
1
1
  import * as i0 from "@angular/core";
2
- export declare type TranscoderConfig = {
2
+ export type TranscoderConfig = {
3
3
  sampleRate: number;
4
4
  };
5
- export declare type TranscodeParams = TranscoderConfig & {
5
+ export type TranscodeParams = TranscoderConfig & {
6
6
  blob: Blob;
7
7
  };
8
- declare type WriteWaveHeaderParams = {
8
+ type WriteWaveHeaderParams = {
9
9
  arrayBuffer: ArrayBuffer;
10
10
  channelCount: number;
11
11
  sampleRate: number;
12
12
  };
13
- declare type WriteAudioDataParams = {
13
+ type WriteAudioDataParams = {
14
14
  arrayBuffer: ArrayBuffer;
15
15
  dataByChannel: Float32Array[];
16
16
  };
@@ -14,7 +14,6 @@ export declare class VoiceRecorderWavebarComponent implements OnDestroy {
14
14
  durationComputeInterval: ReturnType<typeof setInterval>;
15
15
  isLongerThanOneHour: boolean;
16
16
  constructor(amplitudeRecorder: AmplitudeRecorderService, audioRecorder: AudioRecorderService);
17
- trackByIndex(i: number): number;
18
17
  ngOnDestroy(): void;
19
18
  static ɵfac: i0.ɵɵFactoryDeclaration<VoiceRecorderWavebarComponent, never>;
20
19
  static ɵcmp: i0.ɵɵComponentDeclaration<VoiceRecorderWavebarComponent, "stream-voice-recorder-wavebar", never, {}, {}, never, never, false, never>;
@@ -17,8 +17,8 @@ export declare class VoiceRecorderComponent implements OnInit, OnDestroy, OnChan
17
17
  private subscriptions;
18
18
  private isVisibleSubscription?;
19
19
  constructor(recorder: AudioRecorderService);
20
- ngOnInit(): void;
21
20
  ngOnChanges(changes: SimpleChanges): void;
21
+ ngOnInit(): void;
22
22
  ngOnDestroy(): void;
23
23
  cancel(): void;
24
24
  stop(): Promise<void>;
@@ -26,5 +26,5 @@ export declare class VoiceRecorderComponent implements OnInit, OnDestroy, OnChan
26
26
  resume(): void;
27
27
  uploadRecording(): void;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<VoiceRecorderComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<VoiceRecorderComponent, "stream-voice-recorder", never, { "voiceRecorderService": "voiceRecorderService"; }, {}, never, never, false, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<VoiceRecorderComponent, "stream-voice-recorder", never, { "voiceRecorderService": { "alias": "voiceRecorderService"; "required": false; }; }, {}, never, never, false, never>;
30
30
  }
@@ -3,7 +3,7 @@ import * as i0 from "@angular/core";
3
3
  /**
4
4
  * This component can be used to visualize the wave bar of a voice recording
5
5
  */
6
- export declare class VoiceRecordingWavebarComponent implements OnInit, OnChanges, AfterViewInit {
6
+ export declare class VoiceRecordingWavebarComponent implements OnChanges, OnInit, AfterViewInit {
7
7
  private ngZone;
8
8
  private cdRef;
9
9
  /**
@@ -25,12 +25,12 @@ export declare class VoiceRecordingWavebarComponent implements OnInit, OnChanges
25
25
  private container?;
26
26
  private isViewInited;
27
27
  constructor(ngZone: NgZone, cdRef: ChangeDetectorRef);
28
- ngOnInit(): void;
29
28
  ngOnChanges(changes: SimpleChanges): void;
29
+ ngOnInit(): void;
30
30
  ngAfterViewInit(): void;
31
31
  seek(event: MouseEvent): void;
32
32
  trackByIndex(index: number): number;
33
33
  private containerSizeChanged;
34
34
  static ɵfac: i0.ɵɵFactoryDeclaration<VoiceRecordingWavebarComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<VoiceRecordingWavebarComponent, "stream-voice-recording-wavebar", never, { "audioElement": "audioElement"; "waveFormData": "waveFormData"; "duration": "duration"; }, {}, never, never, false, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<VoiceRecordingWavebarComponent, "stream-voice-recording-wavebar", never, { "audioElement": { "alias": "audioElement"; "required": false; }; "waveFormData": { "alias": "waveFormData"; "required": false; }; "duration": { "alias": "duration"; "required": false; }; }, {}, never, never, false, never>;
36
36
  }
@@ -26,5 +26,5 @@ export declare class VoiceRecordingComponent implements OnChanges, AfterViewInit
26
26
  private getFormattedDuration;
27
27
  private getFileSize;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<VoiceRecordingComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<VoiceRecordingComponent, "stream-voice-recording", never, { "attachment": "attachment"; }, {}, never, never, false, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<VoiceRecordingComponent, "stream-voice-recording", never, { "attachment": { "alias": "attachment"; "required": false; }; }, {}, never, never, false, never>;
30
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stream-chat-angular",
3
- "version": "5.13.0",
3
+ "version": "6.0.0-beta.2",
4
4
  "description": "Angular components to create chat conversations or livestream style chat",
5
5
  "author": "GetStream",
6
6
  "homepage": "https://getstream.io/chat/",
@@ -20,20 +20,18 @@
20
20
  },
21
21
  ".": {
22
22
  "types": "./index.d.ts",
23
- "esm2020": "./esm2020/stream-chat-angular.mjs",
24
- "es2020": "./fesm2020/stream-chat-angular.mjs",
25
- "es2015": "./fesm2015/stream-chat-angular.mjs",
26
- "node": "./fesm2015/stream-chat-angular.mjs",
27
- "default": "./fesm2020/stream-chat-angular.mjs"
23
+ "esm2022": "./esm2022/stream-chat-angular.mjs",
24
+ "esm": "./esm2022/stream-chat-angular.mjs",
25
+ "default": "./fesm2022/stream-chat-angular.mjs"
28
26
  }
29
27
  },
30
28
  "peerDependencies": {
31
- "@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
32
- "@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
29
+ "@angular/common": "^17.0.0 || ^18.0.0 || ^19.0.0",
30
+ "@angular/core": "^17.0.0 || ^18.0.0 || ^19.0.0",
33
31
  "@breezystack/lamejs": "^1.2.7",
34
- "@ngx-translate/core": "^14.0.0 || ^15.0.0",
32
+ "@ngx-translate/core": "^16.0.0",
35
33
  "rxjs": "^7.4.0",
36
- "stream-chat": "^8.44.0"
34
+ "stream-chat": "^8.57.2"
37
35
  },
38
36
  "peerDependenciesMeta": {
39
37
  "@breezystack/lamejs": {
@@ -41,22 +39,18 @@
41
39
  }
42
40
  },
43
41
  "dependencies": {
44
- "@floating-ui/dom": "^1.6.3",
42
+ "@floating-ui/dom": "^1.5.4",
45
43
  "@stream-io/transliterate": "^1.5.2",
46
- "angular-mentions": "^1.4.0",
47
- "dayjs": "^1.11.10",
48
- "emoji-regex": "^10.3.0",
44
+ "angular-mentions": "^1.5.0",
45
+ "dayjs": "^1.11.13",
46
+ "emoji-regex": "^10.4.0",
49
47
  "fix-webm-duration": "^1.0.6",
50
- "ngx-float-ui": "^15.0.0|| ^16.0.0 || ^17.0.0 || ^18.0.0 || ^18.0.1-rc.0 || ^19.0.0",
48
+ "ngx-float-ui": "^17.0.0 || ^18.0.0 || ^19.0.0",
51
49
  "pretty-bytes": "^6.1.1",
52
50
  "tslib": "^2.3.0",
53
- "uuid": "^9.0.1"
51
+ "uuid": "^11.1.0"
54
52
  },
55
- "module": "fesm2015/stream-chat-angular.mjs",
56
- "es2020": "fesm2020/stream-chat-angular.mjs",
57
- "esm2020": "esm2020/stream-chat-angular.mjs",
58
- "fesm2020": "fesm2020/stream-chat-angular.mjs",
59
- "fesm2015": "fesm2015/stream-chat-angular.mjs",
53
+ "module": "fesm2022/stream-chat-angular.mjs",
60
54
  "typings": "index.d.ts",
61
55
  "sideEffects": false
62
56
  }
package/public-api.d.ts CHANGED
@@ -58,7 +58,6 @@ export * from './lib/voice-recording/voice-recording.component';
58
58
  export * from './lib/voice-recording/voice-recording-wavebar/voice-recording-wavebar.component';
59
59
  export * from './lib/is-on-separate-date';
60
60
  export * from './lib/message-reactions-selector/message-reactions-selector.component';
61
- export * from './lib/channel-query';
62
61
  export * from './lib/virtualized-list.service';
63
62
  export * from './lib/virtualized-message-list.service';
64
63
  export * from './lib/user-list/user-list.component';
@@ -131,5 +131,6 @@ export const en = {
131
131
  'You currently have {{count}} attachments, the maximum is {{max}}':
132
132
  'You currently have {{count}} attachments, the maximum is {{max}}',
133
133
  'and others': 'and others',
134
+ 'Reload channels': 'Reload channels',
134
135
  },
135
136
  };
@@ -1 +1 @@
1
- export const version = '5.13.0';
1
+ export const version = '6.0.0-beta.2';