Available components and properties
When defining new components, you need to define a set of properties that define the object and/or the behavior. The generic and mandatory properties of all/almost all the components are:
type
: This property assumes a variety of values such astableComponent
,buttonComponent
,selectComponent
, and so on, depending on the component that is used.name
: This is the unique identifier of the component inside the dashboard.listeners
: Will accept an array of a strings with the name of the parameters. If a value on each one of those parameters changes, the component will be updated. This array is crucial to create interaction among components.parameters
: This accepts an array of arrays, where each array will have the name of the parameters of the query and the parameters of the dashboard with the value to be used.parameter
: For components where user input is required, this is where the input is stored to be used later.htmlObject
: This is the ID of the HTML...