Package-level declarations
Types
Always appends the indicator.
Configuration used to customize slider controls.
Configuration used to customize circularSlider controls.
A visual component that serves as a strongly-typed constructor of some arbitrary type. Forms are very similar to constructors in that they have typed parameter lists (fields), and can only "create" instances when all their inputs are valid. Like any constructor, a Form can have optional fields, default values, and arbitrary types for its fields.
Config for labeled controls.
Config for labeled controls.
Configuration for radio and check lists.
Configuration used to customize rangeSlider controls.
Defines style of indicator to use when showing labeled fields as required.
Config for scrolling controls.
Configuration used to customize slider controls.
Configuration for textField controls.
Only appends the indicator after a field is initially (or becomes) invalid.
Only appends the indicator after a field is initially (or becomes) invalid and it loses focus.
Only appends the indicator if explicitly requested. and it loses focus.
Functions
Creates a CircularRangeSlider control that is bound to a Field. This control lets the user select a value within a range.
Creates a CircularSlider control that is bound to a Field. This control lets the user select a value within a range.
Creates a CircularSlider control that is bound to a Field. In this control lets the user select a value within a range.
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to radioList, except it DOES set a default value and its field is therefore ALWAYS Valid.
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to radioList, in that it DOES NOT set a default value and its field is Invalid if no initial value is bound to it. The control actually has an "unselected" state when it is invalid.
Helper for creating a FieldVisualizer from a lambda.
Creates a FileSelector control that is bound to a Field (of type LocalFile).
Creates a FileSelector control that is bound to a Field (of type List of LocalFile).
Creates a Container with the result of visualizer as its only child, that is bound to a Field. This control simply wraps an existing one with a configurable container.
Creates a component with a Label and the result of visualizer that is bound to a Field. This control simply wraps an existing one with a configurable text label.
Creates a component with a name Label, the result of visualizer and a helper Label that is bound to a Field. This control simply wraps an existing one with configurable text labels.
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to optionalRadioList. This control lets a user ignore selection entirely and therefore the resulting type is T?.
Creates a list of RadioButtons within a ButtonGroup that is bound to a Field. This controls lets a user select an option from a list. This control lets a user ignore selection entirely and therefore the resulting type is T?.
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to optionalRadioList. This control lets a user ignore selection entirely and therefore the resulting type is T?.
Creates a List control that is bound to a Field. This controls lets a user select a single option from a list. This control lets a user ignore selection entirely, which would result in a null
value. This behaves like optionalRadioList.
Creates a list of RadioButtons within a ButtonGroup that is bound to a Field. This controls lets a user select an option from a list.
Creates a RangeSlider control that is bound to a Field. This control lets the user select a value within a range.
Creates a ScrollPanel with the result of visualizer as its content, that is bound to a Field. This control simply wraps an existing one with a configurable scroll panel.
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to radioList, except it DOES set a default value and its field is therefore ALWAYS Valid.
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to radioList, in that it DOES NOT set a default value and its field is Invalid if no initial value is bound to it. The control actually has an "unselected" state when it is invalid.
Creates a List control that is bound to a Field. This controls lets a user select a single option from a list.
Creates a Slider control that is bound to a Field. This control lets the user select a value within a range.
Creates a SpinButton control that is bound to a Field. This control lets a user select a single item within a list. It is similar to radioList, except it DOES set a default value and its field is therefore ALWAYS Valid.
Creates a TextField control that is bounded to a Field (of type String). The associated field will only be valid if the text field's input matches pattern.
Creates a TextField control that is bounded to a Field. The associated field will only be valid if the text field's input matches pattern and encoder.decode produces a valid T from it.