@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.
46 lines (45 loc) • 3.92 kB
TypeScript
import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltCommentsSidebarCloseButtonProps } from './VeltCommentsSidebarCloseButton/VeltCommentsSidebarCloseButton';
import { IVeltCommentsSidebarEmptyPlaceholderProps } from './VeltCommentsSidebarEmptyPlaceholder/VeltCommentsSidebarEmptyPlaceholder';
import { IVeltCommentsSidebarFilter } from './VeltCommentsSidebarFilter/VeltCommentsSidebarFilter';
import { IVeltCommentsSidebarFilterButtonProps } from './VeltCommentsSidebarFilterButton/VeltCommentsSidebarFilterButton';
import { IVeltCommentsSidebarHeaderProps } from './VeltCommentsSidebarHeader/VeltCommentsSidebarHeader';
import { IVeltCommentsSidebarList } from './VeltCommentsSidebarList/VeltCommentsSidebarList';
import { IVeltCommentsSidebarLocationFilterDropdown } from './VeltCommentsSidebarLocationFilterDropdown/VeltCommentsSidebarLocationFilterDropdown';
import { IVeltCommentsSidebarDocumentFilterDropdownWireframe } from './VeltCommentsSidebarDocumentFilterDropdownWireframe/VeltCommentsSidebarDocumentFilterDropdownWireframe';
import { IVeltCommentsSidebarMinimalActionsDropdownWireframe } from './VeltCommentsSidebarMinimalActionsDropdownWireframe/VeltCommentsSidebarMinimalActionsDropdownWireframe';
import { IVeltCommentsSidebarMinimalFilterDropdown } from './VeltCommentsSidebarMinimalFilterDropdown/VeltCommentsSidebarMinimalFilterDropdown';
import { IVeltCommentsSidebarPageModeComposerProps } from './VeltCommentsSidebarPageModeComposer/VeltCommentsSidebarPageModeComposer';
import { IVeltCommentsSidebarPanelProps } from './VeltCommentsSidebarPanel/VeltCommentsSidebarPanel';
import { IVeltCommentsSidebarSearchProps } from './VeltCommentsSidebarSearch/VeltCommentsSidebarSearch';
import { IVeltCommentsSidebarSkeletonProps } from './VeltCommentsSidebarSkeleton/VeltCommentsSidebarSkeleton';
import { IVeltCommentsSidebarStatus } from './VeltCommentsSidebarStatus/VeltCommentsSidebarStatus';
import { IVeltCommentsSidebarResetFilterButtonWireframeProps } from './VeltCommentsSidebarResetFilterButtonWireframe/VeltCommentsSidebarResetFilterButtonWireframe';
import { IVeltCommentsSidebarActionButtonProps } from './VeltCommentsSidebarActionButton/VeltCommentsSidebarActionButton';
import { IVeltCommentsSidebarFocusedThread } from './VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThread';
import { IVeltCommentsSidebarFullscreenButton } from './VeltCommentsSidebarFullscreenButton/VeltCommentsSidebarFullscreenButton';
export interface IVeltCommentsSidebarWireframeProps extends IVeltWireframeCommonProps {
}
declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWireframeProps> & {
CloseButton: React.FC<IVeltCommentsSidebarCloseButtonProps>;
EmptyPlaceholder: React.FC<IVeltCommentsSidebarEmptyPlaceholderProps>;
Filter: IVeltCommentsSidebarFilter;
Header: React.FC<IVeltCommentsSidebarHeaderProps>;
List: IVeltCommentsSidebarList;
PageModeComposer: React.FC<IVeltCommentsSidebarPageModeComposerProps>;
Search: React.FC<IVeltCommentsSidebarSearchProps>;
Status: IVeltCommentsSidebarStatus;
FilterButton: React.FC<IVeltCommentsSidebarFilterButtonProps>;
Skeleton: React.FC<IVeltCommentsSidebarSkeletonProps>;
Panel: React.FC<IVeltCommentsSidebarPanelProps>;
MinimalFilterDropdown: IVeltCommentsSidebarMinimalFilterDropdown;
LocationFilterDropdown: IVeltCommentsSidebarLocationFilterDropdown;
DocumentFilterDropdown: IVeltCommentsSidebarDocumentFilterDropdownWireframe;
MinimalActionsDropdown: IVeltCommentsSidebarMinimalActionsDropdownWireframe;
ResetFilterButton: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
ActionButton: React.FC<IVeltCommentsSidebarActionButtonProps>;
FocusedThread: IVeltCommentsSidebarFocusedThread;
FullscreenButton: IVeltCommentsSidebarFullscreenButton;
};
export default VeltCommentsSidebarWireframe;