react-table-edit 0.2.9 → 0.3.0

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
@@ -2642,7 +2642,8 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
2642
2642
  {
2643
2643
  style: {
2644
2644
  height: `${(col.rowspan ?? 1) * 42}px`,
2645
- justifyContent: col.textAlign ?? "left"
2645
+ justifyContent: col.textAlign ?? "left",
2646
+ textAlign: col.textAlign ?? "left"
2646
2647
  },
2647
2648
  className: (0, import_classnames10.default)("r-headercell-div"),
2648
2649
  children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
@@ -2697,7 +2698,8 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
2697
2698
  title: t(col.headerText ?? ""),
2698
2699
  style: {
2699
2700
  height: `${(col.rowspan ?? 1) * 42}px`,
2700
- justifyContent: col.textAlign ?? "left"
2701
+ justifyContent: col.textAlign ?? "left",
2702
+ textAlign: col.textAlign ?? "left"
2701
2703
  },
2702
2704
  className: "r-headercell-div",
2703
2705
  children: t(col.headerText ?? "")
@@ -2736,7 +2738,8 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
2736
2738
  title: t(col.headerText ?? ""),
2737
2739
  style: {
2738
2740
  height: `${(col.rowspan ?? 1) * 42}px`,
2739
- justifyContent: col.textAlign ?? "left"
2741
+ justifyContent: col.textAlign ?? "left",
2742
+ textAlign: col.textAlign ?? "left"
2740
2743
  },
2741
2744
  className: "r-headercell-div",
2742
2745
  children: t(col.headerText ?? "")
package/dist/index.mjs CHANGED
@@ -2608,7 +2608,8 @@ var TableEdit = forwardRef2((props, ref) => {
2608
2608
  {
2609
2609
  style: {
2610
2610
  height: `${(col.rowspan ?? 1) * 42}px`,
2611
- justifyContent: col.textAlign ?? "left"
2611
+ justifyContent: col.textAlign ?? "left",
2612
+ textAlign: col.textAlign ?? "left"
2612
2613
  },
2613
2614
  className: classnames6("r-headercell-div"),
2614
2615
  children: /* @__PURE__ */ jsx12(
@@ -2663,7 +2664,8 @@ var TableEdit = forwardRef2((props, ref) => {
2663
2664
  title: t(col.headerText ?? ""),
2664
2665
  style: {
2665
2666
  height: `${(col.rowspan ?? 1) * 42}px`,
2666
- justifyContent: col.textAlign ?? "left"
2667
+ justifyContent: col.textAlign ?? "left",
2668
+ textAlign: col.textAlign ?? "left"
2667
2669
  },
2668
2670
  className: "r-headercell-div",
2669
2671
  children: t(col.headerText ?? "")
@@ -2702,7 +2704,8 @@ var TableEdit = forwardRef2((props, ref) => {
2702
2704
  title: t(col.headerText ?? ""),
2703
2705
  style: {
2704
2706
  height: `${(col.rowspan ?? 1) * 42}px`,
2705
- justifyContent: col.textAlign ?? "left"
2707
+ justifyContent: col.textAlign ?? "left",
2708
+ textAlign: col.textAlign ?? "left"
2706
2709
  },
2707
2710
  className: "r-headercell-div",
2708
2711
  children: t(col.headerText ?? "")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-table-edit",
3
3
  "license": "MIT",
4
- "version": "0.2.9",
4
+ "version": "0.3.0",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",