@xcelsior/ui-spreadsheets 1.3.3 → 1.3.4
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 +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/Spreadsheet.tsx +4 -2
package/dist/index.mjs
CHANGED
|
@@ -5371,12 +5371,12 @@ function Spreadsheet({
|
|
|
5371
5371
|
})
|
|
5372
5372
|
] })
|
|
5373
5373
|
] }),
|
|
5374
|
-
/* @__PURE__ */ jsx14("tbody", { children: isLoading ? Array.from({ length: Math.min(pageSize,
|
|
5374
|
+
/* @__PURE__ */ jsx14("tbody", { children: isLoading ? Array.from({ length: Math.min(pageSize, 100) }).map((_, rowIdx) => /* @__PURE__ */ jsxs14("tr", { children: [
|
|
5375
5375
|
/* @__PURE__ */ jsx14(
|
|
5376
5376
|
"td",
|
|
5377
5377
|
{
|
|
5378
5378
|
className: cn(
|
|
5379
|
-
"sticky",
|
|
5379
|
+
"border border-gray-100 sticky",
|
|
5380
5380
|
effectiveCompactMode ? "px-1.5 py-0.5" : "px-2.5 py-1.5"
|
|
5381
5381
|
),
|
|
5382
5382
|
style: {
|
|
@@ -5400,6 +5400,7 @@ function Spreadsheet({
|
|
|
5400
5400
|
return /* @__PURE__ */ jsx14(
|
|
5401
5401
|
"td",
|
|
5402
5402
|
{
|
|
5403
|
+
className: "border border-gray-100",
|
|
5403
5404
|
style: { backgroundColor: rowIdx % 2 !== 0 ? "#f9fafb" : "white" }
|
|
5404
5405
|
},
|
|
5405
5406
|
`skeleton-${rowIdx}-placeholder-${item.groupId}`
|
|
@@ -5409,6 +5410,7 @@ function Spreadsheet({
|
|
|
5409
5410
|
"td",
|
|
5410
5411
|
{
|
|
5411
5412
|
className: cn(
|
|
5413
|
+
"border border-gray-100",
|
|
5412
5414
|
effectiveCompactMode ? "px-1.5 py-0.5" : "px-2.5 py-1.5"
|
|
5413
5415
|
),
|
|
5414
5416
|
style: {
|