UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

17 lines (16 loc) 584 B
import { VNode } from "../../stencil-public-runtime"; import { Theme } from "../interfaces"; export declare class CalciteProgress { el: HTMLCalciteProgressElement; /** Use indeterminate if finding actual progress value is impossible */ type: "indeterminate" | "determinate"; /** Fraction completed, in the range of 0 - 1.0 */ value: number; /** Text label for the progress indicator */ text: string; /** For indeterminate progress bars, reverse the animation direction */ reversed: boolean; /** Select theme (light or dark) */ theme: Theme; render(): VNode; }