authscape 1.0.102 → 1.0.104
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 +1 -0
- package/package.json +1 -1
- package/src/components/Datatable.js +1 -0
package/index.js
CHANGED
|
@@ -235,6 +235,7 @@ var Datatable = /*#__PURE__*/function (_Component) {
|
|
|
235
235
|
paginationServer: true,
|
|
236
236
|
pagination: true,
|
|
237
237
|
expandableRows: this.props.expandableRows,
|
|
238
|
+
expandableRowsComponent: this.props.expandableRowsComponent,
|
|
238
239
|
paginationTotalRows: this.state.totalRows // onChangeRowsPerPage={this.handlePerRowsChange}
|
|
239
240
|
,
|
|
240
241
|
onChangePage: this.handlePageChange,
|
package/package.json
CHANGED
|
@@ -109,6 +109,7 @@ export class Datatable extends Component {
|
|
|
109
109
|
paginationServer
|
|
110
110
|
pagination
|
|
111
111
|
expandableRows={this.props.expandableRows}
|
|
112
|
+
expandableRowsComponent={this.props.expandableRowsComponent}
|
|
112
113
|
paginationTotalRows={this.state.totalRows}
|
|
113
114
|
// onChangeRowsPerPage={this.handlePerRowsChange}
|
|
114
115
|
onChangePage={this.handlePageChange}
|