ywana-core8 0.0.557 → 0.0.558

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.
@@ -1646,8 +1646,9 @@ var DataTableRow = function DataTableRow(props) {
1646
1646
  toggleInfo = _useState3[1];
1647
1647
 
1648
1648
  var infoIcon = isInfoOpen ? 'expand_more' : 'expand_less';
1649
+ var style = expanded ? "expanded" : "";
1649
1650
  return /*#__PURE__*/React.createElement(Fragment, null, /*#__PURE__*/React.createElement("tr", {
1650
- className: className,
1651
+ className: style + " " + className,
1651
1652
  onClick: function onClick(ev) {
1652
1653
  return onSelect(row, ev);
1653
1654
  }