@homebound/beam 2.200.0 → 2.200.1

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.
@@ -43,10 +43,11 @@ function RowImpl(props) {
43
43
  const rowStyle = rowStyles === null || rowStyles === void 0 ? void 0 : rowStyles[row.kind];
44
44
  const RowTag = as === "table" ? "tr" : "div";
45
45
  const revealOnRowHoverClass = "revealOnRowHover";
46
+ const showRowHoverColor = row.kind !== "totals" && row.kind !== "header" && !omitRowHover;
46
47
  const rowStyleCellCss = (0, utils_1.maybeApplyFunction)(row, rowStyle === null || rowStyle === void 0 ? void 0 : rowStyle.cellCss);
47
48
  const rowCss = {
48
49
  // Optionally include the row hover styles, by default they should be turned on.
49
- ...(!omitRowHover && {
50
+ ...(showRowHoverColor && {
50
51
  // Even though backgroundColor is set on the cellCss, the hover target is the row.
51
52
  "&:hover > *": Css_1.Css.bgColor((_a = style.rowHoverColor) !== null && _a !== void 0 ? _a : Css_1.Palette.LightBlue100).$,
52
53
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebound/beam",
3
- "version": "2.200.0",
3
+ "version": "2.200.1",
4
4
  "author": "Homebound",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",