A list of items with statuses.
| Property | Type | Required | Description |
|---|---|---|---|
control | String | No | Specify a particular control to use to represent the layout. If the control is unknown, it will be ignored. |
items | Array<StatusListLayout.Item> | Yes | Array of items. |
margin | Size | No | The vertical margin to apply after this component. Defaults to md. |
title | String | No | The user-facing title. |
type | String | Yes | It must be status-list. |
A single entry in a Status List Layout.
| Property | Type | Required | Description |
|---|---|---|---|
| No | A titled call to action which can be performed by the user.
⚠️ Experimental - This may be changed in the future without notice. | |
description | String | No | A user-facing description. |
icon | Icon | Yes | An icon to represent the item. |
status | StatusListLayout.Status | No | The status of the item, if it has one. |
| String | No | An optional identifier to be used in custom renderers.
⚠️ Experimental - This may be changed in the future without notice. |
title | String | Yes | A user-facing title. |
Represents the state of an item in a Status List Layout.
| Value | Description |
|---|---|
done | The item is complete. |
not-done | The item has not been started or is waiting for input from the user. |
pending | The item is in progress and no input is needed from the user. |
The call to action configuration to be used by the status list item.
| Property | Type | Required | Description |
|---|---|---|---|
accessibilityDescription | String | No | A description of the call to action to be used by screen readers. |
behavior | Behavior | Yes | Behavior that should be performed when user interacts with call to action. |
title | String | Yes | A user-facing title. |