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.
@@ -19670,7 +19670,6 @@ const PivotTable = ({
19670
19670
  maxWidth: isFitTableOn ? colCellWidth : Table2.TableWidth,
19671
19671
  height: shouldWrapColumnHeader ? "auto" : colCellHeight,
19672
19672
  alignItems: shouldWrapColumnHeader ? "flex-start" : "center",
19673
- textAlign: colHeaderFont.textAlign?.toLowerCase() ?? "left",
19674
19673
  fontSize: colHeaderFont.fontSize,
19675
19674
  fontFamily: colHeaderFont.fontFamily,
19676
19675
  fontWeight: col.isSubtotal ? "bold" : colHeaderFont.fontWeight,
@@ -19700,7 +19699,16 @@ const PivotTable = ({
19700
19699
  children: collapsedCols.has(getCollapseKey(col)) ? "+" : "−"
19701
19700
  }
19702
19701
  ),
19703
- /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "pivot-column-header__text", children: displayLabel })
19702
+ /* @__PURE__ */ jsxRuntimeExports.jsx(
19703
+ "span",
19704
+ {
19705
+ className: "pivot-column-header__text",
19706
+ style: {
19707
+ textAlign: colHeaderFont.textAlign?.toLowerCase() ?? "left"
19708
+ },
19709
+ children: displayLabel
19710
+ }
19711
+ )
19704
19712
  ] })
19705
19713
  },
19706
19714
  `col-${idx}`