UNPKG

@heroui/table

Version:

Tables are used to display tabular data using rows and columns.

21 lines (18 loc) 715 B
import * as _heroui_system from '@heroui/system'; import { UseTableProps } from './use-table.mjs'; import '@react-types/table'; import 'react'; import '@heroui/theme'; import '@react-stately/virtualizer'; import '@react-types/shared'; import '@react-stately/table'; import '@react-aria/table'; import '@heroui/react-utils'; import '@heroui/checkbox'; interface TableProps<T = object> extends Omit<UseTableProps<T>, "isSelectable" | "isMultiSelectable"> { isVirtualized?: boolean; rowHeight?: number; maxTableHeight?: number; } declare const VirtualizedTable: _heroui_system.InternalForwardRefRenderFunction<"table", TableProps<object>, never>; export { type TableProps, VirtualizedTable as default };