UNPKG

@aveonline/ui-react

Version:

Home base for Aveonline design system - ecosystem react

10 lines (9 loc) 782 B
/// <reference types="react" /> import { IAsyncPropsTable } from './IAsyncTable'; /** * Data tables are used to organize and display all information from a data set. While a data visualization represents * part of data set, a data table lets merchants view details from the entire set. This helps merchants compare and * analyze the data. */ declare function AsyncTable<TData, TValue>({ columns, data, searchFilter, placeholder, hasPagination, paginationOptionList, sortTable, sortItem, valueRow, toolbar, stateEmpty, titleSortTable, colorRow, classNameContainer, classNameContainerTable, classNameTable, totalRows, isLoading, stickyHeader, columnsVisibility, emptyDataTable, optionPagination, search }: IAsyncPropsTable<TData, TValue>): JSX.Element; export default AsyncTable;