Represents the props for the ProgressField component.

interface IProgressFieldProps<Data = IAnything, Payload = IAnything> {
    groupRef?: (element?: null | HTMLDivElement) => void;
    maxPercent?: number;
    showPercentLabel?: boolean;
}

Type Parameters

  • Data = IAnything

    The type of data associated with the field.

  • Payload = IAnything

    The type of payload associated with the field.

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.