@xcelsior/ui-spreadsheets 1.1.17 → 1.1.19
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/.turbo/turbo-build.log +14 -14
- package/.turbo/turbo-lint.log +1 -185
- 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/dist/styles/globals.css +0 -3
- package/dist/styles/globals.css.map +1 -1
- package/package.json +2 -2
- package/src/components/RowIndexColumnHeader.tsx +2 -0
- package/src/components/Spreadsheet.tsx +2 -2
package/dist/index.mjs
CHANGED
|
@@ -1664,7 +1664,9 @@ function RowIndexColumnHeader({
|
|
|
1664
1664
|
position: "sticky",
|
|
1665
1665
|
top: 0,
|
|
1666
1666
|
left: isPinned ? 0 : void 0,
|
|
1667
|
-
backgroundColor: highlightColor || "rgb(243 244 246)"
|
|
1667
|
+
backgroundColor: highlightColor || "rgb(243 244 246)",
|
|
1668
|
+
overflow: "hidden",
|
|
1669
|
+
verticalAlign: "middle"
|
|
1668
1670
|
},
|
|
1669
1671
|
children: /* @__PURE__ */ jsxs7("div", { className: "flex items-center justify-center gap-1", children: [
|
|
1670
1672
|
/* @__PURE__ */ jsx7("span", { children: "#" }),
|
|
@@ -4442,7 +4444,7 @@ function Spreadsheet({
|
|
|
4442
4444
|
},
|
|
4443
4445
|
children: /* @__PURE__ */ jsxs13("div", { className: "relative flex items-center justify-center w-full h-full", children: [
|
|
4444
4446
|
/* @__PURE__ */ jsx13("span", { children: displayIndex }),
|
|
4445
|
-
/* @__PURE__ */ jsxs13("div", { className: "absolute inset-0 flex items-center justify-
|
|
4447
|
+
/* @__PURE__ */ jsxs13("div", { className: "absolute inset-0 flex items-center justify-between", children: [
|
|
4446
4448
|
rowContextMenuItems && rowContextMenuItems.length > 0 && /* @__PURE__ */ jsx13(
|
|
4447
4449
|
RowContextMenu,
|
|
4448
4450
|
{
|