Package-level declarations
Types
AdvancedComponents can be rendered into DOM elements by calling AdvancedComponent.render.
Components can be rendered into DOM elements by calling Component.render.
A KVar is an observable container for a value of type T. It must be initialized with initialValue, and this can then be modified by setting the KVar.value property. Listeners may be added using KVar.addListener, and these will be called whenever the value is changed.
A list of items that can be observed for changes like add, remove, set, etc. Typically passed to renderEach.
Defines a reversible function, for use by KVar.map.
Functions
Render the value of a KVar into DOM elements, and automatically re-render those elements whenever the value changes.
Render the value of a KVal into DOM elements, and automatically re-render those elements whenever the value changes.
Similar to render, but renders a list of items, and updates the DOM when the list changes.