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
|
@@ -7545,7 +7545,7 @@ var _MessageComposer = class _MessageComposer extends WithSubscriptions {
|
|
|
7545
7545
|
}
|
|
7546
7546
|
get hasSendableData() {
|
|
7547
7547
|
if (this.client.offlineDb) {
|
|
7548
|
-
return !this.
|
|
7548
|
+
return !this.textComposer.textIsEmpty || !!this.attachmentManager.attachments.length || !!this.pollId || !!this.locationComposer.validLocation;
|
|
7549
7549
|
}
|
|
7550
7550
|
return !!(!this.attachmentManager.uploadsInProgressCount && (!this.textComposer.textIsEmpty || this.attachmentManager.successfulUploadsCount > 0) || this.pollId || !!this.locationComposer.validLocation);
|
|
7551
7551
|
}
|
|
@@ -15134,7 +15134,7 @@ var StreamChat = class _StreamChat {
|
|
|
15134
15134
|
if (this.userAgent) {
|
|
15135
15135
|
return this.userAgent;
|
|
15136
15136
|
}
|
|
15137
|
-
const version = "9.35.
|
|
15137
|
+
const version = "9.35.1";
|
|
15138
15138
|
const clientBundle = "browser-cjs";
|
|
15139
15139
|
let userAgentString = "";
|
|
15140
15140
|
if (this.sdkIdentifier) {
|