-
Notifications
You must be signed in to change notification settings - Fork 133
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 6bd8c76): https://fundamental-ngx-gh--pr12673-11004-make-responsiv-yqit1mxn.web.app (expires Mon, 23 Dec 2024 14:42:37 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
@khotcholava to follow up |
@@ -648,3 +653,7 @@ fdk-dynamic-portal { | |||
th.fd-table__cell .fd-table__inner { | |||
font-weight: 700; | |||
} | |||
|
|||
.tr-hovered { |
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.
inappropriate naming, it should be something like fd-classNameExample, or it should be styled directly in template or if it is necessary, class should be created on fundametnal styles side and then used on ngx side.
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.
Done
- Changed class name with more appropriate name
Couple things:
|
3bad9c0
to
3084e1f
Compare
@dpavlenishvili can you review it? thanks |
@mikerodonnell89 Can you take it from here. According to Akaki the work is done. |
feat(platform): fdp table - make responsive pop-in areas navigable
closes #11004
Description
fdpTableColumnResponsive
.showItemsCount
input was duplicated.