UNPKG

@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.

22 lines (21 loc) 850 B
import React from 'react'; export interface IVeltCommentDialogOptionsDropdownProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> { annotationId?: string; defaultCondition?: boolean; inlineCommentSectionMode?: boolean; commentObj?: any | string; commentIndex?: number | string; enableAssignment?: boolean; allowAssignment?: boolean; enableEdit?: boolean; allowEdit?: boolean; enableNotifications?: boolean; allowToggleNotification?: boolean; enablePrivateMode?: boolean; allowChangeCommentAccessMode?: boolean; triggerTemplate?: any; contentTemplate?: any; onOpenDropdownIndex?: (index: number) => void; } declare const VeltCommentDialogOptionsDropdown: React.FC<IVeltCommentDialogOptionsDropdownProps>; export default VeltCommentDialogOptionsDropdown;