Dialog

Renders a modal workflow from one flat owner element.

ParameterDescription
titleDialog title.
subtitleSupporting dialog text.
isOpenControls whether the dialog is open.
triggerLabelLabel for the optional trigger.
purposeDialog purpose: required, form, or info.
gapSpace between dialog content elements.
ifConditional rendering expression.

Usage

xml
<Dialog title="Edit order" isOpen="$dialog.open">
<Stack>
<TextInput label="Name" value="$form.name" />
</Stack>
</Dialog>