Trilium Frontend API
    Preparing search index...

    Interface NoteAutocompleteProps

    interface NoteAutocompleteProps {
        container?: RefObject<HTMLElement>;
        containerStyle?: CSSProperties;
        id?: string;
        inputRef?: RefObject<HTMLInputElement>;
        noteId?: string;
        noteIdChanged?: (noteId: string) => void;
        onBlur?: (newValue: string) => void;
        onChange?: (suggestion: Suggestion) => void;
        onKeyDown?: (e: KeyboardEvent) => void;
        onTextChange?: (text: string) => void;
        opts?: Omit<Options, "container">;
        placeholder?: string;
        text?: string;
    }
    Index

    Properties

    container?: RefObject<HTMLElement>
    containerStyle?: CSSProperties
    id?: string
    noteId?: string
    noteIdChanged?: (noteId: string) => void
    onBlur?: (newValue: string) => void
    onChange?: (suggestion: Suggestion) => void
    onKeyDown?: (e: KeyboardEvent) => void
    onTextChange?: (text: string) => void
    opts?: Omit<Options, "container">
    placeholder?: string
    text?: string