Context options.
List of Progressibles.
Optional
options: { Progress list options.
Optional
background?: "white" | "grey"Optional
blur?: booleanOptional
blurOptional
description?: stringOptional
forceForce the position of the bubble.
Optional
isIf true, the bubble will be draggable. Default true
Optional
overlay?: booleanOptional
title?: 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.