sag_components 2.0.0-beta191 → 2.0.0-beta192
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 +17 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +17 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -12252,13 +12252,16 @@ const Td$1 = styled.td`
|
|
|
12252
12252
|
`;
|
|
12253
12253
|
const Tr = styled.tr`
|
|
12254
12254
|
border-bottom: 1px solid #f3f4f6;
|
|
12255
|
-
${
|
|
12256
|
-
|
|
12257
|
-
|
|
12258
|
-
|
|
12255
|
+
${_ref => {
|
|
12256
|
+
let {
|
|
12257
|
+
enableHover,
|
|
12258
|
+
selectHoverColor
|
|
12259
|
+
} = _ref;
|
|
12260
|
+
return enableHover && `&:hover {
|
|
12259
12261
|
background-color: ${selectHoverColor};
|
|
12260
12262
|
cursor: pointer;
|
|
12261
|
-
}
|
|
12263
|
+
}`;
|
|
12264
|
+
}}
|
|
12262
12265
|
`;
|
|
12263
12266
|
const InfoText = styled.div`
|
|
12264
12267
|
font-weight: 400;
|
|
@@ -40320,7 +40323,15 @@ const TableBody = /*#__PURE__*/forwardRef(({
|
|
|
40320
40323
|
document.removeEventListener("click", handleClickOutside);
|
|
40321
40324
|
};
|
|
40322
40325
|
}, []);
|
|
40323
|
-
|
|
40326
|
+
console.log('TableBody Debug Info:', {
|
|
40327
|
+
dataLength: data?.length,
|
|
40328
|
+
columnsLength: columns?.length,
|
|
40329
|
+
hasUseShimmerChromeEffect: typeof useShimmerChromeEffect,
|
|
40330
|
+
hasChromeShimmerText: typeof ChromeShimmerText,
|
|
40331
|
+
indexToShimmer,
|
|
40332
|
+
sampleRow: data[0],
|
|
40333
|
+
sampleColumn: columns[0]
|
|
40334
|
+
});
|
|
40324
40335
|
// Return null if no data
|
|
40325
40336
|
if (data.length === 0) {
|
|
40326
40337
|
return /*#__PURE__*/React$1.createElement(StyledTableBody, {
|