From 5a442bf7eda6ac9e1654d6d3cc88fc5607756b0d Mon Sep 17 00:00:00 2001 From: AllenFang Date: Sun, 1 Jul 2018 16:37:00 +0800 Subject: [PATCH] add missing expandRow props --- packages/react-bootstrap-table2/src/bootstrap-table.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/react-bootstrap-table2/src/bootstrap-table.js b/packages/react-bootstrap-table2/src/bootstrap-table.js index e3dd58d..20f64f4 100644 --- a/packages/react-bootstrap-table2/src/bootstrap-table.js +++ b/packages/react-bootstrap-table2/src/bootstrap-table.js @@ -151,6 +151,8 @@ BootstrapTable.propTypes = { expandRow: PropTypes.shape({ renderer: PropTypes.func.isRequired, expanded: PropTypes.array, + onExpand: PropTypes.func, + onExpandAll: PropTypes.func, nonExpandable: PropTypes.array, showExpandColumn: PropTypes.bool, expandColumnRenderer: PropTypes.func,