Type alias ScriptureResultsViewerProps

ScriptureResultsViewerProps: ScriptureResultsViewerColumnInfo & {
    direction?: "ltr" | "rtl";
    onRowSelected?: ((selectedRow) => void);
    showColumnHeaders?: boolean;
    showSourceColumn?: boolean;
    sources: ResultsSet[];
}

Type declaration

  • Optional direction?: "ltr" | "rtl"

    Text direction ltr or rtl

  • Optional onRowSelected?: ((selectedRow) => void)

    Callback function to notify when a row is selected

  • Optional showColumnHeaders?: boolean

    Flag indicating whether to display column headers. Default is false.

  • Optional showSourceColumn?: boolean

    Flag indicating whether to display source column. Default is false.

  • sources: ResultsSet[]

    Groups of ScriptureItemDetail objects from particular sources (e.g., Scripture checks)