lecom-ui 4.0.9 → 4.1.0
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.
|
@@ -48,10 +48,6 @@ function DataTable({
|
|
|
48
48
|
const left = leftStyleElemBefore + widthElemBefore;
|
|
49
49
|
const lastRow = table.getRowCount() === elemIndex + 1;
|
|
50
50
|
const boxShadow = elem === "td" ? `-0.5px ${lastRow ? "0px" : "-0.5px"}` : "-0.5px -1.5px";
|
|
51
|
-
console.log(
|
|
52
|
-
elemBefore,
|
|
53
|
-
`table#data-table ${selector} tr:nth-child(${elemIndex + 1}) ${elem}:nth-child(${columnIndex})`
|
|
54
|
-
);
|
|
55
51
|
return {
|
|
56
52
|
boxShadow: isLastLeftPinnedColumn ? `#c9c9c9 ${boxShadow} 0px 0px inset` : undefined,
|
|
57
53
|
position: "sticky",
|
|
@@ -71,6 +67,13 @@ function DataTable({
|
|
|
71
67
|
return /* @__PURE__ */ React.createElement(Pagination, { ...pagination });
|
|
72
68
|
};
|
|
73
69
|
const arrSkeleton = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15];
|
|
70
|
+
React.useEffect(() => {
|
|
71
|
+
console.log(
|
|
72
|
+
document.querySelector(
|
|
73
|
+
`table#data-table tbody tr:nth-child(50) td:nth-child(2)`
|
|
74
|
+
)
|
|
75
|
+
);
|
|
76
|
+
}, []);
|
|
74
77
|
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(
|
|
75
78
|
"div",
|
|
76
79
|
{
|