package bonsai

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. header : Bonsai_web.Vdom.Node.t;
    (*

    The header will be displayed above the rest of the node.

    *)
  2. search_box_id : string option;
    (*

    The HTML ID to give the search box input

    *)
  3. extra_row_attrs : (is_focused:bool -> Bonsai_web.Vdom.Attr.t) option;
    (*

    This attribute will be added to the selected row

    *)
}
val create : ?extra_row_attrs:(is_focused:bool -> Bonsai_web.Vdom.Attr.t) -> ?autofocus_search_box:bool -> ?id:string -> header:Bonsai_web.Vdom.Node.t -> unit -> t