@pdg/react-table 1.0.59 → 1.0.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3255,7 +3255,7 @@ var native = {
3255
3255
  var data = React.useMemo(function () {
3256
3256
  var _a, _b;
3257
3257
  if (column.type === 'check') {
3258
- return (React.createElement(material.Checkbox, { checked: checked, disabled: checkDisabled, onChange: function (e, newChecked) {
3258
+ return column.hideAllCheck ? null : (React.createElement(material.Checkbox, { checked: checked, disabled: checkDisabled, onChange: function (e, newChecked) {
3259
3259
  setChecked(newChecked);
3260
3260
  onCheckChange && onCheckChange(column, newChecked);
3261
3261
  } }));