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.

72 lines (71 loc) 5.74 kB
import React from "react"; import { IVeltCommentDialogAllCommentProps } from "./VeltCommentDialogAllComment/VeltCommentDialogAllComment"; import { IVeltCommentDialogApproveProps } from "./VeltCommentDialogApprove/VeltCommentDialogApprove"; import { IVeltCommentDialogAssignMenuProps } from "./VeltCommentDialogAssignMenu/VeltCommentDialogAssignMenu"; import { IVeltCommentDialogAssigneeBanner } from "./VeltCommentDialogAssigneeBanner/VeltCommentDialogAssigneeBanner"; import { IVeltCommentDialogBodyProps } from "./VeltCommentDialogBody/VeltCommentDialogBody"; import { IVeltCommentDialogCommentCategoryProps } from "./VeltCommentDialogCommentCategory/VeltCommentDialogCommentCategory"; import { IVeltCommentDialogCommentIndexProps } from "./VeltCommentDialogCommentIndex/VeltCommentDialogCommentIndex"; import { IVeltCommentDialogCommentSuggestionStatusProps } from "./VeltCommentDialogCommentSuggestionStatus/VeltCommentDialogCommentSuggestionStatus"; import { IVeltCommentDialogComposer } from "./VeltCommentDialogComposer/VeltCommentDialogComposer"; import { IVeltCommentDialogCopyLinkProps } from "./VeltCommentDialogCopyLink/VeltCommentDialogCopyLink"; import { IVeltCommentDialogGhostBannerProps } from "./VeltCommentDialogGhostBanner/VeltCommentDialogGhostBanner"; import { IVeltCommentDialogHeaderProps } from "./VeltCommentDialogHeader/VeltCommentDialogHeader"; import { IVeltCommentDialogMoreReplyProps } from "./VeltCommentDialogMoreReply/VeltCommentDialogMoreReply"; import { IVeltCommentDialogOptions } from "./VeltCommentDialogOptions/VeltCommentDialogOptions"; import { IVeltCommentDialogPriority } from "./VeltCommentDialogPriority/VeltCommentDialogPriority"; import { IVeltCommentDialogPrivateBannerProps } from "./VeltCommentDialogPrivateBanner/VeltCommentDialogPrivateBanner"; import { IVeltCommentDialogResolveButtonProps } from "./VeltCommentDialogResolveButton/VeltCommentDialogResolveButton"; import { IVeltCommentDialogSignInProps } from "./VeltCommentDialogSignIn/VeltCommentDialogSignIn"; import { IVeltCommentDialogStatus } from "./VeltCommentDialogStatus/VeltCommentDialogStatus"; import { IVeltCommentDialogSuggestionAction } from "./VeltCommentDialogSuggestionAction/VeltCommentDialogSuggestionAction"; import { IVeltCommentDialogThreadCard } from "./VeltCommentDialogThreadCard/VeltCommentDialogThreadCard"; import { IVeltCommentDialogThreadsProps } from "./VeltCommentDialogThreads/VeltCommentDialogThreads"; import { IVeltCommentDialogToggleReply } from "./VeltCommentDialogToggleReply/VeltCommentDialogToggleReply"; import { IVeltCommentDialogUpgradeProps } from "./VeltCommentDialogUpgrade/VeltCommentDialogUpgrade"; import { IVeltCommentDialogCustomAnnotationDropdown } from "./VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdown"; import { IVeltCommentDialogDeleteButtonProps } from "./VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton"; import { IVeltCommentDialogCloseButtonProps } from "./VeltCommentDialogCloseButton/VeltCommentDialogCloseButton"; import { IVeltCommentDialogUnresolveButtonProps } from "./VeltCommentDialogUnresolveButton/VeltCommentDialogUnresolveButton"; import { IVeltCommentDialogNavigationButtonProps } from "./VeltCommentDialogNavigationButton/VeltCommentDialogNavigationButton"; import { IVeltCommentDialogReplyAvatars } from "./VeltCommentDialogReplyAvatars/VeltCommentDialogReplyAvatars"; import { IVeltWireframeCommonProps } from "../../constants"; import { IVeltCommentDialogCommentNumber } from "./VeltCommentDialogCommentNumber/VeltCommentDialogCommentNumber"; import { IVeltCommentDialogHideReply } from "./VeltCommentDialogHideReply/VeltCommentDialogHideReply"; export interface IVeltCommentDialogWireframeProps extends IVeltWireframeCommonProps { } declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframeProps> & { AllComment: React.FC<IVeltCommentDialogAllCommentProps>; Approve: React.FC<IVeltCommentDialogApproveProps>; AssigneeBanner: IVeltCommentDialogAssigneeBanner; AssignMenu: React.FC<IVeltCommentDialogAssignMenuProps>; Body: React.FC<IVeltCommentDialogBodyProps>; CommentCategory: React.FC<IVeltCommentDialogCommentCategoryProps>; CommentIndex: React.FC<IVeltCommentDialogCommentIndexProps>; CommentNumber: IVeltCommentDialogCommentNumber; CommentSuggestionStatus: React.FC<IVeltCommentDialogCommentSuggestionStatusProps>; Composer: IVeltCommentDialogComposer; CopyLink: React.FC<IVeltCommentDialogCopyLinkProps>; GhostBanner: React.FC<IVeltCommentDialogGhostBannerProps>; Header: React.FC<IVeltCommentDialogHeaderProps>; MoreReply: React.FC<IVeltCommentDialogMoreReplyProps>; Options: IVeltCommentDialogOptions; Priority: IVeltCommentDialogPriority; PrivateBanner: React.FC<IVeltCommentDialogPrivateBannerProps>; ResolveButton: React.FC<IVeltCommentDialogResolveButtonProps>; UnresolveButton: React.FC<IVeltCommentDialogUnresolveButtonProps>; SignIn: React.FC<IVeltCommentDialogSignInProps>; Status: IVeltCommentDialogStatus; SuggestionAction: IVeltCommentDialogSuggestionAction; ThreadCard: IVeltCommentDialogThreadCard; Threads: React.FC<IVeltCommentDialogThreadsProps>; ToggleReply: IVeltCommentDialogToggleReply; Upgrade: React.FC<IVeltCommentDialogUpgradeProps>; CustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown; DeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>; CloseButton: React.FC<IVeltCommentDialogCloseButtonProps>; NavigationButton: React.FC<IVeltCommentDialogNavigationButtonProps>; ReplyAvatars: IVeltCommentDialogReplyAvatars; HideReply: IVeltCommentDialogHideReply; }; export default VeltCommentDialogWireframe;