@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.
21 lines (20 loc) • 699 B
TypeScript
import React from 'react';
export interface IVeltAutocompletePanelProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
type?: 'contact' | 'generic';
hideInput?: boolean;
placeholder?: string;
metadata?: any;
showAtHere?: boolean;
multiSelect?: boolean;
selectedFirstOrdering?: boolean;
readOnly?: boolean;
inline?: boolean;
enableOnFocus?: boolean;
position?: 'above' | 'below' | 'auto' | string;
excludeContacts?: any;
initialSelection?: any;
contacts?: any;
defaultCondition?: boolean;
}
declare const VeltAutocompletePanel: React.FC<IVeltAutocompletePanelProps>;
export default VeltAutocompletePanel;