stream-chat-angular 3.2.0 → 3.2.1
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 +5 -1
- package/bundles/stream-chat-angular.umd.js.map +1 -1
- package/esm2015/assets/version.js +2 -2
- package/esm2015/lib/message-input/message-input.component.js +5 -1
- package/fesm2015/stream-chat-angular.js +5 -1
- package/fesm2015/stream-chat-angular.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
package/assets/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "3.2.
|
|
1
|
+
export declare const version = "3.2.1";
|
|
@@ -354,7 +354,7 @@
|
|
|
354
354
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
355
355
|
}
|
|
356
356
|
|
|
357
|
-
var version = '3.2.
|
|
357
|
+
var version = '3.2.1';
|
|
358
358
|
|
|
359
359
|
/**
|
|
360
360
|
* The `NotificationService` can be used to add or remove notifications. By default the [`NotificationList`](../components/NotificationListComponent.mdx) component displays the currently active notifications.
|
|
@@ -3217,6 +3217,10 @@
|
|
|
3217
3217
|
configurable: true
|
|
3218
3218
|
});
|
|
3219
3219
|
MessageInputComponent.prototype.initTextarea = function () {
|
|
3220
|
+
// cleanup previously built textarea
|
|
3221
|
+
if (!this.canSendMessages) {
|
|
3222
|
+
this.textareaRef = undefined;
|
|
3223
|
+
}
|
|
3220
3224
|
if (!this.canSendMessages || this.textareaRef || !this.textareaAnchor) {
|
|
3221
3225
|
return;
|
|
3222
3226
|
}
|