The whitespace-delimited token currently under the caret.
Suggestions for the active token, when it's an action: or client: filter being typed.
Returns groups of values (by extension for actions, a single group for client), already
filtered by what the user has typed after the colon.
Render a quick-filter chip. Filters with autocomplete open the suggestion dropdown on click; the rest apply their example query (or prime the input for free-text values).
Whether a filter offers value autocomplete (a known, enumerable value set).
Prime the input with a filter prefix and open its value autocomplete.
The
Componentclass defines a user interface 'building block'. A component generates a virtual DOM to be rendered on each redraw.Essentially, this is a wrapper for Mithril's components that adds several useful features:
oninitandonbeforeupdatelifecycle hooks, we store vnode attrs in `this.attrs. This allows us to use attrs across components without having to pass the vnode to every single method.initAttrsmethod allows a convenient way to provide defaults (or to otherwise modify) the attrs that have been passed into a component.this.element; this lets us use jQuery to modify child DOM state from internal methods via thethis.$()method.componentmethod, which serves as an alternative to hyperscript and JSX.As with other Mithril components, components extending Component can be initialized and nested using JSX, hyperscript, or a combination of both. The
componentmethod can also be used.Example
Example
See
https://mithril.js.org/components.html