ART Framework API Docs
    Preparing search index...

    Interface HITLSelectOption

    An option for select/multiselect input types.

    interface HITLSelectOption {
        description?: string;
        disabled?: boolean;
        icon?: string;
        label: string;
        value: string | number | boolean;
    }
    Index

    Properties

    description?: string

    Optional description providing more context about this option.

    disabled?: boolean

    Whether this option is disabled (shown but not selectable).

    false
    
    icon?: string

    Optional icon identifier for UI rendering.

    label: string

    Human-readable label displayed to the user.

    value: string | number | boolean

    The value returned when this option is selected.