Context options.
List of Progressibles.
Optionaloptions: {Progress list options.
Optionaltitle?: stringOptionaldescription?: stringOptionaloverlay?: booleanOptionalblur?: booleanOptionalblurIntensity?: numberOptionalbackground?: "white" | "grey"OptionalforcePosition?: PositionForce the position of the bubble.
OptionalisDraggable?: booleanIf true, the bubble will be draggable. Default true
import {showProgressList} from '@matterway/sdk-progress';
...
await showProgressList(
ctx,
[
{
title: 'Title Progress',
description: 'Example Running Progress',
status: 'running',
},
{
title: 'Title Progress',
description: 'Example Done Progress',
status: 'done',
},
{
title: 'Title Progress',
description: 'Example Pending Progress',
status: 'pending',
},
{
title: 'Title Progress',
description: 'Example Failed Progress',
status: 'failed',
},
],
{
title: 'Title of the Step',
description: 'Description of the Step',
overlay: true,
blur: true,
blurIntensity: 2,
},
);

Shows a list of Progressibles.