UNPKG

@atlaskit/dynamic-table

Version:

A dynamic table displays rows of data with built-in pagination, sorting, and re-ordering functionality.

5 lines (4 loc) 516 B
import React from 'react'; import { type StatelessProps as Props } from '../types'; declare const DynamicTable: ({ caption, head, highlightedRowIndex, rows, sortKey, sortOrder, loadingLabel, onPageRowsUpdate, testId, totalRows: passedDownTotalRows, label, isLoading, isFixedSize, rowsPerPage, onSetPage, onSort: providedOnSort, page, emptyView, isRankable, isRankingDisabled, onRankStart, onRankEnd: providedOnRankEnd, loadingSpinnerSize, paginationi18n, }: Props) => React.JSX.Element; export default DynamicTable;