sag_components 2.0.0-beta179 → 2.0.0-beta181

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.esm.js CHANGED
@@ -40040,7 +40040,7 @@ const TableBody = ({
40040
40040
  onMouseEnter: () => setHoveredRowIndex(rowIndex),
40041
40041
  onMouseLeave: () => setHoveredRowIndex(null),
40042
40042
  onClick: () => handleRowClick(row, rowIndex)
40043
- }, expandable && expandedContent[rowIndex] !== null && /*#__PURE__*/React$1.createElement(TableCell, {
40043
+ }, expandable && expandedContent[rowIndex] !== null ? /*#__PURE__*/React$1.createElement(TableCell, {
40044
40044
  $fieldType: "expand",
40045
40045
  $minWidth: "16px",
40046
40046
  $maxWidth: "16px"
@@ -40055,7 +40055,7 @@ const TableBody = ({
40055
40055
  width: "12",
40056
40056
  height: "12",
40057
40057
  fill: "#666"
40058
- }))), columns.map(column => {
40058
+ }))) : /*#__PURE__*/React$1.createElement("div", null), columns.map(column => {
40059
40059
  const value = row[column.key];
40060
40060
  const formattedValue = formatValue(value, column, row, rowIndex);
40061
40061
  return /*#__PURE__*/React$1.createElement(TableCell, {