Context options.
List of Progressibles.
Optionaloptions: { Progress list options.
Optionalbackground?: "white" | "grey"Optionalblur?: booleanOptionalblurOptionaldescription?: stringOptionalforceForce the position of the bubble.
OptionalisIf true, the bubble will be draggable. Default true
Optionaloverlay?: booleanOptionaltitle?: stringimport {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.