@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
|
-
//
|
|
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}`).$),
|