Last update:
June 18, 2025
Number Control Descriptor¶
This control allows input of numeric values with optional constraints such as minimum, maximum, and step size. It can also display the current value inside the slider thumb if enabled.
Property | Type | Description |
---|---|---|
min |
number | Minimum allowed value. |
max |
number | Maximum allowed value. |
step |
number | Increment step for value changes. |
thumb |
boolean | If true, displays the current value inside the slider thumb. |
Example¶
Numeric input field¶
...
"settings": [
{
"id": "amount",
"type": "number",
"label": "Amount",
"min": 10,
"max": 50,
"step": 5
},
...
]
...
Slider control¶
...
"settings": [
{
"id": "amount",
"type": "slider",
"label": "Amount",
"min": 10,
"max": 50,
"step": 5,
"thumb": true
},
...
]
...