@@ -94,6 +94,7 @@ class BootstrapTable extends PropsBaseResolver(Component) {
9494 < Header
9595 columns = { columns }
9696 className = { this . props . headerClasses }
97+ wrapperClasses = { this . props . headerWrapperClasses }
9798 sortField = { this . props . sortField }
9899 sortOrder = { this . props . sortOrder }
99100 onSort = { this . props . onSort }
@@ -119,6 +120,7 @@ class BootstrapTable extends PropsBaseResolver(Component) {
119120 />
120121 ) }
121122 < Body
123+ className = { this . props . bodyClasses }
122124 data = { this . getData ( ) }
123125 keyField = { keyField }
124126 tabIndexCell = { tabIndexCell }
@@ -163,7 +165,10 @@ BootstrapTable.propTypes = {
163165 tabIndexCell : PropTypes . bool ,
164166 id : PropTypes . string ,
165167 classes : PropTypes . string ,
168+ headerClasses : PropTypes . string ,
169+ bodyClasses : PropTypes . string ,
166170 wrapperClasses : PropTypes . string ,
171+ headerWrapperClasses : PropTypes . string ,
167172 condensed : PropTypes . bool ,
168173 caption : PropTypes . oneOfType ( [
169174 PropTypes . node ,
@@ -221,7 +226,6 @@ BootstrapTable.propTypes = {
221226 rowStyle : PropTypes . oneOfType ( [ PropTypes . object , PropTypes . func ] ) ,
222227 rowEvents : PropTypes . object ,
223228 rowClasses : PropTypes . oneOfType ( [ PropTypes . string , PropTypes . func ] ) ,
224- headerClasses : PropTypes . string ,
225229 filtersClasses : PropTypes . string ,
226230 filterPosition : PropTypes . oneOf ( [
227231 Const . FILTERS_POSITION_TOP ,
0 commit comments