UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

14 lines (13 loc) 491 B
import { VNode } from "../../stencil-public-runtime"; 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; render(): VNode; }