Progress indicators express an unspecified wait time or display the length of a process.

Hierarchy

  • ContourableInterface<this> & LitElement<this>
    • ZetaProgressBar

Other

  • Returns ZetaProgressBar

buffering?: boolean

Displays the buffering dots at the end of the progress indicator.

Setting this will pause the animation if 'indeterminate' is set to true.

indeterminate?: boolean

Displays the indeterminate progress indicator. If set to true, any argument for 'value' will be ignored.

label?: string

The label for the progress indicator.

rounded: boolean
size: "medium" | "thin" = "medium"

The size of the progress indicator. Can either be 'medium' or 'thin'.

value: number = 0

The % complete of the process indicator.

styles: CSSResultGroup[] = ...

rendering

  • Invoked on each update to perform rendering tasks. This method may return any value renderable by lit-html's ChildPart - typically a TemplateResult. Setting properties inside this method will not trigger the element to update.

    Returns TemplateResult<1>