@atlaskit/dynamic-table
Version:
A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.
15 lines (14 loc) • 551 B
TypeScript
import React from 'react';
import { type State, type WithDimensionsProps } from '../../hoc/with-dimensions';
import { type HeadType, type RowType } from '../../types';
interface RankableTableRowProps extends WithDimensionsProps {
head?: HeadType;
isFixedSize: boolean;
row: RowType;
rowIndex: number;
isRankingDisabled: boolean;
isHighlighted?: boolean;
testId?: string;
}
declare const _default_1: React.ComponentClass<Omit<RankableTableRowProps, 'refWidth' | 'refHeight' | 'innerRef'>, State>;
export default _default_1;