@livetiles/reach-plugin-types 0.5.0-preview.657 → 0.5.0-preview.659
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 +2 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10710,6 +10710,7 @@ declare module "libs/reach/feature/content/src/reach-2/comments/RepliesList" {
|
|
|
10710
10710
|
replyCount?: number;
|
|
10711
10711
|
isReplyInputShown?: boolean;
|
|
10712
10712
|
onReplyInputClose?: () => void;
|
|
10713
|
+
onReplyCountChange?: (threadId: string, newReplyCount: number) => void;
|
|
10713
10714
|
isMobile?: boolean;
|
|
10714
10715
|
}
|
|
10715
10716
|
export const RepliesList: FC<RepliesListProps>;
|
|
@@ -10723,6 +10724,7 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentListItem"
|
|
|
10723
10724
|
onCommentDeleted: () => Promise<void>;
|
|
10724
10725
|
onCommentUpdated: (comment: Comment, newContent: string) => Promise<void>;
|
|
10725
10726
|
onToggleEditor?: () => void;
|
|
10727
|
+
onReplyCountChange?: (threadId: string, newReplyCount: number) => void;
|
|
10726
10728
|
isMobile?: boolean;
|
|
10727
10729
|
}
|
|
10728
10730
|
export const CommentListItem: FC<CommentItemProps & {
|