@@ -6,16 +6,17 @@ import {withCellEllipsis} from './plugins/cell-ellipsis';
66import { withCellLink } from './plugins/cell-link' ;
77import { withCellOnClick } from './plugins/cell-on-click' ;
88import { withCellRenderer } from './plugins/cell-renderer' ;
9- import { withRenderTdChildren } from './plugins/render-td-children' ;
109import { withCellTooltip } from './plugins/cell-tooltip' ;
1110import { withCellWidth } from './plugins/cell-width' ;
1211import { withFlex } from './plugins/flex' ;
1312import { withFooterRow } from './plugins/footer-row' ;
13+ import { withRenderTdChildren } from './plugins/render-td-children' ;
14+ import { withRenderThChildren } from './plugins/render-th-children' ;
1415import { withRowClassName } from './plugins/row-class-name' ;
1516import { withRowDrawer } from './plugins/row-drawer' ;
1617import { withRowLink } from './plugins/row-link' ;
17- import { withSorting } from './plugins/sorting' ;
1818import { withScrollableTbody } from './plugins/scrollable-tbody' ;
19+ import { withSorting } from './plugins/sorting' ;
1920
2021export { Table } from './table' ;
2122export { TablePlugin } from './table-plugin' ;
@@ -25,16 +26,17 @@ export {withCellEllipsis} from './plugins/cell-ellipsis';
2526export { withCellLink } from './plugins/cell-link' ;
2627export { withCellOnClick } from './plugins/cell-on-click' ;
2728export { withCellRenderer } from './plugins/cell-renderer' ;
28- export { withRenderTdChildren } from './plugins/render-td-children' ;
2929export { withCellTooltip } from './plugins/cell-tooltip' ;
3030export { withCellWidth } from './plugins/cell-width' ;
3131export { withFlex } from './plugins/flex' ;
3232export { withFooterRow } from './plugins/footer-row' ;
33+ export { withRenderTdChildren } from './plugins/render-td-children' ;
34+ export { withRenderThChildren } from './plugins/render-th-children' ;
3335export { withRowClassName } from './plugins/row-class-name' ;
3436export { withRowDrawer } from './plugins/row-drawer' ;
3537export { withRowLink } from './plugins/row-link' ;
36- export { withSorting } from './plugins/sorting' ;
3738export { withScrollableTbody } from './plugins/scrollable-tbody' ;
39+ export { withSorting } from './plugins/sorting' ;
3840
3941export const SortableTable = withSorting ( Table ) ;
4042export const FlexTable = withFlex ( Table ) ;
@@ -47,6 +49,7 @@ export const AdvancedTable = flow(
4749 withCellOnClick ,
4850 withCellRenderer ,
4951 withRenderTdChildren ,
52+ withRenderThChildren ,
5053 withCellTooltip ,
5154 withCellWidth ,
5255 withFooterRow ,
0 commit comments