@homebound/beam 2.212.2 → 2.212.3

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.
@@ -166,8 +166,10 @@ function RowImpl(props) {
166
166
  ...(isTotals && hasExpandableHeader && Css_1.Css.boxShadow(`inset 0 -1px 0 ${Css_1.Palette.Gray200}`).$),
167
167
  // Then apply any expandable header specific override
168
168
  ...(isExpandableHeader && style.expandableHeaderCss),
169
- // Apply the right border styling for the header row when using expandable tables and this column is the last expandable column, or not expanded.
169
+ // Conditionally apply the right border styling for the header or totals row when using expandable tables
170
+ // Only apply if not the last column in the table AND when this column is the last column in the group of expandable column or not expanded AND
170
171
  ...(hasExpandableHeader &&
172
+ columns.length - 1 !== columnIndex &&
171
173
  (isHeader || isTotals) &&
172
174
  currentExpandedColumnCount === 0 &&
173
175
  Css_1.Css.boxShadow(`inset -1px -1px 0 ${Css_1.Palette.Gray200}`).$),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebound/beam",
3
- "version": "2.212.2",
3
+ "version": "2.212.3",
4
4
  "author": "Homebound",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",