Skip to content

Commit 4b35e4e

Browse files
author
huaying
committed
add internal prop
1 parent aa4995b commit 4b35e4e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

build/reactable.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ window.ReactDOM["default"] = window.ReactDOM;
4444
pageButtonLimit: true,
4545
childNode: true,
4646
data: true,
47-
children: true
47+
children: true,
48+
onItemsPerPageChange: true,
49+
rowOptions: true
4850
};
4951

5052
function filterPropsFrom(baseProps) {

lib/reactable/lib/filter_props_from.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ var internalProps = {
3232
pageButtonLimit: true,
3333
childNode: true,
3434
data: true,
35-
children: true
35+
children: true,
36+
onItemsPerPageChange: true,
37+
rowOptions: true
3638
};
3739

3840
function filterPropsFrom(baseProps) {

src/reactable/lib/filter_props_from.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ const internalProps = {
2626
pageButtonLimit: true,
2727
childNode: true,
2828
data: true,
29-
children: true
29+
children: true,
30+
onItemsPerPageChange: true,
31+
rowOptions: true
3032
};
3133

3234
export function filterPropsFrom(baseProps) {

0 commit comments

Comments
 (0)