stream-chat-angular 4.52.1 → 4.52.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.
@@ -1 +1 @@
1
- export declare const version = "4.52.1";
1
+ export declare const version = "4.52.3";
@@ -356,7 +356,7 @@
356
356
  return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
357
357
  }
358
358
 
359
- var version = '4.52.1';
359
+ var version = '4.52.3';
360
360
 
361
361
  /**
362
362
  * The `NotificationService` can be used to add or remove notifications. By default the [`NotificationList`](../components/NotificationListComponent.mdx) component displays the currently active notifications.
@@ -1364,7 +1364,7 @@
1364
1364
  if (!activeChannel) {
1365
1365
  return [2 /*return*/, []];
1366
1366
  }
1367
- if (!(Object.keys(activeChannel.state.members).length <= 100)) return [3 /*break*/, 1];
1367
+ if (!(Object.keys(activeChannel.state.members).length < 100)) return [3 /*break*/, 1];
1368
1368
  return [2 /*return*/, Object.values(activeChannel.state.members).filter(function (m) { var _a; return ((_a = m.user) === null || _a === void 0 ? void 0 : _a.id) !== _this.chatClientService.chatClient.userID; })];
1369
1369
  case 1:
1370
1370
  if (!searchTerm) {
@@ -6079,9 +6079,7 @@
6079
6079
  mentionSelect: function (item, triggerChar) { return _this.itemSelectedFromAutocompleteList(item, triggerChar); },
6080
6080
  };
6081
6081
  this.searchTerm$ = new rxjs.BehaviorSubject('');
6082
- this.searchTerm$
6083
- .pipe(operators.debounceTime(300), operators.distinctUntilChanged())
6084
- .subscribe(function (searchTerm) {
6082
+ this.searchTerm$.pipe(operators.debounceTime(300)).subscribe(function (searchTerm) {
6085
6083
  if (searchTerm.startsWith(_this.mentionTriggerChar)) {
6086
6084
  void _this.updateMentionOptions(searchTerm);
6087
6085
  }