Type Alias DialogSlotUIOptions
Type Alias
Type Signature
type DialogSlotUIOptions = {
body?: SlotConfigurationCallback<{ id: string }>;
footer?: SlotConfigurationCallback<{ id: string }>;
header?: SlotConfigurationCallback<{ id: string }>;
autoResolve?: DialogAutoResolve;
}
body?: SlotConfigurationCallback<{ id: string }>;
footer?: SlotConfigurationCallback<{ id: string }>;
header?: SlotConfigurationCallback<{ id: string }>;
autoResolve?: DialogAutoResolve;
}
| Property | Description |
|---|---|
| body | Insert or replace the body region (main content area) of the component. |
| footer | Insert or replace the footer region (bottom area) of the component. |
| header | Insert or replace the header region (top area) of the component. |
| autoResolve |
Object form of a confirmation dialog slot: sub-slot regions plus the
autoResolveskip. See UI.DialogSlotConfiguration.autoResolve.