UNPKG

@appbaseio/reactivesearch-vue

Version:

A Vue UI components library for building search experiences

48 lines (44 loc) 1.35 kB
import type { CommonProps } from '../../index'; import * as types from '../../types.ts'; export interface SingleListProps extends CommonProps { beforeValueChange?: (...args: any[]) => any; customQuery?: (...args: any[]) => any; defaultQuery?: (...args: any[]) => any; dataField?: string; defaultValue?: string; value?: string; filterLabel?: string; innerClass?: types.style; nestedField?: string; onValueChange?: (...args: any[]) => any; onChange?: (...args: any[]) => any; onError?: (...args: any[]) => any; placeholder?: string; react?: types.react; render?: (...args: any[]) => any; renderItem?: (...args: any[]) => any; renderError?: types.title; transformData?: (...args: any[]) => any; selectAllLabel?: string; showCount?: boolean; showFilter?: boolean; showRadio?: boolean; showSearch?: boolean; size?: number; aggregationSize?: number; sortBy?: types.sortByWithCount; themePreset?: types.themePreset; title?: types.title; showMissing?: boolean; missingLabel?: string; showLoadMore?: boolean; loadMoreLabel?: types.title; children?: (...args: any[]) => any; renderNoResults?: (...args: any[]) => any; index?: string; preferencesPath?: string; enableStrictSelection?: boolean; endpoint?: types.endpointConfig; } declare function SingleList(props: SingleListProps): JSX.Element; export default SingleList;