Skip to main content

PaneButtonConfigDto

Button configuration for a pane

idstringrequired

Unique identifier for the button

Example: btn-next
labelstringrequired

Display label of the button

Possible values: <= 50 characters

Example: Next
positionstringrequired

Position of the button (left or right)

Possible values: [left, right]

Example: right
variantstringrequired

Visual variant of the button

Possible values: [default, secondary, outline, destructive, ghost]

Example: default
actionstringrequired

Action to perform when button is clicked

Possible values: [next_pane, previous_pane, save_draft, save_template, submit, reject, discard, close, custom]

Example: next_pane
targetPaneIdstringnullable

Target pane ID for custom navigation (when action is 'custom')

Example: pane-documents
isVisiblebooleanrequired

Whether the button is visible

Example: true
orderinteger<int32>required

Display order of the button

Possible values: >= 1

Example: 1
PaneButtonConfigDto
{
"id": "btn-next",
"label": "Next",
"position": "right",
"variant": "default",
"action": "next_pane",
"targetPaneId": "pane-documents",
"isVisible": true,
"order": 1
}