stream-chat 9.35.0 → 9.35.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/dist/cjs/index.browser.js +2 -2
- package/dist/cjs/index.browser.js.map +2 -2
- package/dist/cjs/index.node.js +2 -2
- package/dist/cjs/index.node.js.map +2 -2
- package/dist/esm/index.mjs +2 -2
- package/dist/esm/index.mjs.map +2 -2
- package/package.json +1 -1
- package/src/messageComposer/messageComposer.ts +6 -1
package/dist/esm/index.mjs
CHANGED
|
@@ -7356,7 +7356,7 @@ var _MessageComposer = class _MessageComposer extends WithSubscriptions {
|
|
|
7356
7356
|
}
|
|
7357
7357
|
get hasSendableData() {
|
|
7358
7358
|
if (this.client.offlineDb) {
|
|
7359
|
-
return !this.
|
|
7359
|
+
return !this.textComposer.textIsEmpty || !!this.attachmentManager.attachments.length || !!this.pollId || !!this.locationComposer.validLocation;
|
|
7360
7360
|
}
|
|
7361
7361
|
return !!(!this.attachmentManager.uploadsInProgressCount && (!this.textComposer.textIsEmpty || this.attachmentManager.successfulUploadsCount > 0) || this.pollId || !!this.locationComposer.validLocation);
|
|
7362
7362
|
}
|
|
@@ -14945,7 +14945,7 @@ var StreamChat = class _StreamChat {
|
|
|
14945
14945
|
if (this.userAgent) {
|
|
14946
14946
|
return this.userAgent;
|
|
14947
14947
|
}
|
|
14948
|
-
const version = "9.35.
|
|
14948
|
+
const version = "9.35.1";
|
|
14949
14949
|
const clientBundle = "browser-esm";
|
|
14950
14950
|
let userAgentString = "";
|
|
14951
14951
|
if (this.sdkIdentifier) {
|