@livetiles/reach-plugin-types 0.5.0-preview.670 → 0.5.0-preview.671
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 +3 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10456,11 +10456,13 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentEditor" {
|
|
|
10456
10456
|
title?: string;
|
|
10457
10457
|
autofocus?: boolean;
|
|
10458
10458
|
isCollapsed?: boolean;
|
|
10459
|
+
placeholder?: string;
|
|
10459
10460
|
}
|
|
10460
10461
|
export const CommentEditor: FC<CommentEditorProps>;
|
|
10461
10462
|
export const MobileCommentEditor: FC<BaseCommentEditorProps & {
|
|
10462
10463
|
isOpen?: boolean;
|
|
10463
10464
|
triggerButton?: JSX.Element | HTMLButtonElement;
|
|
10465
|
+
placeholder?: string;
|
|
10464
10466
|
}>;
|
|
10465
10467
|
}
|
|
10466
10468
|
declare module "libs/reach/feature/content/src/reach-2/comments/CommentCreator" {
|
|
@@ -10469,7 +10471,6 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentCreator"
|
|
|
10469
10471
|
onSave: (newContent: string) => Promise<void>;
|
|
10470
10472
|
onToggleEditor?: (showEditor: boolean) => void;
|
|
10471
10473
|
alwaysShowCommentEditor?: boolean;
|
|
10472
|
-
alwaysExpandEditor?: boolean;
|
|
10473
10474
|
isMobile?: boolean;
|
|
10474
10475
|
className?: string;
|
|
10475
10476
|
}>;
|
|
@@ -10719,6 +10720,7 @@ declare module "libs/reach/feature/content/src/reach-2/comments/RepliesList" {
|
|
|
10719
10720
|
itemResourceType: ItemResourceTypes;
|
|
10720
10721
|
scope: ConversationScope;
|
|
10721
10722
|
threadId: string;
|
|
10723
|
+
parentCommentAuthor: string;
|
|
10722
10724
|
initialReplies?: PaginatedList<Comment>;
|
|
10723
10725
|
replyCount?: number;
|
|
10724
10726
|
isReplyInputShown?: boolean;
|