UNPKG

@acrool/react-table

Version:
8 lines (7 loc) 731 B
/// <reference types="react" /> import { ITableProps, TBodyDataID } from './types'; /** * Table */ declare const Table: <I extends TBodyDataID, K extends string>({ className, style, isDark, locale, isFetching, title, data, onChangeSortable, footer, headerLineHeight, bodyLineHeight, cellLineHeight, footerLineHeight, gap, paginateInfo, paginateMeta, isVisibleHeader, isVisiblePaginate, isEnableChangePageScrollTop, isEnableDragSortable, isEnableHover, isStickyHeader, tableCellMediaSize, onChangePage, pageLimitOptions, orderByType, renderNoData, renderFetching, nextPageText, prevPageText, renderPageButton, isVisiblePagePicker, isVisiblePageLimit, isVisiblePageInfo, }: ITableProps<I, K>) => JSX.Element; export default Table;