General Structure
All properties have the same general structure using the following object keys.
Key
Value
Notes
info
string
A help tooltip displayed alongside the control
Many input controls also support a subtitle key inside the control's own object (for example "text": { "default": "", "subtitle": "Helper text" }) that displays helper text underneath the control — see each control's Supported Options for details.
Code Example
This example shows a real-world control for a hero overlay. The slider only appears when the overlay is enabled and it outputs a Tailwind class.
{
"title": "Overlay Opacity",
"id": "overlayOpacity",
"format": "bg-opacity-[{{value}}%]",
"visible": "showOverlay == true",
"enable": "overlayStyle != 'none'",
"responsive": false,
"slider": {
"default": 60,
"min": 0,
"max": 100,
"round": true,
"units": "%"
}
}Last updated
Was this helpful?

