-
Notifications
You must be signed in to change notification settings - Fork 130
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
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for fundamental-ngx ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -18,7 +18,7 @@ | |||
} | |||
</div> | |||
@if (showGrowingButton) { | |||
<fdp-table-growing-button [showItemsCount]="showItemsCount" [showItemsCount]="true"></fdp-table-growing-button> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed a duplicate showItemsCount
input. One instance was hardcoded to true
, while the other took its value from the component input. Now, showItemsCount
consistently derives its value from the component input.
@mikerodonnell89 @InnaAtanasova
@@ -492,6 +492,7 @@ fdk-dynamic-portal { | |||
&__body-table { | |||
&.fd-table--pop-in { | |||
.fd-table__row--secondary { | |||
cursor: pointer; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made the secondary row clickable and added a pointer cursor to indicate interactivity.
@mikerodonnell89 @InnaAtanasova
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it also needs the active/hover state as well and should be applied to the entire cell
Visit the preview URL for this PR (updated for commit a8a8f2e): https://fundamental-ngx-gh--pr12673-11004-make-responsiv-7iephpzj.web.app (expires Sat, 02 Nov 2024 11:30:36 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 Sign: 41b993ee8e451bd7c6770b342ce142dc886eacff |
@@ -492,6 +492,7 @@ fdk-dynamic-portal { | |||
&__body-table { | |||
&.fd-table--pop-in { | |||
.fd-table__row--secondary { | |||
cursor: pointer; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it also needs the active/hover state as well and should be applied to the entire cell
feat(platform): fdp table - make responsive pop-in areas navigable
closes #11004
Description
fdpTableColumnResponsive
.showItemsCount
input was duplicated.