fui-material 2.5.4 → 2.5.5

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.
@@ -1861,11 +1861,11 @@ const FTableHeaderCell = ({
1861
1861
  return /* @__PURE__ */ jsxRuntimeExports.jsx(
1862
1862
  "th",
1863
1863
  {
1864
- style,
1865
1864
  rowSpan: row && row > 1 ? row : void 0,
1866
1865
  colSpan: col && col > 1 ? col : void 0,
1867
1866
  ...props,
1868
1867
  className: `${styles$s["f-table-component__table_header-cell"]} ${props.className || ""}`,
1868
+ style,
1869
1869
  children
1870
1870
  }
1871
1871
  );
@@ -1889,11 +1889,11 @@ const FTableDataCell = ({
1889
1889
  return /* @__PURE__ */ jsxRuntimeExports.jsx(
1890
1890
  "td",
1891
1891
  {
1892
- style,
1893
1892
  rowSpan: row && row > 1 ? row : void 0,
1894
1893
  colSpan: col && col > 1 ? col : void 0,
1895
1894
  ...props,
1896
1895
  className: `${styles$s["f-table-component__table_body-cell"]} ${props.className || ""}`,
1896
+ style,
1897
1897
  children
1898
1898
  }
1899
1899
  );