Interface ControlledMultipleSelectProps

interface ControlledMultipleSelectProps {
    autoComplete?: string;
    autoFocus?: boolean;
    children?: ReactNode;
    defaultValue?: string[];
    disabled?: boolean;
    multiple: true;
    name?: string;
    onChange: (value: readonly string[]) => void;
    required?: boolean;
    size?: "medium" | "small" | "large";
    value: string[];
}

Hierarchy (View Summary)

Properties

autoComplete?: string
autoFocus?: boolean
children?: ReactNode
defaultValue?: string[]
disabled?: boolean
multiple: true
name?: string
onChange: (value: readonly string[]) => void
required?: boolean
size?: "medium" | "small" | "large"
value: string[]