Skip to content

Commit

Permalink
fix(react-table): Add exports for compoundExpand. (#2554)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcaianirh authored and redallen committed Jul 22, 2019
1 parent 5980944 commit 6cdd352
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -19,5 +19,5 @@ export { default as TableHeader, HeaderProps } from './Header';
export { default as TableBody, TableBodyProps } from './Body';
export { default as RowWrapper, RowWrapperRow, RowWrapperProps } from './RowWrapper';
export { default as ExpandableRowContent } from './ExpandableRowContent';
export { sortable, headerCol, cellWidth, ISortable, expandable, isRowExpanded } from './utils';
export { sortable, headerCol, cellWidth, ISortable, expandable, isRowExpanded, compoundExpand } from './utils';
export { SortByDirection } from './SortColumn';
Expand Up @@ -11,3 +11,4 @@ export const headerCol: () => { component: string };
export const cellWidth: (width: string) => () => { className: string };
export const expandable: (value: ReactNode, extra: IExtra) => ReactNode;
export const isRowExpanded: (row: IRow, rows: Array<IRow>) => boolean | undefined;
export const compoundExpand: (value: ReactNode, extra: IExtra) => ISortable;

0 comments on commit 6cdd352

Please sign in to comment.