material-table
Advanced tools
Comparing version 0.6.0 to 0.6.1
@@ -231,3 +231,5 @@ 'use strict'; | ||
}) | ||
) : props.actions && props.actions.length > 0 && React.createElement( | ||
) : props.actions && props.actions.filter(function (a) { | ||
return !a.isFreeAction; | ||
}).length > 0 && React.createElement( | ||
_core.TableCell, | ||
@@ -289,3 +291,5 @@ null, | ||
}), | ||
emptyCell: props.options.selection || props.actions && props.actions.length > 0, | ||
emptyCell: props.options.selection || props.actions && props.actions.filter(function (a) { | ||
return !a.isFreeAction; | ||
}).length > 0, | ||
onFilterChanged: function onFilterChanged(columnId, value) { | ||
@@ -334,3 +338,5 @@ var columns = _this4.state.columns; | ||
}) | ||
) : props.actions && props.actions.length > 0 && React.createElement( | ||
) : props.actions && props.actions.filter(function (a) { | ||
return !a.isFreeAction; | ||
}).length > 0 && React.createElement( | ||
_core.TableCell, | ||
@@ -337,0 +343,0 @@ { style: { paddingTop: 0, paddingBottom: 0 } }, |
{ | ||
"name": "material-table", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"description": "Datatable for React based on https://material-ui.com/api/table/ with additional features", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
53030
985