Default threshold of characters to type before the first autocomplete request is sent
Default CSS class for the active autocomplete item
Default CSS class for an autocomplete item
Default CSS class for the autocomplete box
Default CSS class for the pagination current page button.
Default CSS class for a single 'Did you mean' suggestion.
Default CSS class for the single 'Did you mean' wrapper.
Default CSS class for the pagination next button.
Default CSS class for the pagination page buttons.
Default CSS class for the pagination wrapper HTML element.
Default CSS class for the pagination prev button.
Default CSS class for a single search result inside the wrapper.
Default CSS class for the search result wrapper HTML element.
The default function to render a single 'Did you mean' suggestion. The default algorithm is:
(value: string): string => {
return value
}
the suggestion.
The default function to render a single pagination element. The default algorithm is:
(value: string): string => {
return value
}
The page value. The first page corresponds to the value 0.
The given value without modification.
The default function to render a single search result. The default algorithm is:
(data: Result, highlights: Highlighting): string => {
return `<a href="${data.link}">
<h1>${data.title}</h1>
<p>${highlights.content}</p>
</a>`
}
The search result information like link or title.
The content to be displayed on the search result page.
Generated using TypeDoc
The default API endpoint to which auto-complete and search queries are sent.