svelte-meilisearch-instantsearch
Version:
Svelte wrapper for Meilisearch InstantSearch
68 lines (67 loc) • 2.1 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
attribute: string;
min?: number | undefined;
max?: number | undefined;
precision?: number | undefined;
classes?: Partial<{
/**
* Class names to apply to the root element
*/
root: string;
/**
* Class names to apply to the root element when there are no refinements possible
*/
noRefinementRoot: string;
/**
* Class names to apply to the form element
*/
form: string;
/**
* Class names to apply to each label element
*/
label: string;
/**
* Class names to apply to each input element
*/
input: string;
/**
* Class names to apply to the minimum input element
*/
inputMin: string;
/**
* Class names to apply to the maximum input element
*/
inputMax: string;
/**
* Class names to apply to the separator element
*/
separator: string;
/**
* Class names to apply to the submit button
*/
submit: string;
}> | undefined;
translations?: Partial<{
/**
* The label of the separator, between the minimum and maximum inputs
*/
separatorElementText: string;
/**
* The label of the submit button
*/
submitButtonText: string;
}> | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type RangeInputProps = typeof __propDef.props;
export type RangeInputEvents = typeof __propDef.events;
export type RangeInputSlots = typeof __propDef.slots;
export default class RangeInput extends SvelteComponentTyped<RangeInputProps, RangeInputEvents, RangeInputSlots> {
}
export {};