Hex Core JS
    Preparing search index...

    Type Alias TableHeadingProps<T>

    TableHeadingProps: {
        align?: "normal" | "start" | "center" | "end";
        justify?: "normal" | "start" | "center" | "end";
        multiLine?: boolean;
        noResize?: boolean;
        onClick?: () => void;
        sortable?: boolean;
    } & ColumnProps<T> & Partial<ClassNameProps & StyleProps & ChildrenProps>

    Type Parameters

    • T extends string

    Type Declaration

    • Optionalalign?: "normal" | "start" | "center" | "end"
    • Optionaljustify?: "normal" | "start" | "center" | "end"
    • OptionalmultiLine?: boolean

      Whether the heading should allow multi-line text.

    • OptionalnoResize?: boolean

      Disables resizing the column by the user.

    • OptionalonClick?: () => void
    • Optionalsortable?: boolean

      Indicates whether the column is sortable.