Matterway
    Preparing search index...

    Function showProgress

    • Shows the progress status in a bubble.

      Parameters

      • context: Context
      • title: string
      • Optionaloptions: {
            description?: string;
            overlay?: boolean;
            blur?: boolean;
            blurIntensity?: number;
            background?: "white" | "grey";
            forcePosition?: Position;
            isDraggable?: boolean;
        }

        Show progress options.

        • Optionaldescription?: string
        • Optionaloverlay?: boolean
        • Optionalblur?: boolean
        • OptionalblurIntensity?: number
        • Optionalbackground?: "white" | "grey"
        • OptionalforcePosition?: Position

          Force the position of the bubble.

        • OptionalisDraggable?: boolean

          If true, the bubble will be draggable. Default true

      Returns Promise<void>

      import {showProgress} from '@matterway/sdk-progress';

      await showProgress(
      ctx,
      'Title Item',
      {
      description: 'Description of the Item',
      overlay: true,
      blur: true,
      blurIntensity: 2,
      background: 'grey',
      },
      );

      This function has been deprecated. Please use showUI.progress instead.