UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

16 lines 621 B
import { ComponentProps, FC } from "react"; import { CheckboxState } from "../ebay-tri-state-checkbox"; import type { TableSelectHandler, TableSortHandler, TableDensity, TableMode } from "./types"; export type EbayTableProps = Omit<ComponentProps<"div">, "onSelect"> & { mode?: TableMode; allSelected?: CheckboxState; density?: TableDensity; frozenHeader?: boolean; a11ySelectAllText?: string; a11ySelectRowText?: string; onSelect?: TableSelectHandler; onSort?: TableSortHandler; }; declare const EbayTable: FC<EbayTableProps>; export default EbayTable; //# sourceMappingURL=table.d.ts.map