@atlaskit/dynamic-table
Version:
A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.
14 lines (13 loc) • 454 B
TypeScript
import { type ReactNode, type Ref } from 'react';
export interface TruncateStyleProps {
width?: number;
isFixedSize?: boolean;
shouldTruncate?: boolean;
children?: ReactNode;
testId?: string;
innerRef?: Ref<HTMLTableCellElement | HTMLTableRowElement> | undefined;
className?: string;
}
export declare const getTruncationStyleVars: ({ width }: TruncateStyleProps) => {
'--local-dynamic-table-width': string;
} | undefined;