From d59d7e4fba4b72509917b16b871c2f47b1f08f06 Mon Sep 17 00:00:00 2001 From: Jannik Keye Date: Thu, 4 Oct 2018 22:49:11 +0200 Subject: [PATCH] feature: allow minResizeWidth to be set (#1135) * feature: allow minResizeWidth to be set * fix: add minResizeWidth propType --- src/propTypes.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/propTypes.js b/src/propTypes.js index fdfc772..fa6649a 100644 --- a/src/propTypes.js +++ b/src/propTypes.js @@ -118,7 +118,7 @@ export default { getFooterProps: PropTypes.func, filterMethod: PropTypes.func, filterAll: PropTypes.bool, - sortMethod: PropTypes.func, + sortMethod: PropTypes.func }) ), @@ -127,7 +127,7 @@ export default { sortable: PropTypes.bool, resizable: PropTypes.bool, filterable: PropTypes.bool, - width: PropTypes.number, + width: PropTypes.number }), pivotDefaults: PropTypes.object, @@ -165,5 +165,5 @@ export default { LoadingComponent: PropTypes.oneOfType([PropTypes.func, PropTypes.element]), NoDataComponent: PropTypes.oneOfType([PropTypes.func, PropTypes.element]), ResizerComponent: PropTypes.oneOfType([PropTypes.func, PropTypes.element]), - PadRowComponent: PropTypes.oneOfType([PropTypes.func, PropTypes.element]), + PadRowComponent: PropTypes.oneOfType([PropTypes.func, PropTypes.element]) }