@xcelsior/ui-spreadsheets 1.1.11 → 1.1.13

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 CHANGED
@@ -3909,9 +3909,7 @@ function Spreadsheet({
3909
3909
  }
3910
3910
  }
3911
3911
  }
3912
- const allGroupedIds = new Set(
3913
- columnGroups.flatMap((g) => g.columns)
3914
- );
3912
+ const allGroupedIds = new Set(columnGroups.flatMap((g) => g.columns));
3915
3913
  for (const col of visibleColumns) {
3916
3914
  if (!allGroupedIds.has(col.id)) {
3917
3915
  const pinSide = pinnedColumns.get(col.id);
@@ -4023,7 +4021,7 @@ function Spreadsheet({
4023
4021
  style: {
4024
4022
  zoom: zoom / 100
4025
4023
  },
4026
- children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("table", { className: "w-full border-separate border-spacing-0 text-xs select-none", children: [
4024
+ children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("table", { className: "border-separate border-spacing-0 text-xs select-none", children: [
4027
4025
  /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("thead", { children: [
4028
4026
  columnGroups && groupHeaderItems && /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("tr", { children: [
4029
4027
  /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
@@ -4040,9 +4038,7 @@ function Spreadsheet({
4040
4038
  ),
4041
4039
  groupHeaderItems.map((item) => {
4042
4040
  if (item.type === "pinned-column") {
4043
- const col = columns.find(
4044
- (c) => c.id === item.columnId
4045
- );
4041
+ const col = columns.find((c) => c.id === item.columnId);
4046
4042
  const isPinnedLeft = item.pinSide === "left";
4047
4043
  return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
4048
4044
  "th",