@livetiles/reach-plugin-types 0.5.0-preview.659 → 0.5.0-preview.660
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/lib/index.d.ts +5 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10724,13 +10724,16 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentListItem"
|
|
|
10724
10724
|
onCommentDeleted: () => Promise<void>;
|
|
10725
10725
|
onCommentUpdated: (comment: Comment, newContent: string) => Promise<void>;
|
|
10726
10726
|
onToggleEditor?: () => void;
|
|
10727
|
-
onReplyCountChange?: (threadId: string, newReplyCount: number) => void;
|
|
10728
10727
|
isMobile?: boolean;
|
|
10729
10728
|
}
|
|
10730
|
-
export const
|
|
10729
|
+
export const CommentListItemWithReplies: FC<CommentItemProps & {
|
|
10731
10730
|
parentItemId: string;
|
|
10732
10731
|
itemResourceType: ItemResourceTypes;
|
|
10733
10732
|
scope: ConversationScope;
|
|
10733
|
+
onReplyCountChange?: (threadId: string, newReplyCount: number) => void;
|
|
10734
|
+
}>;
|
|
10735
|
+
export const CommentListItem: FC<CommentItemProps & {
|
|
10736
|
+
onReply?: () => void;
|
|
10734
10737
|
}>;
|
|
10735
10738
|
}
|
|
10736
10739
|
declare module "libs/reach/feature/content/src/reach-2/comments/CommentsList" {
|