Interface Props<TQuerySchema>

Props for Fulltext.

interface Props<TQuerySchema> {
    withQueryStore: Store<TQuerySchema>;
    text?: {
        placeholder?: string;
    };
    focus?: boolean;
    cx?: ArgumentArray;
}

Type Parameters

Hierarchy

  • WithClass
    • Props

Properties

withQueryStore: Store<TQuerySchema>

Query store used by this component.

text?: {
    placeholder?: string;
}

Text configuration.

Type declaration

  • Optional placeholder?: string

    Placeholder text.

focus?: boolean

Auto-focus the input.

cx?: ArgumentArray

If you need to customize style of a component, pass a class names here.