stream-chat-angular 4.68.6 → 4.68.7

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.68.6";
1
+ export declare const version = "4.68.7";
@@ -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.68.6';
359
+ var version = '4.68.7';
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.
@@ -7055,7 +7055,7 @@
7055
7055
  this.adjustTextareaHeight();
7056
7056
  };
7057
7057
  TextareaComponent.prototype.enterHit = function (event) {
7058
- if (this.inputMode === 'desktop') {
7058
+ if (this.inputMode === 'desktop' && !event.isComposing) {
7059
7059
  event.preventDefault();
7060
7060
  this.send.next();
7061
7061
  }
@@ -7285,7 +7285,7 @@
7285
7285
  this.updateMentionedUsersFromText();
7286
7286
  };
7287
7287
  AutocompleteTextareaComponent.prototype.enterHit = function (event) {
7288
- if (this.inputMode === 'desktop') {
7288
+ if (this.inputMode === 'desktop' && !event.isComposing) {
7289
7289
  event.preventDefault();
7290
7290
  this.updateMentionedUsersFromText();
7291
7291
  this.send.next();