@linktr.ee/messaging-react 1.12.8-rc-1766058614 → 1.13.0

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/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- import { Attachment } from 'stream-chat';
2
1
  import { Channel } from 'stream-chat';
3
2
  import { ChannelFilters } from 'stream-chat';
4
3
  import { default as default_2 } from 'react';
@@ -81,16 +80,6 @@ export declare interface ChannelViewProps {
81
80
  * Analytics callback fired when "Report" is clicked.
82
81
  */
83
82
  onReportParticipantClick?: () => void;
84
- /**
85
- * Pending attachment to be staged in the message input.
86
- * When set, displays a preview and includes the attachment when sending.
87
- */
88
- pendingAttachment?: Attachment | null;
89
- /**
90
- * Callback to clear the pending attachment.
91
- * Called after the message is sent or when the user removes the attachment.
92
- */
93
- onClearPendingAttachment?: () => void;
94
83
  }
95
84
 
96
85
  export declare interface Faq {
@@ -239,16 +228,6 @@ export declare interface MessagingShellProps {
239
228
  * Called before the action is performed.
240
229
  */
241
230
  onReportParticipantClick?: () => void;
242
- /**
243
- * Pending attachment to be staged in the message input.
244
- * When set, displays a preview and includes the attachment when sending.
245
- */
246
- pendingAttachment?: Attachment | null;
247
- /**
248
- * Callback to clear the pending attachment.
249
- * Called after the message is sent or when the user removes the attachment.
250
- */
251
- onClearPendingAttachment?: () => void;
252
231
  }
253
232
 
254
233
  /**