TanStack Table Adapter API - v0.1.0
    Preparing search index...

    Type Alias DefaultTableClassNames

    Default class names for various table elements

    This type defines the class names for all table elements that can be styled through the TableAdapter. These class names are used as defaults and can be overridden at the global level through TableConfigProvider or at the component level through the classNames prop.

    const myClassNames: DefaultTableClassNames = {
    table: "min-w-full divide-y divide-gray-200",
    thead: "bg-gray-50",
    theadRow: "",
    theadCell: "px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider",
    tbody: "bg-white divide-y divide-gray-200",
    tbodyRow: "hover:bg-gray-50",
    tbodyCell: "px-6 py-4 whitespace-nowrap text-sm text-gray-500",
    header: "bg-gray-50",
    body: "bg-white",
    };
    type DefaultTableClassNames = {
        body: string;
        header: string;
        table: string;
        tbody: string;
        tbodyCell: string;
        tbodyRow: string;
        thead: string;
        theadCell: string;
        theadRow: string;
    }
    Index

    Properties

    body: string

    Class name applied to the body container (when using custom body rendering)

    header: string

    Class name applied to the header container (when using custom header rendering)

    table: string

    Class name applied to the

    element

    tbody: string

    Class name applied to the

    element

    tbodyCell: string

    Class name applied to the

    elements within the table body

    thead: string

    Class name applied to the

    element

    theadCell: string

    Class name applied to the

    elements within the table header

    elements within the table body

    tbodyRow: string

    Class name applied to the

    elements within the table header

    theadRow: string

    Class name applied to the