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.
@@ -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.compositionIsEmpty;
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.0";
14948
+ const version = "9.35.1";
14949
14949
  const clientBundle = "browser-esm";
14950
14950
  let userAgentString = "";
14951
14951
  if (this.sdkIdentifier) {