@@ -87,6 +87,12 @@ export default class TablePage extends React.Component {
8787 desc : 'If true, table rows can be selected. If multiple row selection is desired, enable multiSelectable. ' +
8888 'The default value is true.' ,
8989 } ,
90+ {
91+ name : 'style' ,
92+ type : 'object' ,
93+ header : 'optional' ,
94+ desc : 'Override the inline-styles of the table\'s root element.' ,
95+ } ,
9096 ] ,
9197 } ,
9298 {
@@ -120,6 +126,12 @@ export default class TablePage extends React.Component {
120126 desc : 'If set to true the select all checkbox will be programmatically checked and will not trigger the select ' +
121127 'all event.' ,
122128 } ,
129+ {
130+ name : 'style' ,
131+ type : 'object' ,
132+ header : 'optional' ,
133+ desc : 'Override the inline-styles of the table header\'s root element.' ,
134+ } ,
123135 ] ,
124136 } ,
125137 {
@@ -177,6 +189,12 @@ export default class TablePage extends React.Component {
177189 header : 'optional' ,
178190 desc : 'If true, every other table row starting with the first row will be striped. The default value is false.' ,
179191 } ,
192+ {
193+ name : 'style' ,
194+ type : 'object' ,
195+ header : 'optional' ,
196+ desc : 'Override the inline-styles of the table body\'s root element.' ,
197+ } ,
180198 ] ,
181199 } ,
182200 {
@@ -190,6 +208,12 @@ export default class TablePage extends React.Component {
190208 'is true, this property will not influence the number of columns. This is mainly useful for "super header" ' +
191209 'rows so that the checkbox column does not create an offset that needs to be accounted for manually.' ,
192210 } ,
211+ {
212+ name : 'style' ,
213+ type : 'object' ,
214+ header : 'optional' ,
215+ desc : 'Override the inline-styles of the table footer\'s root element.' ,
216+ } ,
193217 ] ,
194218 } ,
195219 {
@@ -232,6 +256,12 @@ export default class TablePage extends React.Component {
232256 header : 'default: false' ,
233257 desc : 'Indicates whether or not the row is striped.' ,
234258 } ,
259+ {
260+ name : 'style' ,
261+ type : 'object' ,
262+ header : 'optional' ,
263+ desc : 'Override the inline-styles of the table row\'s root element.' ,
264+ } ,
235265 ] ,
236266 } ,
237267 {
@@ -255,6 +285,12 @@ export default class TablePage extends React.Component {
255285 header : 'optional' ,
256286 desc : 'Additional styling that can be applied to the tooltip.' ,
257287 } ,
288+ {
289+ name : 'style' ,
290+ type : 'object' ,
291+ header : 'optional' ,
292+ desc : 'Override the inline-styles of the table header column\'s root element.' ,
293+ } ,
258294 ] ,
259295 } ,
260296 {
@@ -272,6 +308,12 @@ export default class TablePage extends React.Component {
272308 header : 'default: false' ,
273309 desc : 'If true, this column responds to hover events.' ,
274310 } ,
311+ {
312+ name : 'style' ,
313+ type : 'object' ,
314+ header : 'optional' ,
315+ desc : 'Override the inline-styles of the table row column\'s root element.' ,
316+ } ,
275317 ] ,
276318 } ,
277319 {
0 commit comments