@dccs/react-table-semantic-ui
Version:
A Semantic-UI implementation of react-table-plain
14 lines (13 loc) • 836 B
TypeScript
import * as React from "react";
import { IColDef } from "@dccs/react-table-plain";
export declare const tableSemanticUITheme: {
rootElement: any;
rowElement: React.FunctionComponent<import("semantic-ui-react").TableRowProps>;
cellElement: React.FunctionComponent<import("semantic-ui-react").TableCellProps>;
headerCellElement: React.FunctionComponent<import("semantic-ui-react").TableHeaderCellProps>;
headerElement: React.FunctionComponent<import("semantic-ui-react").TableHeaderProps>;
bodyElement: React.FunctionComponent<import("semantic-ui-react").TableBodyProps>;
footerElement: React.FunctionComponent<import("semantic-ui-react").TableFooterProps>;
renderSortLabel: (colDef: IColDef, desc: boolean) => JSX.Element;
renderExpansionIndicator: (expanded: boolean) => JSX.Element;
};