From 639630946c3ffa986710fbc1d39d9b041e11fc8a Mon Sep 17 00:00:00 2001 From: Caroline Shaw Date: Tue, 25 Jul 2017 16:01:17 -0400 Subject: [PATCH] Update README to reflect updates (#400) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 203b9c2..7a72883 100644 --- a/README.md +++ b/README.md @@ -771,7 +771,7 @@ Here are the props and their corresponding callbacks that control the state of t onPageSizeChange={(pageSize, pageIndex) => {...}} // Called when the pageSize is changed by the user. The resolve page is also sent to maintain approximate position in the data onSortedChange={(newSorted, column, shiftKey) => {...}} // Called when a sortable column header is clicked with the column itself and if the shiftkey was held. If the column is a pivoted column, `column` will be an array of columns onExpandedChange={(newExpanded, index, event) => {...}} // Called when an expander is clicked. Use this to manage `expandedRows` - onFilteredChange={(column, value) => {...}} // Called when a user enters a value into a filter input field or the value passed to the onFiltersChange handler by the filterRender option. + onFilteredChange={(column, value) => {...}} // Called when a user enters a value into a filter input field or the value passed to the onFiltersChange handler by the Filter option. onResizedChange={(newResized, event) => {...}} // Called when a user clicks on a resizing component (the right edge of a column header) /> ```