Interface for IProgressSlot. Represents a progress slot that implements IProgressFieldProps and IProgressFieldPrivate interfaces.

interface IProgressSlot {
    groupRef?: (element?: null | HTMLDivElement) => void;
    maxPercent?: number;
    showPercentLabel?: boolean;
    value: any;
}

Hierarchy (View Summary)

Properties

groupRef?: (element?: null | HTMLDivElement) => void

Represents a reference to a group in a field.

maxPercent?: number

Maximum percentage value for a field.

showPercentLabel?: boolean

Determines whether to show the percent label.

The field containing the showPercentLabel property.

  • Whether to show the percent label.
value: any