ywana-core8 0.0.465 → 0.0.466

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.
@@ -5694,7 +5694,8 @@ var TableSelector = function TableSelector(props) {
5694
5694
  };
5695
5695
  var buttons = actions.map(function (_ref) {
5696
5696
  var label = _ref.label,
5697
- _action = _ref.action;
5697
+ _action = _ref.action,
5698
+ validate = _ref.validate;
5698
5699
  return /*#__PURE__*/React.createElement(Button, {
5699
5700
  label: label,
5700
5701
  raised: true,
@@ -5709,7 +5710,7 @@ var TableSelector = function TableSelector(props) {
5709
5710
  }
5710
5711
  });
5711
5712
  },
5712
- disabled: !_action.validate(checked)
5713
+ disabled: !validate(checked)
5713
5714
  });
5714
5715
  });
5715
5716
  return /*#__PURE__*/React.createElement("div", {