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.

47 lines (46 loc) 3.74 kB
import React from 'react'; import { IVeltWireframeCommonProps } from '../../../constants'; import { IVeltCommentsSidebarFilterCategory } from './VeltCommentsSidebarFilterCategory/VeltCommentsSidebarFilterCategory'; import { IVeltCommentsSidebarFilterCloseButtonProps } from './VeltCommentsSidebarFilterCloseButton/VeltCommentsSidebarFilterCloseButton'; import { IVeltCommentsSidebarFilterCommentType } from './VeltCommentsSidebarFilterCommentType/VeltCommentsSidebarFilterCommentType'; import { IVeltCommentsSidebarFilterDoneButtonProps } from './VeltCommentsSidebarFilterDoneButton/VeltCommentsSidebarFilterDoneButton'; import { IVeltCommentsSidebarFilterGroupBy } from './VeltCommentsSidebarFilterGroupBy/VeltCommentsSidebarFilterGroupBy'; import { IVeltCommentsSidebarFilterLocation } from './VeltCommentsSidebarFilterLocation/VeltCommentsSidebarFilterLocation'; import { IVeltCommentsSidebarFilterPeople } from './VeltCommentsSidebarFilterPeople/VeltCommentsSidebarFilterPeople'; import { IVeltCommentsSidebarFilterPriority } from './VeltCommentsSidebarFilterPriority/VeltCommentsSidebarFilterPriority'; import { IVeltCommentsSidebarFilterTitleProps } from './VeltCommentsSidebarFilterTitle/VeltCommentsSidebarFilterTitle'; import { IVeltCommentsSidebarFilterVersions } from './VeltCommentsSidebarFilterVersions/VeltCommentsSidebarFilterVersions'; import { IVeltCommentsSidebarFilterItem } from './VeltCommentsSidebarFilterItem/VeltCommentsSidebarFilterItem'; import { IVeltCommentsSidebarFilterStatus } from './VeltCommentsSidebarFilterStatus/VeltCommentsSidebarFilterStatus'; import { IVeltCommentsSidebarFilterSearch } from './VeltCommentsSidebarFilterSearch/VeltCommentsSidebarFilterSearch'; import { IVeltCommentsSidebarFilterResetButtonProps } from './VeltCommentsSidebarFilterResetButton/VeltCommentsSidebarFilterResetButton'; import { IVeltCommentsSidebarFilterAssigned } from './VeltCommentsSidebarFilterAssigned/VeltCommentsSidebarFilterAssigned'; import { IVeltCommentsSidebarFilterTagged } from './VeltCommentsSidebarFilterTagged/VeltCommentsSidebarFilterTagged'; import { IVeltCommentsSidebarFilterDocument } from './VeltCommentsSidebarFilterDocument/VeltCommentsSidebarFilterDocument'; import { IVeltCommentsSidebarFilterCustom } from './VeltCommentsSidebarFilterCustom/VeltCommentsSidebarFilterCustom'; import { IVeltCommentsSidebarFilterInvolved } from './VeltCommentsSidebarFilterInvolved/VeltCommentsSidebarFilterInvolved'; export interface IVeltCommentsSidebarFilterProps extends IVeltWireframeCommonProps { } export interface IVeltCommentsSidebarFilter extends React.FC<IVeltCommentsSidebarFilterProps> { Title: React.FC<IVeltCommentsSidebarFilterTitleProps>; CloseButton: React.FC<IVeltCommentsSidebarFilterCloseButtonProps>; Location: IVeltCommentsSidebarFilterLocation; People: IVeltCommentsSidebarFilterPeople; Assigned: IVeltCommentsSidebarFilterAssigned; Tagged: IVeltCommentsSidebarFilterTagged; Category: IVeltCommentsSidebarFilterCategory; CommentType: IVeltCommentsSidebarFilterCommentType; Priority: IVeltCommentsSidebarFilterPriority; Versions: IVeltCommentsSidebarFilterVersions; GroupBy: IVeltCommentsSidebarFilterGroupBy; DoneButton: React.FC<IVeltCommentsSidebarFilterDoneButtonProps>; Item: IVeltCommentsSidebarFilterItem; Status: IVeltCommentsSidebarFilterStatus; ResetButton: React.FC<IVeltCommentsSidebarFilterResetButtonProps>; Search: IVeltCommentsSidebarFilterSearch; Document: IVeltCommentsSidebarFilterDocument; Custom: IVeltCommentsSidebarFilterCustom; Involved: IVeltCommentsSidebarFilterInvolved; } declare const VeltCommentsSidebarFilter: IVeltCommentsSidebarFilter; export default VeltCommentsSidebarFilter;