react-better-html 1.1.142 → 1.1.143

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.mjs CHANGED
@@ -7415,6 +7415,7 @@ var TableComponent = forwardRef15(function Table({
7415
7415
  pageSize,
7416
7416
  pageCount,
7417
7417
  isInsideTableExpandRow,
7418
+ getRowStyle,
7418
7419
  onClickRow,
7419
7420
  onClickAllCheckboxes,
7420
7421
  onChangePage,
@@ -7843,6 +7844,7 @@ var TableComponent = forwardRef15(function Table({
7843
7844
  "tr",
7844
7845
  {
7845
7846
  className: isInsideTableExpandRow && onClickRow === void 0 && expandColumn === void 0 ? "withoutHover" : void 0,
7847
+ style: getRowStyle?.(item, rowIndex),
7846
7848
  onClick: () => onClickRowElement(item, rowIndex),
7847
7849
  children: columns.map((column, colIndex) => /* @__PURE__ */ jsx22(
7848
7850
  TdStyledComponent,