@@ -6,16 +6,17 @@ import {withCellEllipsis} from './plugins/cell-ellipsis';
6
6
import { withCellLink } from './plugins/cell-link' ;
7
7
import { withCellOnClick } from './plugins/cell-on-click' ;
8
8
import { withCellRenderer } from './plugins/cell-renderer' ;
9
- import { withRenderTdChildren } from './plugins/render-td-children' ;
10
9
import { withCellTooltip } from './plugins/cell-tooltip' ;
11
10
import { withCellWidth } from './plugins/cell-width' ;
12
11
import { withFlex } from './plugins/flex' ;
13
12
import { withFooterRow } from './plugins/footer-row' ;
13
+ import { withRenderTdChildren } from './plugins/render-td-children' ;
14
+ import { withRenderThChildren } from './plugins/render-th-children' ;
14
15
import { withRowClassName } from './plugins/row-class-name' ;
15
16
import { withRowDrawer } from './plugins/row-drawer' ;
16
17
import { withRowLink } from './plugins/row-link' ;
17
- import { withSorting } from './plugins/sorting' ;
18
18
import { withScrollableTbody } from './plugins/scrollable-tbody' ;
19
+ import { withSorting } from './plugins/sorting' ;
19
20
20
21
export { Table } from './table' ;
21
22
export { TablePlugin } from './table-plugin' ;
@@ -25,16 +26,17 @@ export {withCellEllipsis} from './plugins/cell-ellipsis';
25
26
export { withCellLink } from './plugins/cell-link' ;
26
27
export { withCellOnClick } from './plugins/cell-on-click' ;
27
28
export { withCellRenderer } from './plugins/cell-renderer' ;
28
- export { withRenderTdChildren } from './plugins/render-td-children' ;
29
29
export { withCellTooltip } from './plugins/cell-tooltip' ;
30
30
export { withCellWidth } from './plugins/cell-width' ;
31
31
export { withFlex } from './plugins/flex' ;
32
32
export { withFooterRow } from './plugins/footer-row' ;
33
+ export { withRenderTdChildren } from './plugins/render-td-children' ;
34
+ export { withRenderThChildren } from './plugins/render-th-children' ;
33
35
export { withRowClassName } from './plugins/row-class-name' ;
34
36
export { withRowDrawer } from './plugins/row-drawer' ;
35
37
export { withRowLink } from './plugins/row-link' ;
36
- export { withSorting } from './plugins/sorting' ;
37
38
export { withScrollableTbody } from './plugins/scrollable-tbody' ;
39
+ export { withSorting } from './plugins/sorting' ;
38
40
39
41
export const SortableTable = withSorting ( Table ) ;
40
42
export const FlexTable = withFlex ( Table ) ;
@@ -47,6 +49,7 @@ export const AdvancedTable = flow(
47
49
withCellOnClick ,
48
50
withCellRenderer ,
49
51
withRenderTdChildren ,
52
+ withRenderThChildren ,
50
53
withCellTooltip ,
51
54
withCellWidth ,
52
55
withFooterRow ,
0 commit comments