@hydroperx/metro
    Preparing search index...

    Type Alias ComboBoxParams

    ComboBox parameters.

    type ComboBoxParams = {
        big?: boolean;
        change?: (value: string) => void;
        children?: React.ReactNode;
        className?: string;
        default?: string;
        disabled?: boolean;
        id?: string;
        medium?: boolean;
        primary?: boolean;
        ref?: React.Ref<null | HTMLButtonElement>;
        small?: boolean;
        style?: React.CSSProperties;
    }
    Index

    Properties

    big?: boolean

    Whether the input button is light big or not.

    change?: (value: string) => void

    Event triggered on value change.

    children?: React.ReactNode
    className?: string
    default?: string

    Default value.

    disabled?: boolean

    Whether input is disabled.

    id?: string
    medium?: boolean

    Whether the input button is light medium or not.

    primary?: boolean

    Effective for bordeless non-big selects. When true the button color will be the primary one.

    ref?: React.Ref<null | HTMLButtonElement>
    small?: boolean

    Whether the input button is small or not.

    style?: React.CSSProperties