@veltdev/react
Version:
Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.
20 lines (19 loc) • 699 B
TypeScript
import React from 'react';
export interface IVeltCommentDialogProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
annotationId?: string;
defaultCondition?: boolean;
inlineCommentSectionMode?: boolean;
commentPinSelected?: boolean;
fullExpanded?: boolean;
shadowDom?: boolean;
placeholder?: string;
editPlaceholder?: string;
editCommentPlaceholder?: string;
editReplyPlaceholder?: string;
/**
* Per-dialog override for anonymous email mentions for this annotation context.
*/
anonymousEmail?: boolean;
}
declare const VeltCommentDialog: React.FC<IVeltCommentDialogProps>;
export default VeltCommentDialog;