@@ -58,6 +58,8 @@ export interface TableProps extends React.HTMLProps<HTMLTableElement>, OUIAProps
5858 isStickyHeaderBase ?: boolean ;
5959 /** @beta Flag indicating the table header should have stuck styling, when the header is not at the top of the scroll container. */
6060 isStickyHeaderStuck ?: boolean ;
61+ /** Flag indicating the table footer should stick to the bottom of its scroll container. */
62+ isStickyFooter ?: boolean ;
6163 /** @hide Forwarded ref */
6264 innerRef ?: React . RefObject < any > ;
6365 /** Flag indicating table is a tree table */
@@ -104,6 +106,7 @@ const TableBase: React.FunctionComponent<TableProps> = ({
104106 isStickyHeader = false ,
105107 isStickyHeaderBase = false ,
106108 isStickyHeaderStuck = false ,
109+ isStickyFooter = false ,
107110 isPlain = false ,
108111 isNoPlainOnGlass = false ,
109112 gridBreakPoint = TableGridBreakpoint . gridMd ,
@@ -233,6 +236,7 @@ const TableBase: React.FunctionComponent<TableProps> = ({
233236 isStickyHeader && styles . modifiers . stickyHeader ,
234237 isStickyHeaderBase && styles . modifiers . stickyHeaderBase ,
235238 isStickyHeaderStuck && styles . modifiers . stickyHeaderStuck ,
239+ isStickyFooter && styles . modifiers . stickyFooter ,
236240 isTreeTable && stylesTreeView . modifiers . treeView ,
237241 isStriped && styles . modifiers . striped ,
238242 isExpandable && styles . modifiers . expandable ,
0 commit comments