authscape 1.0.100 → 1.0.102

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -234,6 +234,7 @@ var Datatable = /*#__PURE__*/function (_Component) {
234
234
  paginationPerPage: this.props.pageLength ? this.props.pageLength : 10,
235
235
  paginationServer: true,
236
236
  pagination: true,
237
+ expandableRows: this.props.expandableRows,
237
238
  paginationTotalRows: this.state.totalRows // onChangeRowsPerPage={this.handlePerRowsChange}
238
239
  ,
239
240
  onChangePage: this.handlePageChange,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authscape",
3
- "version": "1.0.100",
3
+ "version": "1.0.102",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -108,6 +108,7 @@ export class Datatable extends Component {
108
108
  paginationPerPage={this.props.pageLength ? this.props.pageLength : 10}
109
109
  paginationServer
110
110
  pagination
111
+ expandableRows={this.props.expandableRows}
111
112
  paginationTotalRows={this.state.totalRows}
112
113
  // onChangeRowsPerPage={this.handlePerRowsChange}
113
114
  onChangePage={this.handlePageChange}