Interface ComboBoxSchemaValueProps

interface ComboBoxSchemaValueProps {
    variant?: ComboBoxTagVariantType;
    selected?: boolean;
    onClick?: FnInitEditModeType;
    tooltip?: string;
    className?: string;
    icon?: SvgIconType;
    iconUri?: string;
    invalid?: boolean;
    disabled?: boolean;
    value: any;
    schema: undefined | DataSchema;
    variablesSchema: undefined | DataSchema;
}

Hierarchy

Properties

selected?: boolean
tooltip?: string
className?: string
iconUri?: string
invalid?: boolean
disabled?: boolean
value: any
schema: undefined | DataSchema
variablesSchema: undefined | DataSchema