PaneButtonConfigDto
Button configuration for a pane
idstringrequired
Unique identifier for the button
Example:
btn-nextlabelstringrequired
Display label of the button
Possible values: <= 50 characters
Example:
Nextpositionstringrequired
Position of the button (left or right)
Possible values: [left, right]
Example:
rightvariantstringrequired
Visual variant of the button
Possible values: [default, secondary, outline, destructive, ghost]
Example:
defaultactionstringrequired
Action to perform when button is clicked
Possible values: [next_pane, previous_pane, save_draft, save_template, submit, reject, discard, close, custom]
Example:
next_panetargetPaneIdstringnullable
Target pane ID for custom navigation (when action is 'custom')
Example:
pane-documentsisVisiblebooleanrequired
Whether the button is visible
Example:
trueorderinteger<int32>required
Display order of the button
Possible values: >= 1
Example:
1PaneButtonConfigDto
{
"id": "btn-next",
"label": "Next",
"position": "right",
"variant": "default",
"action": "next_pane",
"targetPaneId": "pane-documents",
"isVisible": true,
"order": 1
}