pace-table-lib 1.0.58 → 1.0.59

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.
@@ -19688,7 +19688,6 @@
19688
19688
  maxWidth: isFitTableOn ? colCellWidth : Table2.TableWidth,
19689
19689
  height: shouldWrapColumnHeader ? "auto" : colCellHeight,
19690
19690
  alignItems: shouldWrapColumnHeader ? "flex-start" : "center",
19691
- textAlign: colHeaderFont.textAlign?.toLowerCase() ?? "left",
19692
19691
  fontSize: colHeaderFont.fontSize,
19693
19692
  fontFamily: colHeaderFont.fontFamily,
19694
19693
  fontWeight: col.isSubtotal ? "bold" : colHeaderFont.fontWeight,
@@ -19718,7 +19717,16 @@
19718
19717
  children: collapsedCols.has(getCollapseKey(col)) ? "+" : "−"
19719
19718
  }
19720
19719
  ),
19721
- /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "pivot-column-header__text", children: displayLabel })
19720
+ /* @__PURE__ */ jsxRuntimeExports.jsx(
19721
+ "span",
19722
+ {
19723
+ className: "pivot-column-header__text",
19724
+ style: {
19725
+ textAlign: colHeaderFont.textAlign?.toLowerCase() ?? "left"
19726
+ },
19727
+ children: displayLabel
19728
+ }
19729
+ )
19722
19730
  ] })
19723
19731
  },
19724
19732
  `col-${idx}`