Preparing search index...
    interface EditableFieldProps {
        editIndicatorPosition?: "inside" | "outside" | "outsideOffset";
        editOnFocus?: boolean;
        errorText?: string;
        handlePencilClick?: () => void;
        highlightOnHover?: boolean;
        iconIntent?: IconIntent;
        inputExtraControls?: ReactNode;
        isCroppedWidth?: boolean;
        isDisabled?: boolean;
        isEditMode: boolean;
        isHighlighted?: boolean;
        onToggleEditMode: (isEdit: boolean) => void;
        readOnly: boolean;
        renderEditIcon?: (props: { handleEditIconClick: () => void }) => ReactNode;
        size?: SIZE;
        tooltipOverlay?: string;
    }
    Index

    Properties

    editIndicatorPosition?: "inside" | "outside" | "outsideOffset"
    editOnFocus?: boolean
    errorText?: string
    handlePencilClick?: () => void
    highlightOnHover?: boolean
    iconIntent?: IconIntent
    inputExtraControls?: ReactNode
    isCroppedWidth?: boolean
    isDisabled?: boolean
    isEditMode: boolean
    isHighlighted?: boolean
    onToggleEditMode: (isEdit: boolean) => void
    readOnly: boolean
    renderEditIcon?: (props: { handleEditIconClick: () => void }) => ReactNode
    size?: SIZE
    tooltipOverlay?: string