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 +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -40050,7 +40050,7 @@ const TableBody = ({
|
|
|
40050
40050
|
onMouseEnter: () => setHoveredRowIndex(rowIndex),
|
|
40051
40051
|
onMouseLeave: () => setHoveredRowIndex(null),
|
|
40052
40052
|
onClick: () => handleRowClick(row, rowIndex)
|
|
40053
|
-
}, expandable && expandedContent[rowIndex] !== null
|
|
40053
|
+
}, expandable && expandedContent[rowIndex] !== null ? /*#__PURE__*/React__default["default"].createElement(TableCell, {
|
|
40054
40054
|
$fieldType: "expand",
|
|
40055
40055
|
$minWidth: "16px",
|
|
40056
40056
|
$maxWidth: "16px"
|
|
@@ -40065,7 +40065,7 @@ const TableBody = ({
|
|
|
40065
40065
|
width: "12",
|
|
40066
40066
|
height: "12",
|
|
40067
40067
|
fill: "#666"
|
|
40068
|
-
}))), columns.map(column => {
|
|
40068
|
+
}))) : /*#__PURE__*/React__default["default"].createElement("div", null), columns.map(column => {
|
|
40069
40069
|
const value = row[column.key];
|
|
40070
40070
|
const formattedValue = formatValue(value, column, row, rowIndex);
|
|
40071
40071
|
return /*#__PURE__*/React__default["default"].createElement(TableCell, {
|