Hex Core JS
    Preparing search index...

    Type Alias FieldInputOption<T>

    type FieldInputOption<T extends FieldValue> = {
        disabled?: boolean;
        display?: React.ReactNode;
        hint?: React.ReactNode;
        isSelected?: (value: unknown) => boolean;
        key?: string;
        label?: string;
        searchText?: string;
        searchValues?: Record<string, string>;
        value: T;
    }

    Type Parameters

    Index

    Properties

    disabled?: boolean
    display?: React.ReactNode
    hint?: React.ReactNode
    isSelected?: (value: unknown) => boolean
    key?: string
    label?: string
    searchText?: string
    searchValues?: Record<string, string>
    value: T