Represents a rating slot.

interface IRatingSlot {
    disabled?: boolean;
    groupRef?: (element?: null | HTMLDivElement) => void;
    name?: string;
    onChange: (v: any, config?: { skipReadonly?: boolean }) => void;
    readonly: boolean;
    value: any;
}

Hierarchy (View Summary)

Properties

disabled?: boolean

Represents the disabled property of an input field.

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

Represents the groupRef property of the IField object.

name?: string
onChange: (v: any, config?: { skipReadonly?: boolean }) => void
readonly: boolean
value: any