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.

34 lines (33 loc) 2.57 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../constants'; import { IVeltCommentsSidebarV2Skeleton } from './VeltCommentsSidebarV2Skeleton/VeltCommentsSidebarV2Skeleton'; import { IVeltCommentsSidebarV2Panel } from './VeltCommentsSidebarV2Panel/VeltCommentsSidebarV2Panel'; import { IVeltCommentsSidebarV2Header } from './VeltCommentsSidebarV2Header/VeltCommentsSidebarV2Header'; import { IVeltCommentsSidebarV2CloseButton } from './VeltCommentsSidebarV2CloseButton/VeltCommentsSidebarV2CloseButton'; import { IVeltCommentsSidebarV2EmptyPlaceholder } from './VeltCommentsSidebarV2EmptyPlaceholder/VeltCommentsSidebarV2EmptyPlaceholder'; import { IVeltCommentsSidebarV2List } from './VeltCommentsSidebarV2List/VeltCommentsSidebarV2List'; import { IVeltCommentsSidebarV2PageModeComposer } from './VeltCommentsSidebarV2PageModeComposer/VeltCommentsSidebarV2PageModeComposer'; import { IVeltCommentsSidebarV2FocusedThread } from './VeltCommentsSidebarV2FocusedThread/VeltCommentsSidebarV2FocusedThread'; import { IVeltCommentsSidebarV2FilterDropdown } from './VeltCommentsSidebarV2FilterDropdown/VeltCommentsSidebarV2FilterDropdown'; import { IVeltCommentsSidebarV2FilterButton } from './VeltCommentsSidebarV2FilterButton/VeltCommentsSidebarV2FilterButton'; import { IVeltCommentsSidebarV2FilterContainer } from './VeltCommentsSidebarV2FilterContainer/VeltCommentsSidebarV2FilterContainer'; import { IVeltCommentsSidebarV2Search } from './VeltCommentsSidebarV2Search/VeltCommentsSidebarV2Search'; import { IVeltCommentsSidebarV2FullscreenButton } from './VeltCommentsSidebarV2FullscreenButton/VeltCommentsSidebarV2FullscreenButton'; export interface IVeltCommentsSidebarV2WireframeProps extends IVeltWireframeCommonProps { } declare const VeltCommentsSidebarV2Wireframe: React.FC<IVeltCommentsSidebarV2WireframeProps> & { Skeleton: IVeltCommentsSidebarV2Skeleton; Panel: IVeltCommentsSidebarV2Panel; Header: IVeltCommentsSidebarV2Header; CloseButton: IVeltCommentsSidebarV2CloseButton; EmptyPlaceholder: IVeltCommentsSidebarV2EmptyPlaceholder; List: IVeltCommentsSidebarV2List; PageModeComposer: IVeltCommentsSidebarV2PageModeComposer; FocusedThread: IVeltCommentsSidebarV2FocusedThread; FilterDropdown: IVeltCommentsSidebarV2FilterDropdown; FilterButton: IVeltCommentsSidebarV2FilterButton; FilterContainer: IVeltCommentsSidebarV2FilterContainer; Search: IVeltCommentsSidebarV2Search; FullscreenButton: IVeltCommentsSidebarV2FullscreenButton; }; export default VeltCommentsSidebarV2Wireframe;