1024" x-on:close-sidebar="sidebar=window.innerWidth > 1024 && true">
package bonsai
-
bonsai
-
-
bonsai.bench
-
bonsai.example_chat_open_source_native
-
bonsai.example_chat_open_source_native_common
-
-
bonsai.extra
-
-
bonsai.focus_ring
-
bonsai.protocol
-
bonsai.tailwind_colors
-
bonsai.test
-
bonsai.test.dot
-
bonsai.web_test
-
bonsai.web_ui_common_components
-
bonsai.web_ui_drag_and_drop
-
bonsai.web_ui_element_size_hooks
-
bonsai.web_ui_file
-
bonsai.web_ui_file_from_web_file
-
bonsai.web_ui_form
-
-
bonsai.web_ui_freeform_multiselect
-
bonsai.web_ui_multi_select
-
-
bonsai.web_ui_query_box
-
bonsai.web_ui_reorderable_list
-
bonsai.web_ui_typeahead
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
include module type of struct include Bonsai_test.Result_spec end
module type S = Bonsai_test.Result_spec.S
module No_incoming = Bonsai_test.Result_spec.No_incoming
include No_incoming
is a quick way to define a Result_spec
with no incoming events:
module type Sexpable = Bonsai_test.Result_spec.Sexpable
module type Stringable = Bonsai_test.Result_spec.Stringable
val sexp : (module Sexpable with type t = 'a) -> ( 'a, Core.Nothing.t ) t
val string : (module Stringable with type t = 'a) -> ( 'a, Core.Nothing.t ) t
val invisible : ( 'a, Core.Nothing.t ) t
val vdom :
?filter_printed_attributes:( string -> bool ) ->
( 'a -> Bonsai_web.Vdom.Node.t ) ->
( 'a, Core.Nothing.t ) t
filter_printed_attributes
controls which attributes on a Node will get printed analyzing the string name of the attribute. Style properties correspond to their property name prefixed with "style.". For example, to filter out the "display" CSS property, you should return false for "style.display"; to filter out all CSS styles, return false when the string begins with "style.". A Node's key corresponds to the string "@key"