Interface StatePropsOfMasterItem

interface StatePropsOfMasterItem {
    childLabel: string;
    childLabelProp?: string;
    disableRemove?: boolean;
    enabled: boolean;
    index: number;
    path: string;
    schema: JsonSchema;
    selected: boolean;
    translations: ArrayTranslations;
    uischema: UISchemaElement;
    handleSelect(index): (() => void);
    removeItem(path, value): (() => void);
}

Hierarchy (view full)

Properties

childLabel: string
childLabelProp?: string
disableRemove?: boolean
enabled: boolean
index: number
path: string
schema: JsonSchema
selected: boolean
translations: ArrayTranslations
uischema: UISchemaElement

Methods