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.
@@ -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.compositionIsEmpty;
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.0";
15137
+ const version = "9.35.1";
15138
15138
  const clientBundle = "browser-cjs";
15139
15139
  let userAgentString = "";
15140
15140
  if (this.sdkIdentifier) {