@xcelsior/ui-spreadsheets 1.3.2 → 1.3.3
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.js +2 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/Spreadsheet.tsx +2 -4
package/dist/index.js
CHANGED
|
@@ -5416,12 +5416,12 @@ function Spreadsheet({
|
|
|
5416
5416
|
})
|
|
5417
5417
|
] })
|
|
5418
5418
|
] }),
|
|
5419
|
-
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("tbody", { children: isLoading ? Array.from({ length: Math.min(pageSize,
|
|
5419
|
+
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)("tbody", { children: isLoading ? Array.from({ length: Math.min(pageSize, 40) }).map((_, rowIdx) => /* @__PURE__ */ (0, import_jsx_runtime14.jsxs)("tr", { children: [
|
|
5420
5420
|
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
5421
5421
|
"td",
|
|
5422
5422
|
{
|
|
5423
5423
|
className: cn(
|
|
5424
|
-
"
|
|
5424
|
+
"sticky",
|
|
5425
5425
|
effectiveCompactMode ? "px-1.5 py-0.5" : "px-2.5 py-1.5"
|
|
5426
5426
|
),
|
|
5427
5427
|
style: {
|
|
@@ -5445,7 +5445,6 @@ function Spreadsheet({
|
|
|
5445
5445
|
return /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(
|
|
5446
5446
|
"td",
|
|
5447
5447
|
{
|
|
5448
|
-
className: "border border-gray-200",
|
|
5449
5448
|
style: { backgroundColor: rowIdx % 2 !== 0 ? "#f9fafb" : "white" }
|
|
5450
5449
|
},
|
|
5451
5450
|
`skeleton-${rowIdx}-placeholder-${item.groupId}`
|
|
@@ -5455,7 +5454,6 @@ function Spreadsheet({
|
|
|
5455
5454
|
"td",
|
|
5456
5455
|
{
|
|
5457
5456
|
className: cn(
|
|
5458
|
-
"border border-gray-200",
|
|
5459
5457
|
effectiveCompactMode ? "px-1.5 py-0.5" : "px-2.5 py-1.5"
|
|
5460
5458
|
),
|
|
5461
5459
|
style: {
|