Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(platform): fdp table - make responsive pop-in areas navigable #12673

Merged
merged 9 commits into from
Jan 3, 2025
5 changes: 4 additions & 1 deletion libs/platform/table/table.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
</div>
@if (showGrowingButton) {
<fdp-table-growing-button [showItemsCount]="showItemsCount" [showItemsCount]="true"></fdp-table-growing-button>
mikerodonnell89 marked this conversation as resolved.
Show resolved Hide resolved
<fdp-table-growing-button [showItemsCount]="showItemsCount"></fdp-table-growing-button>
}
</fd-busy-indicator>
<!-- Table Template -->
Expand Down Expand Up @@ -131,6 +131,9 @@
}
@if (row.type === 'item' && _tableService.poppingColumns$().length > 0) {
<tr
(keydown.enter)="_onRowClick(row, $event)"
(keydown.space)="_onRowClick(row, $event)"
(click)="_onRowClick(row, $event)"
fdp-table-popping-row
[secondary]="true"
[style.height.px]="secondaryRowHeight"
Expand Down
1 change: 1 addition & 0 deletions libs/platform/table/table.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,7 @@ fdk-dynamic-portal {
&__body-table {
&.fd-table--pop-in {
.fd-table__row--secondary {
cursor: pointer;
mikerodonnell89 marked this conversation as resolved.
Show resolved Hide resolved
.fd-table__cell {
border-bottom: var(--sapList_BorderWidth) solid var(--sapList_BorderColor);

Expand Down