Interface ComboBoxValueProps

interface ComboBoxValueProps {
    className?: string;
    placeholder?: string;
    isEdited?: boolean;
    disabled?: boolean;
    onClick?: FnInitEditModeType;
    onChange?: FnOnValueChangeType;
}

Properties

className?: string
placeholder?: string
isEdited?: boolean
disabled?: boolean