@medipha/chat 1.0.19 → 1.0.21
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/features/message-list/bubble/message-reactions.d.ts +0 -4
- package/dist/index.cjs +44 -44
- package/dist/index.js +7315 -7278
- package/dist/store/messageRemovalStore.d.ts +21 -0
- package/dist/styles.css +1 -1
- package/package.json +1 -1
|
@@ -10,9 +10,5 @@ interface MessageReactionsProps {
|
|
|
10
10
|
onRemoveReaction: () => void;
|
|
11
11
|
onOpenModal: () => void;
|
|
12
12
|
}
|
|
13
|
-
/** Compact aggregate reaction badge plus a separate hover-triggered picker for applying a type.
|
|
14
|
-
* Messenger-style trigger: shows a generic smiley until you've reacted, then shows your
|
|
15
|
-
* own reaction's emoji instead — clicking it directly re-applies that same reaction, and
|
|
16
|
-
* hovering still opens the picker to switch to a different one. */
|
|
17
13
|
export declare function MessageReactions({ message, isPickerOpen, myReactionType, onOpenPicker, onClosePickerIfSelf, onApplyReaction, onRemoveReaction, onOpenModal, }: MessageReactionsProps): import("react/jsx-runtime").JSX.Element | null;
|
|
18
14
|
export {};
|